/* ===================================
   Global Styles & Reset
   =================================== */

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

:root {
    /* Army Color Palette */
    --army-beige: #f0e8d6;
    --army-olive: #556B2F;
    --army-olive-dark: #4A5D23;
    --army-olive-darker: #3D4A1F;
    --army-tan: #C3B091;
    --army-tan-dark: #B8A77A;
    --army-brown: #6B5D4F;
    --army-green-light: #6B7F3F;
    
    --primary-color: #556B2F;
    --primary-dark: #4A5D23;
    --secondary-color: #6B5D4F;
    --success-color: #6B7F3F;
    --warning-color: #B8A77A;
    --text-dark: #2B3317;
    --text-light: #6B5D4F;
    --bg-light: #f0e8d6;
    --bg-white: #f8f4ea;
    --border-color: #C3B091;
    --gradient-primary: linear-gradient(135deg, #556B2F 0%, #4A5D23 100%);
    --gradient-secondary: linear-gradient(135deg, #6B5D4F 0%, #4A5D23 100%);
    --gradient-success: linear-gradient(135deg, #6B7F3F 0%, #556B2F 100%);
    --gradient-beige: linear-gradient(135deg, #f0e8d6 0%, #e8dcc4 100%);
    --shadow-sm: 0 1px 2px 0 rgba(74, 93, 35, 0.15);
    --shadow-md: 0 4px 6px -1px rgba(74, 93, 35, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(74, 93, 35, 0.25);
    --shadow-xl: 0 20px 25px -5px rgba(74, 93, 35, 0.3);
    --glow-olive: 0 0 20px rgba(85, 107, 47, 0.4), 0 0 40px rgba(85, 107, 47, 0.2);
    --glow-tan: 0 0 20px rgba(195, 176, 145, 0.5), 0 0 40px rgba(195, 176, 145, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #EFE8D6;
}

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

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: #EFE8D6;
    color: var(--text-dark);
    padding: 60px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(85, 107, 47, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(85, 107, 47, 0.15) 50px,
            rgba(85, 107, 47, 0.15) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(85, 107, 47, 0.15) 50px,
            rgba(85, 107, 47, 0.15) 51px
        );
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.9) 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.limited-badge {
    display: inline-block;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 50%, #DAA520 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(210, 105, 30, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(218, 165, 32, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    color: var(--army-olive-dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #8FBC3F 0%, #A8D145 50%, #8FBC3F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    color: var(--army-olive);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    color: var(--text-light);
}

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

/* ===================================
   Form Styles
   =================================== */

.form-container {
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row input {
    flex: 1;
}

.lead-form input[type="email"],
.lead-form input[type="text"] {
    flex: 1;
    padding: 18px 24px;
    font-size: 1.1rem;
    border: 2px solid var(--army-tan);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.lead-form input[type="email"]:focus,
.lead-form input[type="text"]:focus {
    box-shadow: 0 0 15px rgba(154, 205, 50, 0.3), 0 4px 20px rgba(107, 127, 63, 0.2);
    border-color: #9ACD32;
    background: white;
}

.cta-button {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #556B2F 0%, #6B7F3F 40%, #9ACD32 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(107, 127, 63, 0.4), 0 0 25px rgba(154, 205, 50, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(154, 205, 50, 0.6), 0 0 60px rgba(154, 205, 50, 0.3), 0 12px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #6B7F3F 0%, #9ACD32 50%, #6B7F3F 100%);
}

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

.form-note {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
}

/* ===================================
   Social Proof
   =================================== */

.social-proof {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--army-olive-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.proof-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   What You Get Section
   =================================== */

.what-you-get {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.95) 0%, rgba(107, 127, 63, 0.95) 100%),
                url('../assets/images/n8n-workflow.webp') center/cover no-repeat;
    background-blend-mode: multiply;
    position: relative;
    overflow: hidden;
}

.what-you-get::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(154, 205, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(144, 238, 144, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(85, 107, 47, 0.4) 0%, rgba(107, 127, 63, 0.3) 100%);
    pointer-events: none;
}

.what-you-get .container {
    position: relative;
    z-index: 1;
}

.what-you-get .section-title,
.what-you-get .section-subtitle {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.workflow-card {
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 25px,
            rgba(85, 107, 47, 0.06) 25px,
            rgba(85, 107, 47, 0.06) 26px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 25px,
            rgba(85, 107, 47, 0.06) 25px,
            rgba(85, 107, 47, 0.06) 26px
        ),
        linear-gradient(135deg, #EFE8D6 0%, #f8f4ea 100%);
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(195, 176, 145, 0.4);
    position: relative;
    overflow: hidden;
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(143, 188, 63, 0.02) 0%, rgba(168, 209, 69, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.workflow-card:hover::before {
    opacity: 1;
}

.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(195, 176, 145, 0.6), 0 0 60px rgba(195, 176, 145, 0.3);
    border-color: #C3B091;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.workflow-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.card-number {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-description {
    color: var(--text-light);
    font-size: 1rem;
}

.workflow-card.plus-more {
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(85, 107, 47, 0.08) 15px,
            rgba(85, 107, 47, 0.08) 16px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(85, 107, 47, 0.08) 15px,
            rgba(85, 107, 47, 0.08) 16px
        ),
        linear-gradient(135deg, #B8A77A 0%, #C3B091 100%);
    color: var(--text-dark);
    box-shadow: 0 0 30px rgba(184, 167, 122, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.workflow-card.plus-more h3,
.workflow-card.plus-more .card-description {
    color: var(--text-dark);
}

/* ===================================
   Pain Points Section
   =================================== */

.pain-points {
    padding: 80px 20px;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(85, 107, 47, 0.08) 50px,
            rgba(85, 107, 47, 0.08) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(85, 107, 47, 0.08) 50px,
            rgba(85, 107, 47, 0.08) 51px
        ),
        var(--bg-white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-card {
    background: 
        radial-gradient(circle, rgba(85, 107, 47, 0.15) 1px, transparent 1px),
        linear-gradient(135deg, #EFE8D6 0%, #e0d5c0 100%);
    background-size: 35px 35px, 100%;
    padding: 40px;
    border-radius: 16px;
    border: 3px solid #B8A77A;
    box-shadow: 0 4px 15px rgba(107, 93, 79, 0.2);
}

.pain-card.solution {
    background: 
        radial-gradient(circle, rgba(195, 176, 145, 0.2) 1px, transparent 1px),
        linear-gradient(135deg, #556B2F 0%, #4A5D23 100%);
    background-size: 35px 35px, 100%;
    border-color: #C3B091;
    color: white;
    box-shadow: 0 0 30px rgba(85, 107, 47, 0.5), 0 0 60px rgba(85, 107, 47, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pain-card.solution h3,
.pain-card.solution ul li {
    color: white;
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pain-card ul {
    list-style: none;
}

.pain-card ul li {
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===================================
   Benefits Section
   =================================== */

.benefits {
    padding: 80px 20px;
    background: 
        radial-gradient(circle, rgba(85, 107, 47, 0.25) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #e8dcc4 0%, #EFE8D6 100%);
    background-size: 35px 35px, 100%;
}

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

.benefit-item {
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 25px,
            rgba(85, 107, 47, 0.06) 25px,
            rgba(85, 107, 47, 0.06) 26px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 25px,
            rgba(85, 107, 47, 0.06) 25px,
            rgba(85, 107, 47, 0.06) 26px
        ),
        linear-gradient(135deg, #ffffff 0%, #f8f4ea 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #C3B091;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(85, 107, 47, 0.4), 0 0 50px rgba(85, 107, 47, 0.2);
    border-color: var(--army-olive);
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 25px,
            rgba(85, 107, 47, 0.08) 25px,
            rgba(85, 107, 47, 0.08) 26px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 25px,
            rgba(85, 107, 47, 0.08) 25px,
            rgba(85, 107, 47, 0.08) 26px
        ),
        linear-gradient(135deg, #f8f4ea 0%, #EFE8D6 100%);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===================================
   Use Cases Section
   =================================== */

.use-cases {
    padding: 80px 20px;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(85, 107, 47, 0.08) 50px,
            rgba(85, 107, 47, 0.08) 51px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(85, 107, 47, 0.08) 50px,
            rgba(85, 107, 47, 0.08) 51px
        ),
        var(--bg-white);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.use-case-card {
    background: 
        radial-gradient(circle, rgba(195, 176, 145, 0.2) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #6B5D4F 0%, #556B2F 100%);
    background-size: 35px 35px, 100%;
    color: white;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(195, 176, 145, 0.3);
}

.use-case-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(107, 93, 79, 0.6), 0 0 70px rgba(107, 93, 79, 0.3);
    border-color: #B8A77A;
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.use-case-card p {
    opacity: 0.95;
    font-size: 1.05rem;
}

/* ===================================
   Final CTA Section
   =================================== */

.final-cta {
    padding: 100px 20px;
    background: 
        radial-gradient(circle, rgba(195, 176, 145, 0.2) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #4A5D23 0%, #556B2F 100%);
    background-size: 35px 35px, 100%;
    color: white;
    text-align: center;
    box-shadow: 0 0 40px rgba(85, 107, 47, 0.6), 0 0 80px rgba(85, 107, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(107, 127, 63, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(195, 176, 145, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.final-cta .section-title,
.final-cta .section-subtitle {
    color: white;
}

.final-cta .form-note {
    color: white;
    opacity: 0.95;
}

.final-cta .cta-button {
    background: linear-gradient(135deg, #EFE8D6 0%, #D2691E 50%, #DAA520 100%);
    color: var(--text-dark);
    border: 2px solid rgba(218, 165, 32, 0.5);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.5), 0 0 40px rgba(218, 165, 32, 0.3);
}

.final-cta .cta-button:hover {
    background: linear-gradient(135deg, #DAA520 0%, #D2691E 50%, #EFE8D6 100%);
    box-shadow: 0 0 40px rgba(218, 165, 32, 0.7), 0 0 80px rgba(210, 105, 30, 0.4), 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: #DAA520;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===================================
   Thank You Page Styles
   =================================== */

.thank-you-hero {
    background: var(--gradient-success);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.thank-you-hero .hero-title {
    color: white;
}

.thank-you-hero .hero-subtitle {
    color: white;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.download-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.download-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.download-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.download-info {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.download-button {
    display: inline-block;
    padding: 20px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.download-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.download-note {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   Instructions Section
   =================================== */

.instructions {
    padding: 80px 20px;
    background: white;
}

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

.step-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    border: 2px solid var(--border-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    margin-top: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===================================
   Hosting Options Section
   =================================== */

.hosting-options {
    padding: 80px 20px;
    background: var(--bg-light);
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.hosting-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.hosting-card.recommended {
    border-color: var(--success-color);
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-success);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.hosting-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.hosting-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hosting-card ul {
    list-style: none;
}

.hosting-card ul li {
    padding: 8px 0;
    font-size: 1.05rem;
}

/* ===================================
   VPS Promotion Section
   =================================== */

.vps-promotion {
    padding: 80px 20px;
    background: white;
}

.promo-header {
    text-align: center;
    margin-bottom: 60px;
}

.vps-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.vps-benefit {
    text-align: center;
    padding: 32px;
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.vps-benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.vps-benefit p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===================================
   Pricing Comparison Table
   =================================== */

.pricing-comparison {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
}

.pricing-comparison h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 32px;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
}

.comparison-cell {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell.highlight {
    background: #f0fdf4;
    font-weight: 600;
    color: var(--success-color);
}

.comparison-row.header .comparison-cell.highlight {
    background: rgba(16, 185, 129, 0.2);
    color: white;
}

/* ===================================
   Discount Banner
   =================================== */

.discount-banner {
    background: var(--gradient-secondary);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    margin: 60px 0;
}

.discount-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.discount-content p {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.coupon-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.coupon-code .code {
    background: white;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 900;
    padding: 20px 40px;
    border-radius: 12px;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.copy-button {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-button:hover {
    background: white;
    color: var(--secondary-color);
}

.discount-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.vps-cta-button {
    display: inline-block;
    padding: 20px 48px;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.vps-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   Plans Overview
   =================================== */

.plans-overview {
    margin-top: 60px;
}

.plans-overview h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.plan-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-card.popular {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.plan-card h4 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    text-align: center;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 24px;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.plans-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 24px;
}

/* ===================================
   What's Next Section
   =================================== */

.whats-next {
    padding: 80px 20px;
    background: var(--bg-light);
}

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

.next-step {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.next-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.next-step h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.next-step p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--army-olive-darker);
    color: var(--bg-light);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 8px 0;
    opacity: 0.9;
}

.footer-note {
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer a {
    color: var(--army-tan);
    text-decoration: none;
}

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

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .hero-logo {
        max-width: 220px;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .form-row {
        flex-direction: column;
    }

    .social-proof {
        gap: 30px;
    }

    .workflow-grid,
    .benefits-grid,
    .hosting-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-bottom: 1px solid var(--border-color);
        padding: 16px;
    }

    .comparison-row:not(.header) .comparison-cell:first-child {
        font-weight: 700;
        background: var(--bg-light);
    }

    .coupon-code {
        flex-direction: column;
    }

    .coupon-code .code {
        font-size: 1.5rem;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 20px 80px;
    }

    .hero-logo {
        max-width: 200px;
    }

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

    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .proof-number {
        font-size: 2rem;
    }

    .card-icon,
    .benefit-icon {
        font-size: 2.5rem;
    }
}

/* ===================================
   Animations
   =================================== */

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

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

/* ===================================
   Utility Classes
   =================================== */

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

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

