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

:root {
    --primary: #00ff88;
    --primary-dark: #00cc6f;
    --primary-glow: rgba(0, 255, 136, 0.2);
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: #222222;
    --border-hover: #333333;
    --gradient-1: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
    --gradient-2: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 111, 0.05) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px rgba(0, 255, 136, 0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Better mobile scrolling */
    -webkit-overflow-scrolling: touch;
    /* Prevent text size adjustment on orientation change */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    /* Better touch response */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(0, 255, 136, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Sections */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

/* Approach Section */
.approach {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.approach-card {
    padding: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.approach-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.approach-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.approach-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.approach-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}


/* System Diagram Section */
.system-diagram {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 120px 0;
}

.diagram-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-diagram {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    min-height: 400px;
    display: block;
}

.flow-diagram text {
    font-family: 'Inter', sans-serif;
}

/* Show desktop diagram by default */
.diagram-mobile {
    display: none;
}

.diagram-desktop {
    display: block;
}

/* Animate agent nodes */
.agent-node {
    animation: pulse 2s ease-in-out infinite;
}

.agent-node:nth-child(2) {
    animation-delay: 0.3s;
}

.agent-node:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Diagram Features */
.diagram-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.diagram-feature {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.diagram-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diagram-feature:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    background: var(--bg-card);
}

.diagram-feature:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.feature-svg {
    width: 48px;
    height: 48px;
    transition: transform 0.4s ease;
}

.diagram-feature:hover .feature-svg {
    transform: scale(1.1) rotate(5deg);
}

.feature-content {
    text-align: left;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail {
    display: flex;
    gap: 20px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    flex-shrink: 0;
}

.detail-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Form Styles */
.contact-form-container {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    padding: 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
    /* Better mobile input styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* Better select styling on mobile */
select.form-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

select.form-input {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: -8px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px;
}

.form-success.active {
    display: block;
}

.contact-form.hidden {
    display: none;
}

.success-icon {
    margin-bottom: 24px;
}

.success-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.success-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 400px;
}

.footer-partners {
    text-align: right;
}

.partner-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.partner-logos {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.partner {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* Responsive Design */

/* Tablet Landscape & Desktop Small */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
        letter-spacing: -1.5px;
    }

    .approach-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-partners {
        text-align: left;
    }

    .partner-logos {
        justify-content: flex-start;
    }
}

/* Tablet Portrait & Mobile Large */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation - Better mobile nav */
    .nav {
        padding: 0;
    }

    .nav-content {
        padding: 16px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 10px;
    }

    .nav-cta {
        font-size: 12px;
        padding: 10px 18px;
        white-space: nowrap;
    }

    /* Hero - Optimized for mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .hero-title br {
        display: none; /* Single line on mobile for better flow */
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 13px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }

    /* Sections - Better mobile spacing */
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 17px;
        line-height: 1.5;
    }

    /* Approach Section - Better mobile cards */
    .approach-card {
        padding: 28px 24px;
    }

    .approach-number {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .approach-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .approach-description {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Services - Single column on mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 14px;
        line-height: 1.6;
    }


    /* System Diagram */
    .system-diagram {
        padding: 60px 0;
    }

    /* Keep desktop diagram on tablet */
    .diagram-desktop {
        display: block;
    }

    .diagram-mobile {
        display: none;
    }

    .flow-diagram {
        padding: 24px 16px;
        margin-bottom: 32px;
        min-height: 450px;
        border-radius: 12px;
    }

    /* Scale up SVG text for tablet */
    .flow-diagram text {
        font-size: 110%;
    }

    .diagram-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 48px;
    }

    .diagram-feature {
        padding: 28px 20px;
    }

    .feature-icon-wrapper {
        margin-bottom: 16px;
    }

    .feature-svg {
        width: 44px;
        height: 44px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 12px;
    }

    /* CTA Section */
    .cta-title {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .cta-main {
        width: 100%;
        justify-content: center;
    }

    /* Contact Section - Mobile-optimized form */
    .contact-title {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }

    .contact-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .contact-details {
        gap: 24px;
        margin-bottom: 40px;
    }

    .contact-detail {
        gap: 16px;
    }

    .detail-icon {
        width: 44px;
        height: 44px;
    }

    .detail-icon svg {
        width: 20px;
        height: 20px;
    }

    .detail-title {
        font-size: 12px;
    }

    .detail-text {
        font-size: 15px;
    }

    .contact-form-container {
        padding: 28px 20px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-textarea {
        padding: 14px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .form-submit {
        padding: 16px 32px;
        font-size: 16px;
        margin-top: 8px;
    }

    .form-note {
        font-size: 12px;
        line-height: 1.5;
    }

    /* Footer */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .footer-tagline {
        font-size: 15px;
        line-height: 1.6;
    }

    .partner-label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .partner {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 13px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Hero - Compact for small screens */
    .hero {
        padding: 90px 0 50px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 32px;
    }

    .hero-stats {
        gap: 20px;
        padding: 24px 0;
        margin-bottom: 32px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-button {
        padding: 15px 24px;
        font-size: 14px;
        gap: 8px;
    }

    .cta-button svg {
        width: 18px;
        height: 18px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Approach Cards */
    .approach-card {
        padding: 24px 20px;
    }

    .approach-title {
        font-size: 22px;
    }

    .approach-description {
        font-size: 14px;
    }

    /* Service Cards */
    .service-card {
        padding: 20px 18px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-title {
        font-size: 17px;
    }


    /* System Diagram - Mobile */
    .system-diagram {
        padding: 50px 0;
    }

    /* Switch to mobile vertical diagram */
    .diagram-desktop {
        display: none;
    }

    .diagram-mobile {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .diagram-container {
        padding: 0 16px;
    }

    .flow-diagram {
        padding: 24px 16px;
        min-height: 700px;
        border-radius: 12px;
    }

    .diagram-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .diagram-feature {
        padding: 24px 20px;
        text-align: left;
    }

    .diagram-feature:hover {
        transform: translateY(-4px);
    }

    .feature-icon-wrapper {
        margin-bottom: 16px;
    }

    .feature-svg {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .feature-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    /* CTA Section */
    .cta-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 15px;
    }

    /* Contact Section */
    .contact {
        padding: 50px 0;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-form-container {
        padding: 24px 18px;
    }

    .contact-form {
        gap: 18px;
    }

    .form-group {
        gap: 6px;
    }

    .form-textarea {
        min-height: 90px;
    }

    .success-title {
        font-size: 26px;
    }

    .success-text {
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 28px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .partner-logos {
        gap: 16px;
    }

    .partner {
        font-size: 15px;
    }
}

/* Touch improvements for all mobile devices */
@media (hover: none) and (pointer: coarse) {
    /* Bigger touch targets */
    .cta-button,
    .form-submit {
        min-height: 48px;
    }

    .form-input,
    .form-textarea,
    select.form-input {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Better hover states for touch */
    .approach-card:active,
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .cta-button:active {
        transform: scale(0.96);
    }
}
