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

:root {
    --navy: #081220;
    --gold: #FFD700;
    --teal: #FFD700;
    --dark: #2C3E50;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --border: #E9ECEF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a {
    color: var(--teal);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--navy);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-secondary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--navy);
}

.btn-outline {
    background-color: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn-outline:hover {
    background-color: var(--teal);
    color: var(--navy);
}

/* ATS Callout Section */
.ats-callout {
    background: linear-gradient(135deg, var(--teal), #1ba39c);
    color: var(--navy);
    padding: 4rem 0;
    text-align: center;
    margin: 3rem 0;
}

.ats-callout-content {
    max-width: 700px;
    margin: 0 auto;
}

.ats-callout h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ats-callout p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--navy);
}

.ats-callout .btn-primary {
    background-color: var(--navy);
    color: white;
    border-color: var(--navy);
}

.ats-callout .btn-primary:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}

/* Header */
.header {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1rem;
}

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

.logo {
    font-size: 4.5rem;
    font-weight: 950;
    color: #FFFFFF;
    margin: 0;
    text-decoration: none;
    text-shadow: 
        /* Bold black outlines */
        -3px -3px 0 #081220,
        3px -3px 0 #081220,
        -3px 3px 0 #081220,
        3px 3px 0 #081220,
        /* Thicker outlines */
        -4px -4px 0 #000000,
        4px -4px 0 #000000,
        -4px 4px 0 #000000,
        4px 4px 0 #000000,
        /* Pure white glow effects */
        0 0 10px rgba(255,255,255,0.9),
        0 0 20px rgba(255,255,255,0.7),
        0 0 30px rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
    display: inline-block;
    transform-origin: center;
    filter: brightness(1.3) contrast(1.2);
    -webkit-text-stroke: 2px #081220;
    text-stroke: 2px #081220;
}



.logo:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    filter: brightness(1.5) contrast(1.3);
    text-shadow: 
        /* Enhanced bold outlines */
        -4px -4px 0 #081220,
        4px -4px 0 #081220,
        -4px 4px 0 #081220,
        4px 4px 0 #081220,
        /* Super thick outlines */
        -5px -5px 0 #000000,
        5px -5px 0 #000000,
        -5px 5px 0 #000000,
        5px 5px 0 #000000,
        /* Intense white glow */
        0 0 15px rgba(255,255,255,1.0),
        0 0 25px rgba(255,255,255,0.9),
        0 0 35px rgba(255,255,255,0.7);
    -webkit-text-stroke: 3px #081220;
    text-stroke: 3px #081220;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--teal);
    color: var(--navy) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Founding Banner */
.founding-banner {
    background: var(--teal);
    color: var(--navy);
    text-align: center;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight {
    color: #FFFFFF;
    font-weight: 950;
    text-shadow: 
        /* Bold navy outlines */
        -3px -3px 0 #081220,
        3px -3px 0 #081220,
        -3px 3px 0 #081220,
        3px 3px 0 #081220,
        /* Thicker black outlines */
        -4px -4px 0 #000000,
        4px -4px 0 #000000,
        -4px 4px 0 #000000,
        4px 4px 0 #000000,
        /* Pure white glow effects */
        0 0 10px rgba(255,255,255,0.9),
        0 0 20px rgba(255,255,255,0.7),
        0 0 30px rgba(255,255,255,0.5);
    -webkit-text-stroke: 2px #081220;
    text-stroke: 2px #081220;
    filter: brightness(1.3) contrast(1.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.founding-reminder {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light);
}

/* Research-Backed Section */
.research-backed {
    padding: 4rem 0;
    background-color: var(--dark);
    color: var(--navy);
}

.research-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.research-header h2 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.research-header p {
    color: var(--light);
    font-size: 1.1rem;
}

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

.pillar {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.pillar.dark-pillar h3 {
    color: white;
}

.pillar p {
    color: var(--light);
}

.pillar.dark-pillar p,
.pillar.dark-pillar ul,
.pillar.dark-pillar li {
    color: #f0f0f0;
}

.pillar.dark-pillar ul li {
    color: #f0f0f0;
}

/* Problem Section */
.problem {
    padding: 4rem 0;
    background-color: var(--light);
}

.problem h2 {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.problem-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

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

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

.service-card {
    padding: 2rem;
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

.roi-banner {
    background: var(--success);
    color: var(--navy);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.roi-banner h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.roi-banner p {
    color: var(--navy);
    margin: 0;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background-color: var(--light);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--teal);
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    padding: 4rem 0;
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-credentials {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.about-credentials h4 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-credentials ul {
    list-style: none;
}

.about-credentials li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.about-credentials li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: var(--light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 20px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--navy);
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.testimonial-author strong {
    color: var(--navy);
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.testimonial-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
}

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

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

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--navy);
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
}

.price-main small {
    font-size: 1rem;
    color: var(--text-light);
}

.price-founding {
    display: block;
    color: var(--teal);
    font-weight: 600;
    margin-top: 0.5rem;
    text-shadow: 
        -1px -1px 0 #000000,
        1px -1px 0 #000000,
        -1px 1px 0 #000000,
        1px 1px 0 #000000;
}

.price-subtext {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

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

.pricing-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Get Started Form */
.get-started {
    padding: 4rem 0;
    background-color: var(--light);
}

.get-started h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.get-started > .container > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Contact Form Section */
.contact-section {
    background-color: var(--light);
    padding: 4rem 0;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 3rem 0 1rem;
}

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

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

.strategic-tagline {
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 
        -2px -2px 0 #000000,
        2px -2px 0 #000000,
        -2px 2px 0 #000000,
        2px 2px 0 #000000,
        -3px -3px 0 #000000,
        3px -3px 0 #000000,
        -3px 3px 0 #000000,
        3px 3px 0 #000000;
    -webkit-text-stroke: 1px #000000;
    text-stroke: 1px #000000;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Add-on card styling */
.pricing-card.add-on {
    border: 2px solid var(--teal);
    background: linear-gradient(to bottom, var(--white) 0%, #f0faf8 100%);
}

.pricing-card.add-on .btn-outline {
    border-color: var(--teal);
    color: var(--teal);
}

.pricing-card.add-on .btn-outline:hover {
    background-color: var(--teal);
    color: var(--white);
}

/* Highlight card for featured services */
.service-card.highlight-card {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, #fff9e6 100%);
    position: relative;
}

.service-card.highlight-card::before {
    content: 'NEW';
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 10px;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
        text-shadow: 
            /* Bold outlines */
            -2px -2px 0 #081220,
            2px -2px 0 #081220,
            -2px 2px 0 #081220,
            2px 2px 0 #081220,
            /* Thick outlines */
            -3px -3px 0 #000000,
            3px -3px 0 #000000,
            -3px 3px 0 #000000,
            3px 3px 0 #000000,
            /* White glow */
            0 0 8px rgba(255,255,255,0.9),
            0 0 15px rgba(255,255,255,0.7),
            0 0 25px rgba(255,255,255,0.5);
        -webkit-text-stroke: 1.5px #081220;
        text-stroke: 1.5px #081220;
    }
    
    .nav {
        padding: 1rem 0;
        gap: 0.75rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .founding-banner {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .testimonial-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }