/*
Theme Name: WhatArmy Premium WordPress Theme
Description: WhatArmy-branded WordPress specialist theme with legendary copywriting and exact brand specifications
Version: 4.0
Author: WhatArmy
*/

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

/* WhatArmy Brand Color System - Exact Specifications */
:root {
    /* WhatArmy Brand Colors */
    --whatarmy-forest: #002B2C;        /* Primary brand color - Forest Green */
    --whatarmy-sage: #4A5D23;          /* Secondary brand color - Sage Green */
    --whatarmy-gold: #D4AF37;          /* Premium accent - Gold */
    --whatarmy-charcoal: #2C3E50;      /* Text color - Charcoal */
    --whatarmy-light: #F8F9FA;         /* Background - Cool Gray */
    --whatarmy-white: #FFFFFF;         /* Cards/content - Pure White */
    
    /* Legacy Variables (mapped to brand) */
    --primary-color: var(--whatarmy-forest);
    --secondary-color: var(--whatarmy-sage);
    --neutral-dark: var(--whatarmy-charcoal);
    --neutral-light: var(--whatarmy-light);
    --background-color: var(--whatarmy-white);
    --accent-gold: var(--whatarmy-gold);
    --text-dark: var(--whatarmy-charcoal);
    --text-light: #6C757D;
    --border-color: #E5E7EB;
    
    /* Layout Variables */
    --max-width: 1200px;
    --section-padding: 80px 0;
    --tablet-padding: 60px 0;
    --mobile-padding: 40px 0;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
}

/* WhatArmy Container & Grid System - Exact Specifications */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-mobile {
    padding: 60px 0;
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

/* WhatArmy Brand Sections */
.section-forest {
    background: var(--whatarmy-forest);
    color: white;
    padding: 100px 0;
}

.section-light {
    background: var(--whatarmy-light);
    padding: 80px 0;
}

.section-white {
    background: var(--whatarmy-white);
    padding: 80px 0;
}

.services-section {
    background: linear-gradient(135deg, var(--whatarmy-light) 0%, #FFFFFF 100%);
    padding: 100px 0;
}

.pricing-section {
    background: var(--whatarmy-forest);
    color: white;
    padding: 100px 0;
}

/* Brand Accent Elements */
.brand-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--whatarmy-forest) 0%, var(--whatarmy-sage) 100%);
    margin: 0 auto 32px auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-forest,
    .pricing-section {
        padding: 60px 0;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .three-column-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* WhatArmy Brand Typography - Exact Specifications */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--whatarmy-forest);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

/* WhatArmy Brand Headlines */
.brand-headline {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--whatarmy-forest);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.brand-headline::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--whatarmy-forest) 0%, var(--whatarmy-sage) 100%);
}

/* Hero Section Typography */
.hero-headline {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--whatarmy-forest);
    margin-bottom: 24px;
    text-align: center;
}

.hero-subheadline {
    font-size: 20px;
    line-height: 1.5;
    color: var(--whatarmy-charcoal);
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Headlines with Brand Accent */
.section-headline {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--whatarmy-forest);
    text-align: center;
    margin-bottom: 16px;
}

.section-headline + .brand-accent {
    margin-bottom: 48px;
}

.services-section .section-headline {
    color: var(--whatarmy-forest);
    margin-bottom: 20px;
}

.services-section .section-subheadline {
    color: var(--whatarmy-sage);
    font-size: 18px;
    margin-bottom: 64px;
}

.pricing-section .section-headline {
    color: white;
    margin-bottom: 64px;
}

/* Card Typography */
.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--whatarmy-forest);
    margin-bottom: 16px;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--whatarmy-charcoal);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Standard Elements */
h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(22px, 3vw, 24px);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.subheadline {
    font-size: clamp(18px, 2.5vw, 20px);
    color: var(--whatarmy-charcoal);
    font-weight: 400;
    line-height: 1.5;
}

