/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Apple-inspired color palette */
    --apple-blue: #0071e3;
    --apple-blue-hover: #0077ed;
    --apple-link: #06c;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #6e6e73;
    --bg-white: #ffffff;
    --bg-light: #f5f5f7;
    --bg-dark: #000000;
    --border-color: #d2d2d7;
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 44px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 980px;
    }
}

/* Navigation - Apple Style */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    border-bottom-color: var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--apple-link);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section - Apple Style */
.hero {
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 160px 0 100px;
        min-height: 70vh;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 180px 0 120px;
        min-height: 75vh;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.08349;
    letter-spacing: -0.003em;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 64px;
        line-height: 1.0625;
        letter-spacing: -0.009em;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 80px;
        line-height: 1.05;
        letter-spacing: -0.015em;
    }
}

.hero-subtitle {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.011em;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 28px;
        line-height: 1.14286;
        letter-spacing: 0.007em;
        margin-bottom: 40px;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

/* Buttons - Apple Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.17648;
    letter-spacing: -0.022em;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    min-width: 28px;
    position: relative;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    will-change: transform;
}

@media (min-width: 768px) {
    .btn {
        padding: 12px 22px;
        font-size: 17px;
    }
}

.btn-primary {
    background: var(--apple-blue);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--apple-blue-hover);
    transform: scale(1.02);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--apple-link);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    text-decoration: underline;
}

.btn-icon {
    font-size: 17px;
    position: relative;
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Section Styles - Apple Style */
section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.003em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 56px;
        line-height: 1.07143;
        letter-spacing: -0.005em;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 64px;
        line-height: 1.0625;
        letter-spacing: -0.009em;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 19px;
    line-height: 1.4211;
    font-weight: 400;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.011em;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 24px;
        line-height: 1.33337;
        letter-spacing: 0.009em;
        margin-bottom: 64px;
    }
}

/* Integration Examples Section */
.integration-examples {
    background: var(--bg-light);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .integration-examples {
        padding: 100px 0;
    }
}

.examples-grid {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    width: 100%;
}

/* Flow Container - hides overflow */
.flow-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 2rem 0;
}

/* Flow Track - animated container */
.flow-track {
    display: flex;
    width: fit-content;
    animation: scroll-flow 20s linear infinite;
    will-change: transform;
    contain: layout style paint;
}

/* Flow Content - horizontal flex container */
.flow-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    padding: 20px 16px;
    border-radius: 18px;
    box-shadow: var(--shadow-subtle);
    min-width: 120px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-color);
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-color);
}

/* Flow Logo Styles */
.flow-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flow-step:hover .flow-logo {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Service-specific logo colors - Apple-inspired muted palette */
.salesforce-logo {
    background: #00a1e0;
}

.excel-logo {
    background: #1d6f42;
}

.sheets-logo {
    background: #0f9d58;
}

.quickbooks-logo {
    background: #0066cc;
}

.shopify-logo {
    background: #7ab55c;
}

.slack-logo {
    background: #4a154b;
}

.trello-logo {
    background: #0065a3;
}

.word-logo {
    background: #2b579a;
}

.pdf-logo {
    background: #c5221f;
}

.erp-logo {
    background: #5f6368;
}

.email-logo {
    background: #1a73e8;
}

.notification-logo {
    background: #ea8600;
}

.flow-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.016em;
}

.flow-arrow {
    color: var(--text-secondary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 12px;
    min-width: 40px;
    z-index: 10;
    position: relative;
    font-weight: 400;
}

.flow-arrow i {
    color: var(--text-secondary);
    opacity: 0.6;
}

/* Continuous scroll animation */
@keyframes scroll-flow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.flow-container {
    will-change: transform;
    contain: layout style paint;
}


/* Services Section */
.services {
    background: var(--bg-light);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .services {
        padding: 100px 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: 18px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--apple-blue);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-color);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--apple-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 18px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: rgba(0, 113, 227, 0.15);
}

.service-card h3 {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.47059;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
}

