/* Design System */
:root {
    /* Colors */
    --bg-color: #fafafa;
    --bg-white: #ffffff;
    --text-primary: #1a1816;
    --text-secondary: #898683;
    --accent-color: #1a1816;
    --theme-primary: #4A4A4A;
    /* Dark Grey */
    --theme-dark: #2C2C2C;
    /* Darker Grey */
    --rating-yellow: #FFC107;

    /* Using black as accent for buttons */
    --border-color: rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 140px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 999px;

    --brand-green: #6B9B6B;
    --bg-beige: #F9F7F5;
    /* Lightened beige to match screenshot */
    --text-gold: #c6a673;
}

.highlight {
    color: var(--brand-green);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    /* Duna uses lighter weights */
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 48px;
}

h3 {
    font-size: 24px;
    letter-spacing: -0.5px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    letter-spacing: -0.1px;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.section {
    padding: var(--section-padding) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--brand-green);
}

.btn-primary:hover {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 32px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 20px 0;
}

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

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

/* Marquee */
.marquee-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: none;
    /* Remove border if any */
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    /* Adjusted to match screenshot size */
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.separator {
    margin: 0 40px;
    color: #8ECD71;
    /* Original Green */
    font-size: 1.2em;
    /* Make the dot slightly larger */
    vertical-align: middle;
}

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

.btn-dark-pill {
    background-color: #2C2C2C;
    /* Dark grey to match image */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #1a1a1a;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

.menu-btn:hover {
    transform: scale(1.1);
}

/* Hero */
.hero {
    min-height: 90vh;
    padding-top: 180px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    align-items: center;
}

.hero-text {
    grid-column: span 6;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 32px;
}

.hero p {
    margin: 32px 0 48px;
    max-width: 90%;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-image-wrapper {
    grid-column: span 6;
    position: relative;
    height: 700px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    /* Removed border-bottom */
}

.stats-grid {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    /* Gap handled by padding for borders */
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 60px;
    margin-right: 60px;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.stat-value {
    font-family: var(--font-display);
    font-weight: 300;
    /* Light weight like Duna */
    font-size: 48px;
    /* Reduced from 64px */
    line-height: 1.2;
    color: var(--text-primary);
}

.stat-label {
    font-size: 16px;
    /* Reduced from 18px */
    color: var(--text-secondary);
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-section .section-header {
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Large gap as per screenshot */
    margin-top: 0;
    /* Spacing handled by header margin */
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-icon {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 300px;
    /* Limit width for readability */
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 24px;
}

/* Infrastructure Flow */
.infrastructure-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    padding: 40px 0;
}

/* Infrastructure Section Background */
.infrastructure {
    background-color: #e6e6e4;
    /* Slightly darker for better contrast */
}

.flow-node {
    background: transparent;
    padding: 0;
    border-radius: 60px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), z-index 0s linear 0.5s;
    /* Delay z-index reset on close */
    perspective: 1000px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    height: auto;
    /* Let content dictate height */
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    background: transparent;
    /* Background is on faces now */
    border-radius: 60px;
    box-shadow: none;
    /* Shadow on faces or handled by hover */
    display: flex;
    flex-direction: column;
}

.flow-node:hover .card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.flow-node-clone {
    margin: 0;
    padding: 0;
    border-radius: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: none;
    perspective: 1000px;
    z-index: 1000;
    background: transparent;
}



.flow-node-clone.expanded .card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Add shadow to faces for depth */
.card-face {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    border-radius: 60px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    width: 100%;
    height: 100%;
}

.card-front {
    background-color: var(--bg-white);
    color: var(--text-primary);
    position: relative;
    /* Relative to dictate size in flow */
    z-index: 2;
}

.card-back {
    background-color: var(--bg-white);
    /* Light theme */
    color: var(--text-primary);
    transform: rotateY(180deg);
    position: absolute;
    /* Absolute to sit behind front */
    top: 0;
    left: 0;
}

.card-back h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.card-back p {
    color: var(--text-secondary);
}

/* Overlay Backdrop */
.card-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.card-overlay-backdrop.active {
    opacity: 1;
    visibility: visible;
}



.node-icon {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.flow-node h3 {
    font-size: 22px;
    font-weight: 400;
}

.flow-node p {
    font-size: 16px;
    color: var(--text-secondary);
}

.flow-connector {
    flex: 0 0 100px;
    color: rgba(0, 0, 0, 0.1);
    align-self: center;
}

/* Lead Gen */
.lead-gen-section {
    background: var(--text-primary);
    color: var(--bg-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding-bottom: 40px;
}

.lead-gen-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.lead-gen-section h2 {
    margin-bottom: 16px;
    color: var(--bg-white);
}

.lead-gen-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.modern-form .input-group {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 8px;
    display: flex;
}

.modern-form input {
    background: transparent;
    border: none;
    color: var(--bg-white);
    padding: 16px 24px;
    width: 100%;
    font-size: 1rem;
    outline: none;
}

.modern-form .btn-icon {
    padding: 16px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-primary);
}

.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    margin-left: 24px;
}

/* Section Divider */
.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0;
    width: 100%;
}

/* Bento Grid Additions */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.card-wide {
    grid-column: span 2;
}

.card-light {
    background-color: #f8f8f6;
}

.card-dark {
    background-color: #000000;
    color: white;
}

.card-black {
    background-color: #292421;
    color: white;
}

.card-theme-gradient {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-dark) 100%);
    color: white;
}

