/* ========================================
   NOOMO - Landing Page Styles
   Modern Courier & Logistics Service
   ======================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Brand Colors */
    --color-primary: #125181;
    --color-secondary: #3981BB;
    --color-accent-1: #46BDE3;
    --color-accent-2: #6BD1F9;
    --color-cta: #FF6636;
    --color-cta-hover: #E55A2D;
    
    /* Neutral Colors */
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #6B6B6B;
    --color-text-muted: #9CA3AF;
    --color-bg-white: #FFFFFF;
    --color-bg-off-white: #F8FAFB;
    --color-bg-light: #F0F7FC;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #125181 0%, #3981BB 50%, #46BDE3 100%);
    --gradient-hero: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
    --gradient-cta: linear-gradient(135deg, #125181 0%, #1E6A9C 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-hero: clamp(2.5rem, 8vw, 4.5rem);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --spacing-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(70, 189, 227, 0.3);
    --shadow-cta: 0 4px 14px 0 rgba(255, 102, 54, 0.4);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   Reset & Base Styles
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ========================================
   Layout
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* ========================================
   Components
   ======================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-cta);
    color: white;
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 54, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
    border-radius: var(--radius-xl);
}

.btn svg {
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Section Titles */
.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--font-size-4xl);
    }
}

/* ========================================
   Navigation
   ======================================== */


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg-white);
    box-shadow: 0 2px 12px 0 rgba(18, 81, 129, 0.08);
    border-bottom: none;
    transition: all var(--transition-base);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .navbar .container {
        height: 70px;
        padding: 0 var(--spacing-md);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.logo img {
    height: 75px;
    width: auto;
    display: block;
}
.brand-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(18,81,129,0.10);
    font-family: var(--font-family);
}
@media (max-width: 768px) {
    .logo img {
        height: 48px;
    }
    .brand-name {
        font-size: 1.25rem;
    }
}

.nav-cta {
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--color-cta);
    color: #fff;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-cta);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.nav-cta:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 102, 54, 0.5);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(96px + var(--spacing-4xl)) var(--spacing-lg) var(--spacing-4xl);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Route Lines SVG */
.route-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.node {
    fill: var(--color-accent-1);
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: 0.3s; }
.node-3 { animation-delay: 0.6s; }
.node-4 { animation-delay: 0.9s; }
.node-5 { animation-delay: 1.2s; }
.node-6 { animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.route-path {
    fill: none;
    stroke-width: 2;
    stroke-dasharray: 8, 4;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -1000; }
}

.package-dot {
    fill: var(--color-cta);
}

.dot-1 { opacity: 0.9; }
.dot-2 { opacity: 0.8; }
.dot-3 { opacity: 0.85; }

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    animation-fill-mode: forwards;
}

.floating-card .card-icon {
    font-size: 1.25rem;
}

.floating-card .card-content {
    display: flex;
    flex-direction: column;
}

.floating-card .card-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-primary);
}

.floating-card .card-status {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
}

.card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0.5s;
}

.card-2 {
    top: 35%;
    right: 8%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 1;
        transform: translateY(0);
    }
    100% { 
        opacity: 1;
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .floating-card {
        display: none;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-headline {
    font-size: var(--font-size-hero);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.hero-prelaunch {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Value Statement Section
   ======================================== */

.value-statement {
    padding: var(--spacing-5xl) var(--spacing-lg);
    background-color: var(--color-bg-white);
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-3xl);
    background: var(--color-bg-off-white);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(18, 81, 129, 0.08);
}

@media (max-width: 768px) {
    .value-content {
        padding: var(--spacing-xl);
        margin: 0 var(--spacing-md);
        border-radius: var(--radius-lg);
    }

    .value-statement {
        padding: var(--spacing-3xl) var(--spacing-md);
    }
}

.value-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
}

.value-text .highlight {
    color: var(--color-secondary);
    font-weight: 600;
}

.value-tagline {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(18, 81, 129, 0.08);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent-1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-lg);
    color: var(--color-secondary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   Audience Section
   ======================================== */

.audience {
    padding: var(--spacing-5xl) var(--spacing-lg);
    background-color: var(--color-bg-white);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.audience-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--color-bg-off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.audience-item:hover {
    background: var(--color-bg-light);
    transform: translateX(4px);
}

.check-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.audience-item span {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--color-text-primary);
}

/* ========================================
   Trust Section
   ======================================== */

.trust {
    padding: var(--spacing-4xl) var(--spacing-lg);
    background: var(--color-bg-off-white);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.trust-badge:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
}

.trust-badge span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-primary);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    position: relative;
    padding: var(--spacing-5xl) var(--spacing-lg);
    background: var(--gradient-cta);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.animated-route {
    animation: dash 30s linear infinite;
}

.network-dots circle {
    animation: twinkle 3s ease-in-out infinite;
}

.network-dots circle:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.cta-delivery-icon {
    position: absolute;
    right: 10%;
    bottom: 15%;
    width: 120px;
    height: 120px;
    opacity: 0.15;
    animation: driveIn 20s linear infinite;
}

@keyframes driveIn {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(200px); }
}

@media (max-width: 768px) {
    .cta-delivery-icon {
        display: none;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: white;
    margin-bottom: var(--spacing-xl);
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--color-accent-2);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: var(--font-size-5xl);
    }
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-2xl);
}

