:root {
    --dark: #2a1b12;
    --light: #ffffff;
    --muted: #666;
    --accent: #f7a01c;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    color: #111;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    background-color: #fff;
    /* Prevent white corners/flashes */
}

/* ===== Utilities ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

/* Logo Sizing */
.logo img {
    height: 24px;
    width: auto;
    display: block;
}

/* ===== Header ===== */
/* ===== Header ===== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    /* Reduced to pull logo up */
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: none;
    /* Ensure no constraint */
    padding: 0 20px;
    /* Tighter to edge */
    margin: 0;
    /* Remove centering */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    /* Closer together */
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    /* Lighter font weight like PDF */
    font-size: 0.85rem;
    /* Smaller text */
    letter-spacing: 0.5px;
    transition: all 0.3s ease;

    /* Button Styling */
    border: 1px solid #f7a01c;
    /* Orange Outline */
    padding: 8px 20px;
    /* Smaller padding */
    border-radius: 4px;
    /* Slightly sharper styling */
    background: rgba(0, 0, 0, 0.1);
}

.nav-links a:hover {
    background: rgba(247, 160, 28, 0.1);
    /* Subtle orange tint */
    border-color: #f7a01c;
    transform: translateY(-1px);
}

/* ===== Hero (Page 1) ===== */
.hero {
    background-color: transparent;
    /* Dark fallback */
    background-image: url("assets/chic-businesswoman-sitting-exhausted-her-swivel-chair 1.png");
    background-size: cover;
    background-position: center 25%;
    /* Reverted to prioritize head (top-ish) */
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    /* Critical for absolute text positioning */
    width: 100%;
    border-radius: 0;
    /* Ensure square corners */
}



.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    /* Keep consistency */
    /* Aligns text to the right */
    align-items: center;
    /* Vertically centers in the wrapper */
    width: 100%;
    height: 100%;
    /* Ensures wrapper fills the hero so absolute children position correctly */
}

.hero h1 {
    color: white;
    font-size: 32px;
    max-width: 600px;
    /* Increased to ensure lines fit comfortably */
    position: absolute;
    right: 20px;
    /* Aligned with navbar padding */
    top: calc(35% - 5px);
    /* Moved up 5px from previous 35% */
    transform: translateY(-50%);
    font-weight: bold;
    line-height: 1.2;
    font-family: "Gotham", "Montserrat", sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    text-align: left;
}