.small-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Mobile Typography */
@media (max-width: 768px) {
    .brand-headline {
        font-size: 36px;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .section-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* WhatArmy Premium Button System - Exact Brand Specifications */

/* Primary CTA - WhatArmy Signature Forest Green */
.btn-primary {
    background: var(--whatarmy-forest);
    color: white;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 56px;
    box-shadow: 0 4px 16px rgba(0, 43, 44, 0.3);
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--whatarmy-sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 43, 44, 0.4);
}

/* Secondary CTA - Sage Green */
.btn-secondary {
    background: var(--whatarmy-sage);
    color: white;
    border: 2px solid var(--whatarmy-sage);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 54px;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background: var(--whatarmy-forest);
    border-color: var(--whatarmy-forest);
    transform: translateY(-1px);
}

/* Gold Premium Button */
.btn-gold {
    background: var(--whatarmy-gold);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 54px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.btn-gold:hover {
    background: #B8941F;
    transform: translateY(-1px);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--whatarmy-charcoal);
    border: 2px solid var(--whatarmy-charcoal);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 54px;
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
    background: var(--whatarmy-charcoal);
    color: white;
    transform: translateY(-1px);
}

/* White Button for Dark Backgrounds */
.btn-white {
    background: white;
    color: var(--whatarmy-forest);
    border: 2px solid white;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-height: 54px;
    font-family: 'Inter', sans-serif;
}

.btn-white:hover {
    background: var(--whatarmy-light);
    transform: translateY(-1px);
}

/* Large Button Variation */
.btn-large {
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    min-height: 60px;
}

/* Mobile Button Adjustments */
@media (max-width: 767px) {
    .btn-primary,
    .btn-secondary,
    .btn-gold,
    .btn-outline,
    .btn-white {
        width: 100%;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .btn-large {
        padding: 18px 36px;
        font-size: 18px;
    }
}

/* Announcement Banner */
.announcement-banner {
    background-color: var(--neutral-light);
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1001;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    color: var(--neutral-dark);
}

.announcement-content .emoji {
    font-size: 16px;
}

.announcement-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.announcement-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
}

.announcement-close:hover {
    color: var(--neutral-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header.with-banner {
    top: 48px;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutral-dark);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

.main-content.with-banner {
    margin-top: 128px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background-color: var(--background-color);
}

.hero .container {
    max-width: 800px;
}

.hero h1 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.1;
}

.hero .subheadline {
    font-size: clamp(18px, 2.5vw, 20px);
    color: var(--neutral-dark);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-cta .btn + .btn {
    margin-left: 16px;
}

.hero-visual {
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-content {
    text-align: center;
}

.social-proof h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-logos img {
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logos img:hover {
    opacity: 0.8;
}

.client-logo-placeholder {
    width: 120px;
    height: 32px;
    background-color: var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
    opacity: 0.6;
}

/* Services Section */
.services {
    padding: var(--section-padding);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

/* WhatArmy Service Cards - Exact Brand Specifications */
.service-card {
    background: var(--whatarmy-white);
    border: 2px solid var(--whatarmy-light);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 43, 44, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--whatarmy-sage);
    box-shadow: 0 16px 48px rgba(0, 43, 44, 0.15);
}

/* WordPress Maintenance - Hero Card Treatment */
.service-card.hero-service,
.service-card.highlighted {
    border: 3px solid var(--whatarmy-forest);
    background: linear-gradient(135deg, var(--whatarmy-white) 0%, var(--whatarmy-light) 100%);
    transform: scale(1.03);
}

.service-card.hero-service::before,
.service-card.highlighted::before {
    content: "Most Profitable";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--whatarmy-forest);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-card.hero-service .btn-gold {
    background: var(--whatarmy-gold);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Content */
.service-card .card-title {
    color: var(--whatarmy-forest);
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.service-card .card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--whatarmy-charcoal);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Problem/Solution Text Styling */
.problem-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--whatarmy-forest);
    margin-bottom: 16px;
    font-style: italic;
}

.solution-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--whatarmy-charcoal);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 32px 24px;
    }
    
    .service-card.hero-service,
    .service-card.highlighted {
        transform: none;
        margin-top: 20px;
    }
    
    .service-card.hero-service::before,
    .service-card.highlighted::before {
        font-size: 12px;
        padding: 6px 16px;
    }
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-price {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.problem-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-style: italic;
}

.solution-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-dark);
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Results Section */
.results {
    padding: var(--section-padding);
    background-color: var(--neutral-light);
}

.results h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.result-card {
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.result-number {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.result-description {
    font-weight: 500;
    color: var(--neutral-dark);
    font-size: 16px;
    line-height: 1.4;
}

/* WordPress Maintenance Pricing Section */
.pricing {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.pricing-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-plan {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--neutral-dark);
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

/* WhatArmy Pricing Section - Premium Brand Treatment */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 3px solid var(--whatarmy-light);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--whatarmy-sage);
}

.pricing-card.featured {
    border-color: var(--whatarmy-gold);
    transform: scale(1.08);
    box-shadow: 0 24px 48px rgba(212, 175, 55, 0.2);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--whatarmy-gold);
    color: white;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-plan {
    font-size: 20px;
    font-weight: 600;
    color: var(--whatarmy-forest);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 56px;
    font-weight: 800;
    color: var(--whatarmy-forest);
    margin: 24px 0;
    letter-spacing: -0.02em;
}

.pricing-period {
    font-size: 16px;
    color: var(--whatarmy-charcoal);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--whatarmy-charcoal);
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--whatarmy-sage);
    font-weight: 600;
}

/* Responsive Pricing Grid */
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 40px 32px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 20px;
    }
    
    .pricing-price {
        font-size: 48px;
    }
}