/* Benefits Section */
.benefits {
    background: var(--bg-white);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .benefits {
        padding: 100px 0;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .benefit-item {
        padding: 40px 32px;
    }
}

.benefit-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.benefit-number {
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.003em;
    color: var(--apple-blue);
    min-width: 100px;
    flex-shrink: 0;
    text-align: center;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .benefit-number {
        font-size: 56px;
        min-width: 120px;
    }
}

.benefit-content {
    flex: 1;
    min-width: 0;
}

.benefit-content h3 {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
    margin-top: 0;
    color: var(--text-primary);
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.47059;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.022em;
    margin: 0;
}

/* About Section */
.about {
    background: var(--bg-light);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .about {
        padding: 100px 0;
    }
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 19px;
    line-height: 1.4211;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--bg-white);
    padding: 80px 0;
}

@media (min-width: 768px) {
    .contact {
        padding: 100px 0;
    }
}

.contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 19px;
    line-height: 1.4211;
    font-weight: 400;
    letter-spacing: 0.011em;
}

@media (min-width: 768px) {
    .contact-subtitle {
        font-size: 24px;
        line-height: 1.33337;
        letter-spacing: 0.009em;
        margin-bottom: 64px;
    }
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.contact-card {
    background: var(--bg-light);
    padding: 48px 32px;
    border-radius: 18px;
    text-align: center;
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--border-color);
}

.contact-icon {
    font-size: 48px;
    margin: 0 auto 16px;
    color: var(--apple-blue);
    display: block;
    width: 64px;
    height: 64px;
    background: var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-subtle);
    line-height: 64px;
    text-align: center;
    position: relative;
}

.contact-icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.contact-profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--bg-white);
}

@media (min-width: 768px) {
    .contact-profile-pic {
        width: 140px;
        height: 140px;
    }
}

.contact-card h3 {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 48px 32px;
    border-radius: 18px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--text-primary);
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-white);
    color: var(--text-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231d1d1f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Range Slider Styles */
.form-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    outline: none;
    padding: 0;
    margin: 12px 0;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--apple-blue);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.form-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
}

.form-group input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--apple-blue);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.3);
}

.form-group input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.4);
}

.form-group input[type="range"]::-moz-range-track {
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
}

/* Footer */
.footer {
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
    margin-bottom: 32px;
}

.footer-brand {
    font-size: 24px;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact a {
    color: var(--apple-link);
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 980px;
}

.footer-contact a i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.33337;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Remove old media queries - already handled above */

/* Mobile Optimizations */
@media (max-width: 767px) {
    /* Ensure touch targets are at least 44x44px */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 17px;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        gap: 0;
        backdrop-filter: saturate(180%) blur(20px);
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .nav-menu a {
        font-size: 17px;
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile hero adjustments */
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 19px;
        line-height: 1.4211;
        margin-bottom: 32px;
    }

    .hero-cta {
        margin-top: 24px;
    }

    /* Mobile section spacing */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.125;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 17px;
        line-height: 1.47059;
        margin-bottom: 32px;
    }

    /* Mobile flow adjustments */
    .flow-step {
        min-width: 90px;
        padding: 16px 12px;
    }

    .flow-logo {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .flow-text {
        font-size: 11px;
    }

    .flow-arrow {
        font-size: 18px;
        padding: 0 8px;
        min-width: 28px;
    }

    .flow-content {
        gap: 8px;
    }

    .flow-track {
        animation-duration: 15s;
    }

    /* Mobile contact cards */
    .contact-card {
        padding: 32px 24px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 40px;
    }

    .contact-profile-pic {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }

    .contact-card h3 {
        font-size: 21px;
    }

    .contact-card p {
        font-size: 17px;
    }

    /* Mobile footer */
    .footer {
        padding: 32px 0 16px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }

    .footer-contact a {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
}

/* Small mobile devices */
@media (max-width: 374px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
    }

    .container {
        padding: 0 12px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.benefit-item,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
    will-change: transform, opacity;
    content-visibility: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--apple-blue);
    outline-offset: 2px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 24px 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 768px) {
    .cookie-consent {
        padding: 24px 44px;
    }
    
    .cookie-consent-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 32px;
    }
}

.cookie-consent-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-consent-text {
        text-align: left;
    }
}

.cookie-consent-title {
    font-size: 19px;
    line-height: 1.4211;
    font-weight: 600;
    letter-spacing: 0.011em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-consent-description {
    font-size: 17px;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

.cookie-btn {
    min-width: 120px;
}

@media (max-width: 767px) {
    .cookie-btn {
        min-width: 100%;
    }
}