/* ===== Page 2: Signup Section ===== */
/* ===== Page 2: Signup Section ===== */
/* Full Width Section Wrappers */
.signup-section-wrapper {
    width: 100%;
    background: #fff;
    /* Clean white background */
    background-image: radial-gradient(circle at 70% 30%, #fbfbfb 0%, #fff 70%);
}

.verifiable-section-wrapper {
    width: 100%;
    background-color: #fafafa;
    /* Light grey background */
}

/* Container Adjustments */
.signup-section {
    padding: 8rem 0;
    /* Vertical space inside wrapper */
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    color: #000;
    position: relative;
    overflow: hidden;
}

/* Page 3: 2-Column Layout */
.verifiable-content {
    display: flex;
    align-items: center;
    /* Center vertically */
    gap: 40px;
    padding: 100px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left Column: Text (35% width) */
.content-left {
    flex: 0 0 35%;
    z-index: 10;
}

.header-block h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

/* Right Column: Carousel Wrapper (65% width) */
.carousel-wrapper {
    flex: 1;
    position: relative;
    height: 500px;
    /* Enforce height for cards */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-stage {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Constrain width to keep cards close */
    height: 100%;
    display: flex;
    justify-content: center;
    /* Centered in stage */
    align-items: center;
    perspective: 1000px;
}

/* Base Card Style */
.carousel-card {
    position: absolute;
    width: 340px;
    /* Fixed width */
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Ensure no vertical stacking interference */
    top: 50%;
    left: 50%;
    margin-top: -150px;
    /* Half of height approx (if height handled) */
    margin-left: -170px;
    /* Half of width */
    height: 320px;
    /* Fixed height for consistent centering */
}

.carousel-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.carousel-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.carousel-card .card-icon {
    margin-bottom: 20px;
    color: #111;
}

/* POSITION STATES (Center Mode) */

/* Center (Active) */
.carousel-card[data-pos="center"] {
    z-index: 10;
    transform: translateX(0) scale(1.1);
    /* Big & Center */
    opacity: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    /* Deep shadow */
}

/* Left */
.carousel-card[data-pos="left"] {
    z-index: 5;
    transform: translateX(-60%) scale(0.9);
    opacity: 0.7;
    filter: grayscale(20%);
}

/* Right */
.carousel-card[data-pos="right"] {
    z-index: 5;
    transform: translateX(60%) scale(0.9);
    opacity: 0.7;
    filter: grayscale(20%);
}

/* Hover Effect for Side Cards */
.carousel-card[data-pos="left"]:hover {
    transform: translateX(-65%) scale(0.95);
    opacity: 0.9;
    z-index: 6;
}

.carousel-card[data-pos="right"]:hover {
    transform: translateX(65%) scale(0.95);
    opacity: 0.9;
    z-index: 6;
}

/* Responsive */
@media (max-width: 900px) {
    .verifiable-content {
        flex-direction: column;
        padding: 60px 20px;
        gap: 60px;
    }

    .content-left {
        width: 100%;
        text-align: center;
    }

    .carousel-wrapper {
        width: 100%;
        height: auto;
    }

    .carousel-stage {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .carousel-card {
        position: relative;
        /* Stack normally */
        top: auto;
        left: auto;
        margin: 0;
        transform: none !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 400px;
        z-index: 1;
        height: auto;
    }
}


.signup-content h2 {
    font-size: 4rem;
    /* Larger */
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #000;
    font-family: "Poppins", sans-serif;
}

.signup-content h2 strong {
    font-weight: 600;
    display: inline-block;
    /* Ensure it flows */
}

.signup-content h2 .light-italic {
    font-weight: 300;
    font-style: italic;
    font-family: "Inter", sans-serif;
    color: #111;
    /* Keep it dark enough to read */
}

.signup-description {
    max-width: 750px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.25rem;
    /* Slightly larger body text */
    line-height: 1.6;
    color: #444;
    font-weight: 300;
}

.signup-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Tighter gap */
    margin-bottom: 3rem;
}

.signup-form input[type="email"] {
    padding: 1rem 1.5rem;
    width: 400px;
    max-width: 100%;
    border: 1px solid #d0d0d0;
    background: #f9f9f9;
    /* Slight off-white input */
    border-radius: 6px;
    /* Slightly softer corners */
    font-size: 1rem;
    outline: none;
    color: #000;
    transition: border-color 0.3s;
}

.signup-form input[type="email"]:focus {
    border-color: #000;
    background: #fff;
}

.signup-form input[type="email"]::placeholder {
    color: #888;
}

.signup-form button {
    padding: 1rem 2.5rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-form button:hover {
    background-color: #333;
}

.signup-footer {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Main Container */

/* Left Column Styling */
.content-left {
    flex: 1;
    z-index: 10;
}

.header-block h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
}

.text-feature-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-text-block h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.feature-text-block p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    max-width: 90%;
}

/* Right Column: Carousel Container */




/* Section Container */
.how-it-works-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.overline {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.light-italic {
    font-weight: 300;
    font-style: italic;
    color: #555;
}

.nav-arrows {
    margin-top: 30px;
    font-family: monospace;
    font-size: 1.2rem;
    color: #999;
}

.nav-arrows .arrow {
    margin: 0 10px;
    cursor: pointer;
}

/* Grid Layout */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Column Styling */
.step-column {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-size: 2rem;
    font-weight: 300;
    color: #000;
    margin-bottom: 15px;
}

.step-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-subtitle {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 40px;
    /* Aligns description text */
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes image to bottom */
}

/* Image Styling */
.step-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Square image */
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    /* Fallback */
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Makes the image black and white */
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}


.why-it-matters-section {
    max-width: 1400px;
    /* Increased to match other sections */
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    gap: 80px;
    background-color: #fff;
    /* Explicit white background */
}

/* Left Column Styling */
.content-left {
    flex: 1;
    /* Takes up 50% of the space */
    padding-right: 20px;
}

.overline {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.light-weight {
    font-weight: 300;
    /* Makes the second line thinner */
    color: #333;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Failure Points List */
.failure-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.point {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    /* Dark grey for readability */
    margin-bottom: 20px;
}

.point-title {
    font-weight: 700;
    color: #000;
    margin-right: 5px;
}

/* Right Column Styling */
.content-right {
    flex: 1.2;
    /* Gives the image slightly more width priority */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Container */
.image-container {
    width: 100%;
    position: relative;

    transition: transform 0.3s ease;
}

.image-container img {
    width: 100%;
    display: block;
}

/* Hover Effect (Optional) */
.image-container:hover {
    transform: scale(1.02);
}


/* Section Container */
/* Section Container */
.market-opp-section {
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    /* Ensure white background */
    background-color: #fff;
    text-align: center;
}

/* Header Styling */
.section-header {
    margin-bottom: 80px;
    text-align: left;
    padding-left: 40px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.sub-header {
    display: block;
    font-weight: 300;
    font-style: italic;
    font-size: 2.8rem;
    color: #555;
    margin-top: 5px;
}

/* Grid Layout */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.stat-column {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-column h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

/* Card Styling */
.stat-card {
    background-color: #F8F9FA;
    /* Very light grey */
    border-radius: 24px;
    padding: 50px 40px;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stat-card li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Custom Bullet Points */
.stat-card li:before {
    content: "•";
    color: #000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.stat-card .highlight {
    font-weight: 600;
    color: #000;
    margin-right: 5px;
}



.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ========================
   Integrations Section
   ======================== */
.integrations-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.integrations-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.integrations-header .overline {
    display: block;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.integrations-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.integrations-header .italic-text {
    font-style: italic;
    font-weight: 300;
    color: #555;
}

.integrations-header .subtext {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.logos-container {
    padding: 40px 0;
}

.logos-container img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    /* Subtle appearance matching design */
}

/* ========================
   Footer
   ======================== */
.main-footer {
    background-color: #fff;
    /* or #F9FAFB if a separation is needed, looks white in ref */
    padding: 80px 40px 40px;
    border-top: 1px solid #eee;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Brand Column */
.brand-col {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    /* Adjust as needed */
    width: auto;
    display: block;
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-email {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    /* Push to bottom of flex col */
}

/* Links Columns */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #000;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #000;
}

/* Connect Column Layout */
.connect-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.footer-bottom-info {
    margin-top: auto;
    /* Push to bottom */
    text-align: right;
    /* Aligns address/phone to right as per likely design */
    font-size: 0.85rem;
    color: #555;
}

.footer-phone,
.footer-address {
    margin-top: 10px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}



/* ========================
   Footer Bottom Bar 
   ======================== */
.footer-bottom-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    /* Ensures top lines align */
    padding-top: 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    display: flex;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact-item i {
    margin-top: 3px;
    /* Visual tweak to align icon with text baseline if needed */
}

/* Specific Alignment */
.email-item {
    justify-self: start;
    align-items: center;
    color: #333;
    transition: color 0.2s;
}

.email-item:hover {
    color: #000;
}

.phone-item {
    justify-self: center;
}

.address-item {
    justify-self: end;
    text-align: right;
}




.stat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-transform: capitalize;
    /* Ensures proper casing */
}

/* List Styling */
.stat-card ul {
    list-style: none;
    /* Remove default bullets */
    padding-left: 10px;
}

.stat-card li {
    position: relative;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    padding-left: 20px;
    /* Space for custom bullet */
}

/* Custom Bullet Point */
.stat-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Emphasize numbers */
.stat-card li strong {
    color: #000;
    font-weight: 600;
}


.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- INTEGRATIONS SECTION --- */
.integrations-section {
    padding: 100px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.overline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.integrations-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo Wall */
.logo-wall {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.logo-item {
    font-weight: 700;
    color: #e0e0e0;
    /* Very light gray to match the "faded" look */
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER SECTION --- */
.main-footer {
    background-color: #fff;
    padding: 80px 60px 40px;
    border-top: 1px solid #eaeaea;
    /* Subtle divider */
    margin-top: auto;
    /* Pushes footer to bottom */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Brand Column */
.footer-brand {
    flex: 2;
    /* Takes up double space compared to links */
    min-width: 300px;
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
}

.mission-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    max-width: 400px;
}

/* Link Columns */
.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #000;
}

/* Footer Bottom (Contact Line) */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    /* Spreads items out */
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #444;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== Hamburger Menu details (Default hidden) ===== */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    z-index: 20;
}

/* ===== Consolidated Responsive Design (Mobile/Tablet < 900px) ===== */
@media (max-width: 900px) {

    /* Header & Nav Drawer Logic */
    .site-header {
        position: fixed;
        background: rgba(42, 27, 18, 0.95);
        padding: 1rem 0;
    }

    .hamburger {
        display: block;
        /* Visible ONLY on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen right */
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #1a110b;
        /* Drawer background */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 15;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
    }

    .footer-brand {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ================= PAGE 4: HOW IT WORKS ================= */
.how-it-works-section {
    padding: 100px 40px;
    background: #fdfdfd;
    /* Light background */
    text-align: center;
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
}

.how-header {
    margin-bottom: 80px;
    text-align: center;
    /* Enforce centering */
    width: 100%;
}

.how-header .subhead {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.how-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.phase-card {
    text-align: left;
    position: relative;
    padding: 0 40px;
    border-right: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.phase-card:last-child {
    border-right: none;
}

/* Vertical Divider Lines */


.phase-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.phase-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.phase-sub {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    min-height: auto;
}

.phase-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    min-height: 80px;
}

.phase-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}

.phase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .phases-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phase-card {
        border-right: none;
        padding: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 40px;
    }

    .phase-card:last-child {
        border-bottom: none;
    }

    .how-header h2 {
        font-size: 2.2rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .brand-col {
        padding-right: 0;
    }

    .connect-col {
        text-align: left;
    }

    .footer-bottom-bar {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding-top: 40px;
    }

    .address-item {
        justify-self: center;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
        /* Center content of flex items */
    }

    .email-item {
        justify-self: center;
    }

    .address-item span {
        text-align: center;
    }
}

/* Fix for Why Standard AI Fails Image Responsiveness */
@media (max-width: 900px) {
    .why-it-matters-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .why-it-matters-section .content-left,
    .why-it-matters-section .content-right {
        width: 100%;
        text-align: left;
        /* Keep text left aligned or center? User didn't specify, but left is usually safer for reading */
    }

    .why-it-matters-section .content-right {
        order: 1;
        /* Move image to bottom */
        margin-top: 20px;
    }
}

/* Fix for Hamburger Menu - No Background, No Full Screen */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        /* Below header */
        right: 20px;
        width: auto;
        height: auto;
        flex-direction: column;
        background: transparent;
        backdrop-filter: blur(15px);
        /* Professional glass blur */
        -webkit-backdrop-filter: blur(15px);
        align-items: flex-end;
        /* Align links to right */
        display: none;
        padding: 20px;
        gap: 15px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: #fff;
        background: rgba(255, 255, 255, 0.05);
        /* Very subtle active area */
        border: 1px solid rgba(247, 160, 28, 0.5);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        width: 100%;
        text-align: center;
    }
}