/* 10xGrowth Design System */
:root {
    /* Color Palette */
    --brand-dark: #0f172a;
    --brand-light: #f8fafc;
    --brand-accent: #bef264;
    --brand-accent-dark: #a3e635;
    --brand-accent-soft: rgba(190, 242, 100, 0.3);

    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-body: #fafafa;
    --white: #ffffff;

    /* Spacing & Layout */
    --section-padding: 6rem;
    --container-max: 1200px;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 3rem;

    /* Animations */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--brand-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:visited {
    color: inherit;
}

a:hover {
    color: var(--brand-accent-dark);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    min-width: 300px;
    padding: 1rem 1.5rem;
    background: #ffffff;
    color: #1e293b;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: toast-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    font-weight: 500;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.success {
    border-left-color: var(--brand-accent);
}

@keyframes toast-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.fade-out {
    animation: toast-fade-out 0.4s forwards;
}

@keyframes toast-fade-out {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-color: #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    height: 70px;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.desktop-nav a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: 600;
    font-size: 0.875rem;
}

.desktop-nav .btn {
    margin-left: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--brand-dark);
    transition: var(--transition-base);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--brand-dark);
    transform: translateY(-7px) rotate(-45deg);
}

/* Wait, I can do a better hamburger animation with just 2 spans */

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-menu a {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--brand-dark);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--brand-dark);
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: var(--brand-dark);
}

/* Removed background gradient overlay since we are using dedicated image column */

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-content {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: flex;
        justify-content: flex-end;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        max-width: 300px;
    }

    .hero-img {
        width: 100%;
        height: auto;
    }

    .avatars {
        display: flex;
        margin-right: -0.5rem;
    }

    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 6rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-btns {
        flex-direction: column;
    }
}

.trust-pill {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    border: 1px solid #f1f5f9;
}

margin-right: -0.5rem;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
}

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

.logos-section {
    padding: 3rem 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 4rem;
    padding: 1rem 0;
}

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

    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border-radius: 100px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #64748b;
    font-weight: 600;
    font-size: 0.9375rem;
    white-space: nowrap;
    opacity: 0.6;
    filter: grayscale(1);
}

.marquee-item img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.marquee-item:hover {
    opacity: 1;
    filter: grayscale(0);
    background: #ffffff;
    border-color: var(--brand-accent);
    color: var(--brand-dark);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Platform Section */
.platform-section {
    background: var(--brand-dark);
    color: var(--white);
    padding: 8rem 0;
    margin: 4rem 0;
}

.platform-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platform-text {
    width: 100%;
}

.platform-visual {
    display: flex;
    justify-content: center;
}

.platform-chart {
    width: 100%;
    max-width: 550px;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.platform-chart img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.platform-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.platform-text p {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.accent-text {
    color: #4d7c0f;
    /* High-contrast version of brand green for readability on white */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: inline-block;
}


.platform-list {
    list-style: none;
}

.platform-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--brand-accent-soft);
    color: var(--brand-accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: bold;
}

.platform-list span {
    display: block;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.highlight {
    background-image: linear-gradient(var(--brand-accent), var(--brand-accent));
    background-repeat: no-repeat;
    background-size: 0% 40%;
    background-position: 0 85%;
    transition: background-size 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline;
}

.reveal.active .highlight {
    background-size: 100% 40%;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    text-decoration: none;
    display: block;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--brand-dark);
    transition: var(--transition-base);
}

.bento-card:hover h3 {
    color: var(--brand-accent-dark);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
    color: var(--brand-dark);
}

.bento-card:hover .icon-box {
    background: var(--brand-accent);
    color: var(--brand-dark);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background: var(--brand-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.3);
}

.btn-primary:hover {
    background: #1e293b !important;
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--brand-dark);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: var(--brand-light);
    border-color: #cbd5e1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* CTA Section & Form Optimized */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
}

.cta-box {
    background: var(--brand-dark);
    padding: 6rem 4rem;
    border-radius: var(--border-radius-xl);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 3rem;
}

.cta-form {
    display: flex;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 100px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 1rem 2rem;
    background: transparent;
    font-size: 1rem;
    color: var(--brand-dark);
    outline: none;
}

.cta-form .btn {
    border-radius: 100px;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 4rem 2rem;
    }

    .cta-box h2 {
        font-size: 2.25rem;
    }

    .cta-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border-radius: 0;
        gap: 1rem;
    }

    .cta-form input {
        background: var(--white);
        border-radius: 100px;
        width: 100%;
        padding: 1.5rem 2rem;
    }

    .cta-form .btn {
        width: 100%;
        padding: 1.5rem;
    }
}

footer {
    background: #f8fafc;
    padding: 6rem 0 3rem;
    border-top: 1px solid #f1f5f9;
    color: var(--brand-dark);
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
    color: var(--text-muted);
}

footer h4 {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--brand-dark);
}

footer a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

footer a:hover {
    color: var(--brand-dark);
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Accordion Styles */
.accordion {
    margin-top: 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    background: var(--white);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--brand-dark);
    transition: var(--transition-base);
}

.accordion-header:hover {
    background: var(--brand-light);
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fdfdfd;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-inner {
    padding: 0 2rem 2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.accordion-inner p {
    margin-bottom: 0;
}

/* Feature Modules */
.feature-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-module {
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-module h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-module p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.section-alt {
    background: #f8fafc;
}


/* High-Density Grid for Inclusions */
.micro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.micro-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition-base);
}

.micro-card:hover {
    border-color: var(--brand-accent);
    transform: translateY(-2px);
}

.micro-card h3,
.micro-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.micro-card p {
    font-size: 0.8125rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.highlight-red {
    background-image: linear-gradient(#f87171, #f87171);
    background-repeat: no-repeat;
    background-size: 0% 40%;
    background-position: 0 85%;
    transition: background-size 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline;
}

.reveal.active .highlight-red {
    background-size: 100% 40%;
}

/* Redesigned Subtle Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid #f1f5f9;
    transition: var(--transition-base);
}

.problem-card:hover {
    border-color: #f87171;
    transform: translateY(-2px);
}

.problem-card .icon-box {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.problem-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--brand-dark);
}

.problem-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}



.list-check {
    list-style: none;
    padding: 0;
}

.list-check li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-accent-dark);
    font-weight: 900;
}


/* Team & Heritage Sections */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-card {
    background: linear-gradient(to bottom, #ffffff, #fdfcf7);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--brand-accent);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.team-card:hover {
    border-color: var(--brand-accent-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.team-img-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
}

.team-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #1e293b;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0077b5;
    /* LinkedIn Color */
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(1.05);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.team-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-card .role {
    color: #65a30d;
    /* Brand accent base */
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.team-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
}

.heritage-box {
    background: white;
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.heritage-box h2 {
    margin-bottom: 2rem;
}

.heritage-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #334155;
}

@media (max-width: 768px) {
    .heritage-box {
        padding: 2.5rem;
    }

    .heritage-box p {
        font-size: 1.125rem;
    }
}

/* Premium Mega Menu Navigation */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.lean-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--brand-accent);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    padding: 1rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-dropdown:hover .lean-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.lean-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
    font-weight: 500;
}

.lean-dropdown a:hover {
    background: var(--brand-accent);
    color: #000000;
}

.lean-dropdown a .icon-circle {
    width: 24px;
    height: 24px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: inherit;
    flex-shrink: 0;
}

.lean-dropdown a:hover .icon-circle {
    background: #ffffff;
    color: #000000;
}

.nav-icon {
    max-width: 16px;
    max-height: 16px;
    object-fit: contain;
}

/* Horizontal fix for WooCommerce in Nav */
.nav-icon-woo {
    max-width: 18px;
}

/* Specific Landing Page Icon Size */
.landing-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: 12px;
    vertical-align: middle;
}

/* Adjustments for custom indicator */
.dropdown-trigger::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 8px;
    transition: transform 0.3s ease;
}