.cta-form {
    margin-bottom: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: stretch;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .form-group {
        flex-direction: row;
        align-items: center;
    }
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) calc(var(--spacing-lg) * 2 + 20px);
    font-size: var(--font-size-base);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.input-wrapper input:focus {
    box-shadow: var(--shadow-xl), 0 0 0 4px rgba(70, 189, 227, 0.3);
}

.input-wrapper input::placeholder {
    color: var(--color-text-muted);
}

.cta-form .btn {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-form .btn {
        width: auto;
        flex-shrink: 0;
        min-width: 180px;
    }
}

.form-note {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.success-message.show {
    display: flex;
    animation: fadeUp 0.5s ease forwards;
}

.success-message svg {
    width: 24px;
    height: 24px;
}

.success-message span {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: white;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-xl);
    background: var(--color-bg-off-white);
    border-top: 1px solid rgba(18, 81, 129, 0.08);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .footer-logo {
        height: 44px;
        margin-bottom: 0;
    }
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.footer-location svg {
    color: var(--color-secondary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(18, 81, 129, 0.08);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* ========================================
   Scroll Animations
   ======================================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Feature cards stagger */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

/* ========================================
   Accessibility
   ======================================== */

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-accent-1);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-text-secondary: #444444;
        --color-text-muted: #555555;
    }
    
    .btn-primary {
        border: 2px solid white;
    }
}

/* ========================================
   Print Styles
   ======================================== */

/* Mobile Button Improvements */
@media (max-width: 480px) {
    .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-sm);
        width: auto;
        min-width: 200px;
        margin: 0 auto;
    }
    
    .btn-large {
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: var(--font-size-base);
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
    }
    
    .cta-content {
        padding: 0 var(--spacing-sm);
    }
    
    .form-group {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
}

/* ========================================
   Mobile Responsive Improvements
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero {
        padding-top: 70px;
        min-height: 90vh;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: var(--spacing-md);
    }

    .hero-subheadline {
        font-size: clamp(1rem, 4vw, 1.5rem);
        margin-bottom: var(--spacing-sm);
    }

    .hero-prelaunch {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-2xl);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn {
        min-width: 200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: var(--font-size-base);
        padding: var(--spacing-lg) var(--spacing-xl);
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-content .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-content {
        padding: 0;
    }
    
    .form-group {
        max-width: 100%;
        padding: 0;
    }
    
    .cta-form .btn {
        width: 100%;
        margin: 0 auto;
    }
    
    .nav-cta {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 12px;
        text-align: center;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subheadline {
        font-size: 1.125rem;
    }
}

@media (max-width: 360px) {
    .btn-large {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        max-width: 260px;
    }
    
    .nav-cta {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .container {
        padding: 0 var(--spacing-xs);
    }
}

/* ========================================\n   Mobile Responsive Design Improvements\n   ======================================== */\n\n@media (max-width: 768px) {\n    .container {\n        padding: 0 var(--spacing-md);\n    }\n\n    .hero {\n        padding-top: 70px;\n        min-height: 90vh;\n        padding-left: var(--spacing-md);\n        padding-right: var(--spacing-md);\n    }\n\n    .hero-headline {\n        font-size: clamp(2rem, 8vw, 3.5rem);\n        margin-bottom: var(--spacing-md);\n        line-height: 1.2;\n    }\n\n    .hero-subheadline {\n        font-size: clamp(1rem, 4vw, 1.5rem);\n        margin-bottom: var(--spacing-sm);\n        padding: 0 var(--spacing-sm);\n    }\n\n    .hero-prelaunch {\n        font-size: var(--font-size-base);\n        margin-bottom: var(--spacing-xl);\n        padding: 0 var(--spacing-sm);\n    }\n\n    .section-title {\n        font-size: var(--font-size-2xl);\n        margin-bottom: var(--spacing-2xl);\n    }\n\n    .features {\n        padding: var(--spacing-3xl) var(--spacing-md);\n    }\n\n    .features-grid {\n        grid-template-columns: 1fr;\n        gap: var(--spacing-xl);\n    }\n\n    .audience {\n        padding: var(--spacing-3xl) var(--spacing-md);\n    }\n\n    .audience-grid {\n        grid-template-columns: 1fr;\n        gap: var(--spacing-md);\n    }\n\n    .trust {\n        padding: var(--spacing-3xl) var(--spacing-md);\n    }\n\n    .trust-badges {\n        grid-template-columns: repeat(2, 1fr);\n        gap: var(--spacing-md);\n    }\n\n    .cta-section {\n        padding: var(--spacing-3xl) var(--spacing-md);\n    }\n\n    .footer {\n        padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);\n    }\n}\n\n@media (max-width: 480px) {\n    .container {\n        padding: 0 var(--spacing-sm);\n    }\n\n    .hero {\n        padding-left: var(--spacing-sm);\n        padding-right: var(--spacing-sm);\n    }\n\n    .btn {\n        min-width: 200px;\n        margin: 0 auto;\n        text-align: center;\n    }\n    \n    .btn-large {\n        width: 100%;\n        max-width: 280px;\n        margin: 0 auto;\n        font-size: var(--font-size-base);\n        padding: var(--spacing-lg) var(--spacing-xl);\n    }\n    \n    .hero-content {\n        padding: 0;\n    }\n    \n    .hero-content .btn {\n        width: 100%;\n        max-width: 300px;\n        margin: 0 auto;\n    }\n    \n    .cta-content {\n        padding: 0;\n    }\n    \n    .form-group {\n        max-width: 100%;\n        padding: 0;\n    }\n    \n    .cta-form .btn {\n        width: 100%;\n        margin: 0 auto;\n    }\n    \n    .nav-cta {\n        min-width: 120px;\n        padding: 10px 16px;\n        font-size: 12px;\n        text-align: center;\n    }\n\n    .trust-badges {\n        grid-template-columns: 1fr;\n    }\n\n    .hero-headline {\n        font-size: 2.25rem;\n    }\n\n    .hero-subheadline {\n        font-size: 1.125rem;\n    }\n\n    .value-content {\n        padding: var(--spacing-lg);\n        margin: 0;\n    }\n\n    .value-text {\n        font-size: var(--font-size-lg);\n        line-height: 1.8;\n        margin-bottom: var(--spacing-lg);\n    }\n\n    .value-tagline {\n        font-size: var(--font-size-lg);\n        line-height: 1.4;\n    }\n\n    .features,\n    .audience,\n    .trust,\n    .cta-section {\n        padding: var(--spacing-2xl) var(--spacing-sm);\n    }\n}\n\n@media (max-width: 360px) {\n    .btn-large {\n        padding: var(--spacing-md) var(--spacing-lg);\n        font-size: var(--font-size-base);\n        max-width: 260px;\n    }\n    \n    .nav-cta {\n        min-width: 100px;\n        padding: 8px 12px;\n        font-size: 11px;\n    }\n\n    .hero-headline {\n        font-size: 2rem;\n    }\n\n    .container {\n        padding: 0 12px;\n    }\n\n    .hero {\n        padding-left: 12px;\n        padding-right: 12px;\n    }\n}\n\n@media print {
    .navbar,
    .hero-animation,
    .floating-card,
    .cta-background {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-xl);
    }
    
    body {
        font-size: 12pt;
    }
}
