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

:root {
    --primary-color: #FEF151;
    --primary-dark: #E6D949;
    --text-color: #2D2D2D;
    --text-light: #666666;
    --background-color: #FFFFFF;
    --background-light: #FAFAFA;
    --border-color: #E5E5E5;
    --border-radius: 12px;
    --border-radius-small: 8px;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --section-padding: 80px 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--text-color);
}

/* Improved text hierarchy */
.section-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 400;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

h4 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--text-color);
}

h5 {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 500;
    color: var(--text-color);
}

p {
    margin-bottom: 1em;
    color: var(--text-light);
    font-size: 1.1rem;
}

.text-hierarchy-1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-color);
}

.text-hierarchy-2 {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

.text-hierarchy-3 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

.text-hierarchy-4 {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-color);
}

.text-description {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.6;
    color: var(--text-light);
}

.text-small {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    line-height: 1.5;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn i {
    font-size: 1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Fallback for browsers without backdrop-filter support */
    background: rgba(255, 255, 255, 0.95);
    /* Frosted glass effect */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.show {
    transform: translateY(0);
}

.nav.scrolled {
    /* Enhanced frosted glass when scrolled */
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* Ensure backdrop-filter is supported */
@supports (backdrop-filter: blur(1px)) {
    .nav {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .nav.scrolled {
        background: rgba(255, 255, 255, 0.5);
    }
}

/* WebKit specific optimizations */
@supports (-webkit-backdrop-filter: blur(1px)) {
    .nav {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .nav.scrolled {
        background: rgba(255, 255, 255, 0.5);
    }
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-svg {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.language-btn:hover {
    background-color: var(--background-light);
}

.language-btn.active {
    background-color: #E5E5E5;
    color: var(--text-color);
}

.language-divider {
    color: var(--text-light);
    font-weight: 300;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #FFFFFF;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle-heading {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--text-color);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-microcopy {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: translateY(-10px);
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: var(--section-padding);
    background-color: rgba(254, 241, 81, 0.05);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.step:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.2s; }
.step:nth-child(4) { animation-delay: 0.3s; }

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.step-icon i {
    font-size: 2rem;
    color: var(--text-color);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background-color: var(--text-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid white;
}

.step-title {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.step-description {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Who It's For */
.who-its-for {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.audience-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.audience-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.audience-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.audience-item:hover .audience-avatar {
    transform: scale(1.05);
}

.audience-icon i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.audience-content {
    width: 100%;
}

.audience-title {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.audience-description {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Different */
.why-different {
    padding: var(--section-padding);
    background-color: rgba(254, 241, 81, 0.05);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.feature {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 300px;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.feature-title {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-description {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* Social Proof */
.social-proof {
    padding: var(--section-padding);
    background-color: #FFFFFF;
    text-align: center;
}

.social-proof-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.social-proof-coming-soon {
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

/* Founder's Note */
.founders-note {
    padding: var(--section-padding);
    background-color: rgba(254, 241, 81, 0.05);
}

.founders-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founders-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.founders-content p {
    margin-bottom: 1.5rem;
}

.founders-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-photo {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.founder-photo:hover {
    transform: translateY(-8px);
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background-color: #FFFFFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-question h5 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--text-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: var(--section-padding);
    background-color: rgba(254, 241, 81, 0.05);
    text-align: center;
}

.cta-title {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.app-store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-store-link {
    display: block;
    transition: var(--transition);
}

.app-store-link:hover {
    transform: translateY(-4px);
}

.store-badge {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.store-badge:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-svg {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.footer-logo-svg:hover {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: white;
}

.footer-nav-title,
.footer-social-title,
.footer-legal-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav-links,
.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-link,
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-nav-link:hover,
.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    padding: 4px 0;
}

.social-link:hover {
    color: white;
    transform: translateX(4px);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

/* Icon Animations */
.step-icon,
.audience-icon,
.feature-icon {
    transition: var(--transition);
}

.step:hover .step-icon,
.audience-item:hover .audience-icon,
.feature:hover .feature-icon {
    transform: scale(1.1);
}


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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps {
        gap: 1.5rem;
    }
    
    .features {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-cta {
        margin-top: 1rem;
        width: auto;
        border-bottom: none;
    }
    
    .language-toggle {
        order: -1;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        justify-content: center;
    }
    
    .language-btn {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        margin: 3px 0;
        transition: 0.3s;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.3);
        z-index: -1;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle-heading {
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 1.5rem;
    }
    
    .audience-list {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .audience-item {
        padding: 2rem 1.5rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .feature {
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
        padding: 0 1.5rem;
    }
    
    .footer {
        padding: 4rem 0 3rem;
    }
    
    .footer-nav-links,
    .footer-legal-links,
    .social-links {
        align-items: flex-start;
    }
    
    .founders-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1.5rem;
    }
    
    .founders-content {
        padding: 0 1rem;
    }
    
    .founders-content p {
        margin-bottom: 2rem;
    }
    
    /* Add breathing space to all sections */
    .how-it-works,
    .why-different,
    .who-its-for,
    .social-proof,
    .faq,
    .final-cta {
        padding: 5rem 1.5rem;
    }
    
    /* Reduce padding for founder section specifically */
    .founders-note {
        padding: 3rem 1.5rem;
    }
    
    .legal-page {
        padding: 140px 1.5rem 100px;
    }
    
    .legal-content {
        padding: 0;
    }
    
    /* Section titles and subtitles spacing */
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        margin-bottom: 3rem;
    }
    
    /* FAQ improvements */
    .faq-list {
        gap: 1.5rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    /* CTA section improvements */
    .cta-title {
        margin-bottom: 2rem;
    }
    
    .app-store-badges {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .founder-photo {
        max-width: 350px;
        margin: 2rem auto;
    }
    
    /* Container improvements */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Navigation improvements */
    .nav {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    /* Hero improvements */
    .hero-cta {
        margin-top: 3rem;
    }
    
    .cta-microcopy {
        margin-top: 0.8rem;
    }
    
    /* Button improvements */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .audience-item {
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .audience-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .audience-icon,
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .audience-icon i,
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .step,
    .feature {
        padding: 1.5rem 1rem;
    }
    
    .audience-item {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .audience-icon {
        width: 60px;
        height: 60px;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .app-store-badges {
        gap: 1rem;
        flex-direction: column;
    }
    
    .store-badge {
        height: 50px;
    }
}