.card-theme-solid {
    background-color: #333333;
    /* Dark Grey Solid */
    color: white;
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.opacity-80 {
    opacity: 0.8;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-center-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.card-center-content.flex-col {
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.stat-value-large {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: var(--text-primary);
}

.stat-value-large.text-white {
    color: white;
}

.stat-subtext {
    font-size: 16px;
    color: var(--text-secondary);
}

.stat-subtext.text-white-opacity {
    color: rgba(255, 255, 255, 0.7);
}

.card-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.quote {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.4px;
}

.author {
    font-size: 14px;
    opacity: 0.8;
}

.logo-placeholder {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-primary);
}

.logo-placeholder.text-white {
    color: white;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.pricing-card {
    background-color: #f1f5e9;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    color: var(--text-primary);
    border: 1px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Specific card backgrounds based on type if needed, but default is light green/beige */
.pricing-card.secondary {
    background-color: #e9f5f5;
}

.pricing-image-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pricing-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.pricing-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-price {
    color: var(--brand-green);
    font-size: 16px;
    font-weight: 600;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-desc {
    font-size: 16px;
    color: var(--text-primary);
    max-width: 80%;
}

.pricing-cta {
    display: inline-block;
    background-color: #38312c;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-cta {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .section-header.split {
        flex-direction: column;
        gap: 24px;
    }
}

.section-header.split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 60px;
    gap: 60px;
}

.section-header.split h2 {
    flex: 0 0 45%;
    margin-bottom: 0;
    line-height: 1.1;
}

.section-header.split p {
    flex: 0 0 45%;
    margin-top: 8px;
    /* Slight offset for visual alignment */
    font-size: 16px;
    line-height: 1.5;
}

.logo-placeholder.right {
    float: right;
}

.logo-placeholder.small {
    font-size: 18px;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icon-btn {
    background: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.icon-btn:hover {
    opacity: 1;
}

.card-action {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

.text-white {
    color: white;
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.8);
}

.text-yellow {
    color: var(--rating-yellow);
}

/* Responsive */
@media (min-width: 1025px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {

    .hero-text,
    .hero-image-wrapper {
        grid-column: span 12;
    }

    .hero-image-wrapper {
        height: 400px;
        margin-top: 40px;
    }

    .hero-image-wrapper {
        height: 400px;
        margin-top: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-item p {
        max-width: 100%;
    }

    .infrastructure-flow {
        flex-direction: column;
    }

    .flow-connector {
        transform: rotate(90deg);
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card-wide {
        grid-column: span 1;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--theme-primary);
}

.faq-question i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-content ul {
    margin: 16px 0 16px 24px;
}

.faq-content li {
    margin-bottom: 8px;
}

/* Menu Overlay (Backdrop) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Panel */
.menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: var(--bg-white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.menu-overlay.active .menu-panel {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.menu-logo {
    height: 32px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
    transition: transform 0.2s;
}

.close-menu-btn:hover {
    transform: scale(1.1);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: var(--theme-primary);
    padding-left: 10px;
}

.menu-link i {
    font-size: 16px;
    opacity: 0.5;
}

/* Results Snippet Section */
.results-snippet {
    padding: 100px 0;
}

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

.results-heading-text {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.75px;
    max-width: 450px;
    margin-right: 60px;
    color: var(--text-primary);
}

.results-body {
    width: 50%;
}

.results-desc {
    font-size: 18px;
    line-height: 23.1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.highlight-green {
    color: var(--brand-green);
    font-weight: 700;
}

.btn-custom-cta {
    background-color: var(--text-primary);
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 50px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-custom-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
    color: white;
    /* Ensure text stays white */
}

/* Change Section */
.change-section {
    padding-top: 50px;
    padding-bottom: 140px;
}

.change-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.change-header h2 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.75px;
}

.change-header p {
    font-size: 18px;
    color: var(--text-primary);
}

.change-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 125px 125px 280px;
    /* Approximating the 2.25fr 1fr... ratio with px */
    gap: 10px;
    height: 850px;
    margin-bottom: 60px;
}

.grid-item {
    background-color: var(--bg-beige);
    border-radius: 50px 0 50px 50px;
    /* As seen in snippet rounded-br rounded-t rounded-bl */
    overflow: hidden;
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid Placement based on snippet */
.item-1 {
    grid-column: 1;
    grid-row: 1;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.item-2 {
    grid-column: 1;
    grid-row: 2 / span 3;
}

.item-3 {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.item-4 {
    grid-column: 2;
    grid-row: 3 / span 2;
}

.item-5 {
    grid-column: 3;
    grid-row: 1 / span 4;
}

.item-6 {
    grid-column: 4;
    grid-row: 1 / span 3;
}

.item-7 {
    grid-column: 4;
    grid-row: 4;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    /* Prevent shrinking */
    background-color: var(--brand-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.stat-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

/* Metabolism Section */
.metabolism-section {
    padding: 100px 0;
    padding-left: 0;
    /* Remove padding to ensure sticking */
}

.metabolism-wrapper {
    background-color: var(--bg-beige);
    border-radius: 50px 0 50px 50px;
    padding: 100px 50px;
    /* Reduced side padding to give more width */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* Reduced gap slightly */
    max-width: 1500px;
    margin: 0 auto;
}

.metabolism-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 65%;
    /* Increased width for wider images */
    height: 400px;
}

.metabolism-img {
    background-color: #f5eee9;
    border-radius: 20px 0 20px 20px;
    overflow: hidden;
}

.metabolism-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.metabolism-img.img-2 {
    margin-top: -20px;
    /* Overlap effect from snippet */
    height: 105%;
}

.metabolism-content {
    max-width: 460px;
    flex-shrink: 0;
    /* meaningful text width */
}

.metabolism-content h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.75px;
    margin-bottom: 20px;
}

.metabolism-content p {
    font-size: 18px;
    line-height: 23.1px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.disclaimer {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 100px;
}

/* Footer Icons Section */
.footer-icons-section {
    padding: 0;
}

.footer-icons-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: #dddddd;
    /* Border color */
    border: 1px solid #dddddd;
    max-width: 100%;
    padding: 0;
}

.footer-icon-item {
    background-color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 20px;
}

.footer-icon-item img {
    height: 38px;
    width: auto;
    max-width: 48px;
}

.footer-icon-item span {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
    text-align: left;
}

/* Site Footer */
.site-footer {
    background-color: white;
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo-wrapper .logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--theme-primary);
}

.footer-contact-info {
    display: flex;
    gap: 20px;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fafafa;
    padding: 20px 30px;
    border-radius: 50px;
}

.contact-pill img {
    height: 26px;
    width: 26px;
}

.contact-pill span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}

.footer-disclaimers {
    margin-bottom: 60px;
}

.footer-disclaimers p {
    font-size: 14px;
    line-height: 21px;
    color: var(--text-primary);
    margin-bottom: 20px;
    opacity: 0.8;
    /* Slightly muted */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    border-top: 1px solid #dddddd;
}

.copyright {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-legal-links {
    display: flex;
}

.footer-legal-links a {
    font-size: 12px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0 14px;
    border-right: 1px solid #dddddd;
    line-height: 1;
}

.footer-legal-links a:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-legal-links a:first-child {
    border-left: 1px solid #38312c;
    /* Based on snippet style */
    padding-left: 14px;
}

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

/* Support Section */
.support-section {
    padding-top: 0;
    padding-bottom: 0;
}

.support-wrapper {
    background-color: #fafafa;
    /* bg-neutral-50 */
    border-radius: 50px 0 50px 50px;
    padding: 100px 50px;
    /* Reduced side padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.support-content {
    max-width: 460px;
    flex-shrink: 0;
}

.support-content h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.75px;
    margin-bottom: 20px;
}

.support-content p {
    font-size: 18px;
    line-height: 23.1px;
    margin-bottom: 0;
    color: var(--text-primary);
}

.support-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 60%;
    /* Increased for consistency with reduced padding */
    height: 400px;
}

.support-img {
    background-color: #f5eee9;
    border-radius: 20px 0 20px 20px;
    overflow: hidden;
}

.support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-img.img-2 {
    margin-top: 20px;
    /* Reverse offset */
    height: 105%;
}

/* Journey Section */
.journey-section {
    padding-top: 140px;
    padding-bottom: 50px;
}

.journey-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    max-width: 1380px;
    /* From snippet */
}

.journey-left {
    position: sticky;
    top: 120px;
    width: 40%;
    max-width: 460px;
}

.journey-left h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.75px;
    margin-bottom: 20px;
}

.journey-left p {
    font-size: 18px;
    line-height: 23.1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.journey-right {
    width: 50%;
    position: relative;
    padding-left: 60px;
    /* Space for marker */
}

.timeline-line-container {
    position: absolute;
    left: 18px;
    /* Align with marker center */
    top: 20px;
    bottom: 20px;
    width: 2px;
    height: 95%;
}

.timeline-line-bg {
    width: 2px;
    height: 100%;
    background-color: #E5E5E5;
    position: absolute;
    top: 0;
    left: 0;
}

.timeline-line-progress {
    width: 2px;
    height: 100%;
    /* In a real app this would grow on scroll */
    background-color: var(--brand-green);
    position: absolute;
    top: 0;
    left: 0;
}

.journey-step {
    position: relative;
    margin-bottom: 100px;
}

.step-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 38px;
    height: 38px;
    background-color: #e7f8c1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.marker-dot {
    width: 14px;
    height: 14px;
    background-color: var(--brand-green);
    border-radius: 50%;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 18px;
    line-height: 23.1px;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 470px;
}

.step-image {
    max-width: 470px;
    height: 260px;
    border-radius: 50px 0 50px 50px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expanded-container {
    max-width: 1248px;
    /* Matching snippet width */
}

/* Reviews Section */
.reviews-section {
    padding-top: 206px;
    /* From snippet */
    padding-bottom: 50px;
    overflow: hidden;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    max-width: 1248px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.reviews-header h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.75px;
    max-width: 450px;
}

.reviews-subheader {
    width: 50%;
}

.reviews-subheader p {
    font-size: 18px;
    line-height: 23.1px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.reviews-marquee-wrapper {
    position: relative;
    width: 100%;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.marquee-content {
    display: flex;
    gap: 20px;
    white-space: nowrap;
}

/* Animations using translate for smooth 3D accel scrolling */
.marquee-left .marquee-content {
    animation: scroll-left 40s linear infinite;
}

.marquee-right .marquee-content {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.review-card {
    background-color: #f1f5e9;
    /* Light green beige from snippet */
    border-radius: 50px 0 50px 50px;
    padding: 40px;
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    white-space: normal;
    /* Allow text wrapping inside card */
    display: flex;
    flex-direction: column;
}

.image-card {
    padding: 0;
    overflow: hidden;
    height: 300px;
    /* Fixed height for image alignment */
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 20px 0 20px 20px;
    overflow: hidden;
    background-color: #e7f8c1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    text-align: right;
}

.user-info strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
}

.user-info .stars {
    height: 14px;
}

.review-card p {
    font-size: 16px;
    line-height: 23.1px;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
}