/* Social Proof Section */
.social-proof-enhanced {
    padding: 80px 0;
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-stats {
    text-align: center;
    margin-bottom: 48px;
}

.social-proof-stats h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.testimonial-featured {
    background: var(--neutral-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--neutral-dark);
    margin-bottom: 24px;
    line-height: 1.5;
}

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

/* Objection Crushing Section */
.objection-crushing {
    padding: 80px 0;
    background-color: var(--neutral-light);
}

.objection-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.objection-column {
    padding: 24px;
}

.objection-wrong {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
}

.objection-right {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid #27ae60;
}

.objection-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.objection-icon {
    margin-right: 12px;
    font-weight: 600;
    font-size: 18px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003333 100%);
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-headline {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
}

.guarantee-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.guarantee-item h4 {
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-size: 18px;
}

.guarantee-confidence {
    font-style: italic;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background-color: var(--background-color);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
    color: white;
    font-weight: 600;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.5;
}

.process-step h3 {
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
}

.final-cta .btn {
    margin-bottom: 2rem;
}

.risk-reversal {
    font-style: italic;
    opacity: 0.9;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #004849;
    opacity: 0.7;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

/* Mobile-First Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    :root {
        --section-padding: var(--tablet-padding);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--mobile-padding);
    }
    
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav.mobile-open .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 24px 20px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
        gap: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    /* Hero adjustments */
    .hero {
        padding: 60px 0;
    }
    
    .hero-cta .btn + .btn {
        margin-left: 0;
        margin-top: 12px;
        display: block;
    }
    
    /* Buttons touch-friendly */
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 44px;
        width: 100%;
        text-align: center;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 18px;
        min-height: 48px;
    }
    
    /* Card grids stack */
    .services-grid,
    .results-grid,
    .process-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-card.highlighted::before {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    /* Client logos mobile */
    .client-logos {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .client-logo-placeholder {
        width: 100px;
        height: 28px;
        font-size: 11px;
    }
    
    /* Typography mobile scaling */
    h1 {
        line-height: 1.1;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    /* Announcement banner mobile */
    .announcement-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 40px;
    }
    
    .announcement-close {
        right: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .social-proof {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 24px 16px;
    }
    
    .client-logos {
        gap: 12px;
    }
    
    .client-logo-placeholder {
        width: 90px;
        height: 24px;
        font-size: 10px;
    }
    
    .announcement-content {
        font-size: 13px;
        padding: 0 20px;
    }
    
    .objection-table {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .guarantee-headline {
        font-size: 28px;
    }
    
    .testimonial-quote {
        font-size: 18px;
    }
}

/* WhatArmy Brand Elements & Visual Identity */

/* Testimonials with Brand Treatment */
.testimonial-card {
    background: var(--whatarmy-white);
    border-left: 4px solid var(--whatarmy-sage);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 43, 44, 0.08);
}

/* Results Metrics with Brand Colors */
.metric-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--whatarmy-forest);
    display: block;
}

.metric-description {
    color: var(--whatarmy-sage);
    font-weight: 600;
    font-size: 16px;
}

/* Warning/Guarantee Boxes with Brand Treatment */
.warning-box {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFBF0 100%);
    border: 2px solid var(--whatarmy-gold);
    border-radius: 12px;
    padding: 24px;
    margin: 40px 0;
}

.guarantee-box {
    background: var(--whatarmy-forest);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
}

/* Brand-Specific Result Cards */
.result-card {
    background-color: var(--whatarmy-white);
    border: 1px solid var(--whatarmy-light);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 43, 44, 0.08);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: var(--whatarmy-sage);
    box-shadow: 0 12px 32px rgba(0, 43, 44, 0.12);
}

/* Process Steps with Brand Colors */
.process-step {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--whatarmy-forest) 0%, var(--whatarmy-sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 43, 44, 0.2);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--whatarmy-forest);
}

.process-step p {
    color: var(--whatarmy-charcoal);
    font-size: 16px;
    line-height: 1.5;
}

/* Enhanced Objection Section */
.objection-wrong {
    background: rgba(231, 76, 60, 0.05);
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
}

.objection-right {
    background: rgba(74, 93, 35, 0.05);
    border-left: 4px solid var(--whatarmy-sage);
    border-radius: 8px;
}

/* Additional Brand Touches */
.section-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--whatarmy-forest) 0%, var(--whatarmy-sage) 100%);
    margin: 40px auto;
}

.brand-gradient-text {
    background: linear-gradient(135deg, var(--whatarmy-forest) 0%, var(--whatarmy-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* WhatArmy Logo Styling */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--whatarmy-forest);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.logo:hover {
    color: var(--whatarmy-sage);
    transition: color 0.3s ease;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }