:root {
    --deep-blue: #002E50;
    --yellow: #F0F424;
    --orange: #FC5101;
    --pink: #FFB4ED;
    --grey: #CED7D6;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --dark-text: #1A1A1A;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background: var(--off-white);
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--deep-blue);
    transition: all 0.3s ease;
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
    max-width: 280px;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-link img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--yellow);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    gap: 3.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--yellow);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Membership emphasized */
.nav-menu li.emphasized a {
    background: var(--yellow);
    color: var(--deep-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.nav-menu li.emphasized a::after {
    display: none;
}

.nav-menu li.emphasized a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 244, 36, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: 
        /* Fine etched line details - like engraving - WITH MORE ORANGE */
        url("data:image/svg+xml,%3Csvg width='1200' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.03'%3E%3Cpath d='M100,300 Q400,150 700,300 T1100,300' stroke='white' stroke-width='2' fill='none'/%3E%3Cpath d='M120,320 Q420,170 720,320 T1120,320' stroke='white' stroke-width='1' fill='none'/%3E%3Cpath d='M50,500 Q450,400 800,550' stroke='rgba(240,244,36,0.8)' stroke-width='3' fill='none'/%3E%3Cpath d='M70,520 Q470,420 820,570' stroke='rgba(240,244,36,0.5)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M200,600 Q600,480 1000,650' stroke='rgba(252,81,1,0.9)' stroke-width='2.5' fill='none'/%3E%3Cpath d='M220,620 Q620,500 1020,670' stroke='rgba(252,81,1,0.6)' stroke-width='1' fill='none'/%3E%3Cpath d='M350,400 Q650,350 950,420' stroke='rgba(252,81,1,0.7)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M400,250 Q700,200 1000,270' stroke='rgba(252,81,1,0.5)' stroke-width='1' fill='none'/%3E%3Cpath d='M100,650 Q350,600 600,680' stroke='rgba(252,81,1,0.6)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0,200 Q300,100 600,180' stroke='rgba(255,180,237,0.6)' stroke-width='2' fill='none'/%3E%3Cpath d='M300,150 Q500,80 800,140' stroke='white' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M150,700 Q400,650 750,720' stroke='white' stroke-width='1' fill='none' opacity='0.3'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/cover,
        /* Broader organic swooshes for depth */
        url("data:image/svg+xml,%3Csvg width='1200' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,300 Q400,150 700,300 T1100,300' stroke='rgba(255,255,255,0.02)' stroke-width='80' fill='none'/%3E%3Cpath d='M50,500 Q450,400 800,550' stroke='rgba(240,244,36,0.025)' stroke-width='100' fill='none'/%3E%3Cpath d='M200,600 Q600,480 1000,650' stroke='rgba(252,81,1,0.02)' stroke-width='90' fill='none'/%3E%3Cpath d='M0,200 Q300,100 600,180' stroke='rgba(255,180,237,0.02)' stroke-width='70' fill='none'/%3E%3C/svg%3E") no-repeat center/cover,
        /* Additional depth with subtle gradients */
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(240, 244, 36, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(252, 81, 1, 0.015) 0%, transparent 40%),
        /* Base color */
        var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(100px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(100px);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

h1 span:first-child {
  font-weight: 400; /* Regular weight for "You've read the book." */
}

h1 span:last-child {
  font-weight: 800; /* Extra bold for "Now book the business." */
}

.hero-subtext {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

/* Form Styling */
.hero-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ml-form-embedContainer {
    box-sizing: border-box;
    display: block;
    margin: 0;
    padding: 0;
}

.ml-form-embedWrapper {
    background: transparent !important;
    border: none !important;
}

.ml-form-embedBody {
    padding: 0 !important;
}

.ml-form-fieldRow {
    margin-bottom: 1.5rem;
}

.ml-form-fieldRow.ml-last-item {
    margin-bottom: 1.5rem;
}

.ml-form-fieldRow input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--grey);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
    background: var(--off-white);
}

.ml-form-fieldRow input:focus {
    outline: none;
    border-color: var(--deep-blue);
}

.ml-form-fieldRow input::placeholder {
    color: var(--dark-text);
    opacity: 0.5;
    font-weight: 500;
}

.ml-form-embedSubmit {
    margin: 0 !important;
}

.ml-form-embedSubmit button.primary {
    width: 100%;
    padding: 1.2rem;
    background: var(--yellow) !important;
    color: var(--deep-blue) !important;
    border: none !important;
    border-radius: 10px !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ml-form-embedSubmit button.primary:hover {
    background: var(--orange) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 244, 36, 0.3);
}

.form-disclaimer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-text);
    opacity: 0.7;
}

.ml-form-successBody {
    padding: 2rem;
    text-align: center;
}

.ml-form-successBody h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.ml-form-successBody p {
    font-size: 1.1rem;
    color: var(--dark-text);
}

/* Loader */
.ml-form-embedSubmitLoad {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.ml-form-embedSubmitLoad:after {
    content: " ";
    display: block;
    width: 11px;
    height: 11px;
    margin: 1px;
    border-radius: 50%;
    border: 4px solid var(--deep-blue);
    border-color: var(--deep-blue) var(--deep-blue) var(--deep-blue) transparent;
    animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Page Content (for internal pages) */
.page-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 6rem 2rem;
    background: var(--off-white);
}

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

.content-container h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.content-container p {
    font-size: 1.2rem;
    color: var(--dark-text);
    line-height: 1.8;
}

/* Impact Section */
.impact-section {
    background: var(--orange);
    padding: 4rem 2rem;
}

.impact-container {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--off-white);
    padding: 4rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.impact-statement h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-blue);
    line-height: 1.1;
    margin: 0;
}

.impact-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--deep-blue);
}

.impact-text p {
    margin: 0;
}

.impact-text .highlight {
    background: var(--yellow);
    padding: 0 0.3rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--deep-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-blue);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content p a {
    color: var(--yellow);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--yellow);
    color: var(--deep-blue);
}

.btn-cookie-accept:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-decline:hover {
    border-color: var(--white);
}

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    background: var(--off-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--dark-text);
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--dark-text);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.legal-content a {
    color: var(--deep-blue);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--orange);
}

/* Contact Page */
.contact-page {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
    background: var(--off-white);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.contact-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.contact-email a {
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--yellow);
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--grey);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-blue);
    background: var(--white);
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--yellow);
    color: var(--deep-blue);
    border: none;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 244, 36, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 404 Error Page */
.error-404 {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.error-container {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-family: 'Manrope', sans-serif;
    font-size: 10rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.error-404 p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 3rem;
}

.btn-home {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--yellow);
    color: var(--deep-blue);
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-home:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 244, 36, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .logo-link {
        max-width: 220px;
    }

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

    .hero-text h1 {
        font-size: 3rem;
    }

    .impact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem;
    }

    .impact-statement h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .logo-link {
        max-width: 180px;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Hide menu by default on mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--deep-blue);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    /* Show menu when active */
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .nav-menu li.emphasized a {
        text-align: center;
        width: 100%;
    }

    /* Fix hero section spacing - prevent text cutoff */
    .hero {
        margin-top: 70px;
        padding: 3rem 1.5rem;
        min-height: calc(100vh - 70px);
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-form {
        padding: 2rem 1.5rem;
    }

    .impact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .impact-statement h2 {
        font-size: 2.2rem;
    }

    .impact-text {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie-accept,
    .btn-cookie-decline {
        width: 100%;
    }
    
    .contact-intro h1 {
        font-size: 2.2rem;
    }
    
    .contact-lead {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* =====================================================
   PHASE 2: CONVERSION COMPONENTS
   ===================================================== */

/* --- Stats Showcase --- */
.stats-section {
    background: var(--deep-blue);
    padding: 5rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3.5rem;
    line-height: 1.2;
}

.stats-heading .highlight-yellow {
    color: var(--yellow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.5;
}

/* --- Press/Media Logos ("As Featured In") --- */
.press-section {
    background: var(--white);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.press-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.press-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--dark-text);
    opacity: 0.5;
    margin-bottom: 2.5rem;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.press-logo {
    height: 35px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.press-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* Placeholder press logos using text */
.press-logo-placeholder {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-text);
    opacity: 0.25;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.press-logo-placeholder:hover {
    opacity: 0.5;
}

/* --- Testimonials --- */
.testimonials-section {
    background: var(--off-white);
    padding: 5rem 2rem;
}

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

.testimonials-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    padding-top: 1rem;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--yellow);
    position: absolute;
    top: -1rem;
    left: 0;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.testimonial-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-text);
    opacity: 0.6;
}

/* --- Bottom Signup Form (above footer) --- */
.bottom-signup {
    background: var(--deep-blue);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.bottom-signup::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.04;
    filter: blur(80px);
}

.bottom-signup-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bottom-signup h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.bottom-signup .signup-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.bottom-signup-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    margin: 0 auto;
}

.bottom-signup-form .form-field {
    flex: 1;
}

.bottom-signup-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.bottom-signup-form input:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.12);
}

.bottom-signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.bottom-signup-form button {
    padding: 1rem 2.5rem;
    background: var(--yellow);
    color: var(--deep-blue);
    border: none;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.bottom-signup-form button:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 244, 36, 0.3);
}

.bottom-signup .form-disclaimer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Bottom signup success state */
.bottom-signup .ml-form-successBody {
    padding: 1rem;
    text-align: center;
}

.bottom-signup .ml-form-successBody h4 {
    color: var(--yellow);
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bottom-signup .ml-form-successBody p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* =====================================================
   PHASE 2: RESPONSIVE - Conversion Components
   ===================================================== */

@media (max-width: 1024px) {
    .stats-grid {
        gap: 2rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .press-logos {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Stats */
    .stats-section {
        padding: 3.5rem 1.5rem;
    }

    .stats-heading {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Press Logos */
    .press-section {
        padding: 3rem 1.5rem;
    }

    .press-logos {
        gap: 2rem;
    }

    .press-logo {
        height: 25px;
    }

    .press-logo-placeholder {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 3.5rem 1.5rem;
    }

    .testimonials-heading {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2rem;
    }

    /* Bottom Signup */
    .bottom-signup {
        padding: 3rem 1.5rem;
    }

    .bottom-signup h2 {
        font-size: 1.7rem;
    }

    .bottom-signup .signup-subtext {
        font-size: 1rem;
    }

    .bottom-signup-form {
        flex-direction: column;
    }

    .bottom-signup-form button {
        width: 100%;
        padding: 1rem;
    }
}
