:root {
    --bg-color: #FFFFFF;
    --text-primary: #0A0A0A;
    --text-secondary: #475569;
    --accent-blue: #3B82F6;
    --accent-blue-hover: #2563EB;
    --soft-gray: #F8FAFC;
    --border-color: #E2E8F0;
    --nav-height: 80px;

    --font-heading: 'Roboto Condensed', sans-serif;
    --font-section: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Typography */
h1,
.hero-title,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

h2,
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

h3,
h4 {
    font-family: var(--font-section);
    font-weight: 600;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-1px);
}

/* Main Spacing */
main {
    padding-top: var(--nav-height);
}

section {
    padding: 8rem 0;
}

/* Hero */
.hero {
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    background-color: #EFF6FF;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.store-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.app-store-btn,
.play-store-btn {
    display: inline-block;
    height: 50px;
    transition: opacity 0.2s ease;
}

.app-store-btn img,
.play-store-btn img {
    height: 100%;
}

.app-store-btn:hover,
.play-store-btn:hover {
    opacity: 0.8;
}

.social-proof-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pill {
    background-color: var(--soft-gray);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* Hero Visual Mockup */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.iphone-mockup {
    width: 300px;
    height: 620px;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a, #3a3a3a);
    padding: 6px 10px 10px 10px;
    box-shadow: 0 0 0 1px #555, 0 30px 80px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
    animation: float 4s ease-in-out infinite alternate;
}

/* Volume Buttons */
.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 150px;
    left: -3px;
    width: 3px;
    height: 56px;
    background: #333;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 70px 0 #333;
    /* Volume down button */
}

/* Power Button */
.iphone-mockup::after {
    content: '';
    position: absolute;
    top: 180px;
    right: -3px;
    width: 3px;
    height: 48px;
    background: #333;
    border-radius: 0 2px 2px 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-12px);
    }
}

.iphone-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
    display: flex;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.phone-screenshot,
.interactive-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 40px;
    display: block;
}

.interactive-screenshot {
    transition: opacity 0.2s ease-in-out;
}

/* Stats Bar */
.stats-bar {
    padding: 4rem 0;
    background-color: white;
    border-top: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

/* Social Proof Bar */
.social-proof-bar {
    padding: 2.5rem 0;
    background-color: var(--soft-gray);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
}

.dot {
    color: var(--border-color);
}

/* How It Works */
.how-it-works {
    background-color: var(--bg-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 4px solid var(--accent-blue);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.step-svg {
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.step-svg svg {
    width: 48px;
    height: 48px;
}

.process-flow {
    position: relative;
    padding-top: 2rem;
}

.process-line {
    position: absolute;
    top: 5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0) 0%, rgba(59, 130, 246, 0.2) 20%, rgba(59, 130, 246, 0.2) 80%, rgba(59, 130, 246, 0) 100%);
    z-index: 0;
}

@media (max-width: 768px) {
    .process-line {
        display: none;
    }
}

.process-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.step-label {
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background-color: var(--bg-color);
    padding: 4px 12px;
    border-radius: 99px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Core Features */
.core-features {
    background-color: var(--soft-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--accent-blue);
    border-radius: 50%;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

.feature-subtext {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Premium Section */
.premium-section {
    background-color: var(--bg-color);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.premium-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.premium-section .section-title {
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
}

.premium-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(59, 130, 246, 0.1);
}

.premium-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.premium-icon {
    color: #60A5FA;
    transition: transform 0.4s ease;
}

.premium-card:hover .premium-icon-wrap {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.premium-card:hover .premium-icon {
    transform: scale(1.1);
    color: #93C5FD;
}

.premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.premium-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Interactive Features */
.interactive-features {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f9ff 40%, #e8f2ff 75%, #d9ebff 100%);
}

.interactive-title {
    margin-bottom: 4rem;
    font-family: 'Cormorant Garamond', serif;
}

.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interactive-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mockup-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-nav-btn:hover {
    background: #ffffff;
    color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mockup-nav-btn.prev-btn {
    left: 0;
}

.mockup-nav-btn.next-btn {
    right: 0;
}

.interactive-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-toggle {
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    text-align: left;
    position: relative;
    padding-left: 3rem;
}

.feature-toggle::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 2.3rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    transition: all 0.3s ease;
}

.feature-toggle.active {
    background-color: var(--soft-gray);
    border-color: var(--border-color);
}

.feature-toggle.active::before {
    background-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.feature-toggle:hover:not(.active) {
    background-color: rgba(248, 250, 252, 0.5);
}

.feature-toggle:hover:not(.active)::before {
    background-color: var(--text-secondary);
}

.feature-toggle h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-toggle p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.interactive-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.interactive-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-dot.active {
    background-color: var(--accent-blue);
    transform: scale(1.2);
}


/* Dark Data Section */
.dark-data-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f9ff 40%, #e8f2ff 75%, #d9ebff 100%);
    color: var(--text-primary);
    padding: 8rem 0;
}

.data-title {
    color: var(--text-primary);
    font-size: 3rem;
    margin-bottom: 4rem;
    font-family: 'Cormorant Garamond', serif;
}

.data-rows {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.data-divider {
    height: 1px;
    width: 100%;
}

.data-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.data-label {
    font-size: 1.1rem;
    color: #2563EB;
}

/* Who It's For */
.who-its-for {
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

.who-its-for .personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.persona-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.persona-icon {
    color: var(--accent-blue);
    margin-bottom: 2rem;
    display: inline-flex;
    justify-content: flex-start;
}

.persona-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.persona-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f9ff 40%, #e8f2ff 75%, #d9ebff 100%);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 10;
}

.cta-title {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.cta-app-store {
    height: 64px;
}

/* Footer */
footer {
    background-color: var(--bg-color);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand .logo {
    margin-bottom: 0.25rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.app-store-btn-footer {
    display: inline-block;
    height: 36px;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.app-store-btn-footer img {
    height: 100%;
}

.app-store-btn-footer:hover {
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.footer-nav a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-nav a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-secondary);
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Pages */
.legal-page {
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
    color: var(--text-secondary);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 24px 6rem;
}

.legal-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.03);
}

.legal-header {
    margin-bottom: 4rem;
    text-align: center;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-date {
    color: var(--accent-blue);
    font-weight: 500;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-section);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-family: var(--font-section);
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: #333333;
}

.legal-section p,
.legal-section ul {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-section ul {
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
}

.legal-section a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--accent-blue-hover);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .social-proof-pills {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links .nav-link {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
    }

    .section-title,
    .data-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .bar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .dot {
        display: none;
    }

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .interactive-title {
        font-size: 2rem;
    }

    .data-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Support Page Styles */
.support-page {
    padding: 6rem 0;
    min-height: calc(100vh - var(--nav-height));
    background-color: var(--soft-gray);
}

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

.support-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.support-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.support-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-card {
    background: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-section);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.support-form input,
.support-form select,
.support-form textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--bg-color);
    color: var(--text-primary);
    transition: all 0.2s ease;
    width: 100%;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--text-secondary);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.support-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.submit-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
}

.support-direct {
    text-align: center;
}

.support-direct p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.direct-email-link {
    font-family: var(--font-section);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.direct-email-link:hover {
    color: var(--accent-blue-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .support-card {
        padding: 2rem 1.5rem;
    }

    .support-page {
        padding: 4rem 0;
    }
}

/* Coming Soon Badge */
.coming-soon-badge {
    background-color: #000;
    color: #fff;
    padding: 0 16px;
    border-radius: 8px;
    font-family: var(--font-section), sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

/* Form Status Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-family: var(--font-section);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Mobile Responsiveness Audit Fixes (375px - 430px) */
@media (max-width: 768px) {
    /* 1. Hero Section */
    .hero-title {
        font-size: 2.2rem !important;
    }
    .hero-subtitle {
        padding: 0 16px;
    }
    .iphone-mockup {
        max-width: 100%;
        height: auto;
    }
    .hero-content .store-badges {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* 2. Navigation */
    .nav-links .coming-soon-badge {
        font-size: 0.75rem;
        padding: 0 10px;
    }

    /* 3. Trust Badge Bar */
    .bar-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        text-align: center;
    }

    /* 4. Feature Carousel */
    .interactive-grid {
        grid-template-columns: 1fr !important;
    }
    .feature-toggle {
        padding: 1.5rem 1rem 1.5rem 3rem !important;
    }
    .feature-toggle::before {
        left: 1rem !important;
        top: 2rem !important;
    }
    .mockup-nav-btn {
        min-width: 44px;
        min-height: 44px;
    }
    .mockup-nav-btn.prev-btn {
        left: 10px !important;
    }
    .mockup-nav-btn.next-btn {
        right: 10px !important;
    }

    /* 6. Personas Section */
    .personas-grid {
        grid-template-columns: 1fr !important;
    }

    /* 7. Stats Section */
    .stats-grid {
        flex-direction: column;
    }

    /* 8. Footer */
    .footer-nav a {
        display: block;
        padding: 12px 0;
    }
    .footer-container {
        padding: 2rem 16px;
    }

    /* 9. General Padding */
    .container {
        padding: 0 16px;
    }
}