:root {
    --lime: #8DC63F;
    --lime-d: #6FA82B;
    --lime-pale: #EEF7E0;
    --orange: #F7941D;
    --orange-d: #E07F0A;
    --orange-pale: #FFF3E0;
    --ink: #2B2B2B;
    --ink-soft: #5A5F55;
    --bg: #FFFFFF;
    --bg-soft: #F7F9F4;
    --line: #E7EEDD;
    --shadow: 0 10px 40px rgba(43, 43, 43, 0.08);
    --shadow-lg: 0 20px 60px rgba(43, 43, 43, 0.12);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--lime);
    border-radius: 4px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: padding 0.3s;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-inner > *:not(.brand){
    padding: 18px 0px;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lime) 0%, var(--orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(141, 198, 63, 0.35);
}

.brand-text .name {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--ink);
    letter-spacing: 0.2px;
}

.brand-text .tag {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime-d);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    transition: color 0.25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.25s;
}

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

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

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(247, 148, 29, 0.4);
}

.btn-outline {
    border-color: var(--lime);
    color: var(--lime-d);
}

.btn-outline:hover {
    background: var(--lime);
    color: #fff;
}

body.menu-open {
    overflow: hidden;
}

.nav-toggle {
    position: relative;
    z-index: 1001;
    cursor: pointer;
}

/* ========== FULLY RESPONSIVE NAVBAR (Mobile First) ========== */

/* Hide mobile menu by default */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 80px 32px 32px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu.active {
    right: 0;
}

/* Overlay when mobile menu is open */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.25s;
}

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

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-cta .btn {
    justify-content: center;
    width: 100%;
}

/* Desktop styles – hide mobile menu on large screens */
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }
    .nav-toggle {
        display: none !important;
    }
    .nav-links,
    .nav-cta {
        display: flex !important;
    }
}

/* Mobile and tablet styles */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none !important;
    }
    .nav-toggle {
        display: block !important;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--ink);
        z-index: 1002;
        position: relative;
    }
    .nav-toggle.active i {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    .nav-toggle.active .fa-bars:before {
        content: "\f00d";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
    }
}

.navbar.scrolled {
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ========== HERO (global & module hero) ========== */
#hero,
.module-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
    background: linear-gradient(180deg, #FBFDF7 0%, #FFFFFF 60%);
}

.module-hero {
    min-height: 60vh;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lime-pale);
    border: 1px solid rgba(141, 198, 63, 0.35);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lime-d);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 1.6s infinite;
}
.hero-copy h1{
    margin-bottom: 20px;
}
.hero-copy .lead{
    margin-bottom: 30px;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

.hero h1,
.module-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 .grad,
.module-hero h1 .grad {
    background: linear-gradient(90deg, var(--lime-d), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p.lead,
.module-hero p.lead {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 54px;
}

.hero-stats {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.hstat {
    flex: 1;
    padding: 22px 26px;
    border-right: 1px solid var(--line);
}

.hstat:last-child {
    border-right: none;
}

.hstat .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
}

.hstat .num span {
    color: var(--orange);
}

.hstat .lbl {
    font-size: 0.72rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    font-weight: 600;
}

.float-card i {
    font-size: 1.2rem;
}

.float-card.c1 {
    top: 6%;
    left: 0;
    color: var(--lime-d);
}

.float-card.c1 i {
    color: var(--lime);
}

.float-card.c2 {
    bottom: 14%;
    right: 0;
    color: var(--orange-d);
}

.float-card.c2 i {
    color: var(--orange);
}

.float-card.c3 {
    bottom: -4%;
    left: 8%;
    color: var(--ink);
}

.float-card.c3 i {
    color: var(--lime-d);
}

/* Hero inline lead-capture card */
.hero-lead-card {
    position: absolute;
    top: -36px;
    right: 4%;
    width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.hlc-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hlc-title i {
    color: var(--orange);
}

.hlc-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hlc-form input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.8rem;
    color: var(--ink);
    background: var(--bg-soft);
    outline: none;
    transition: border-color 0.25s;
}

.hlc-form input:focus {
    border-color: var(--lime);
}

.hlc-form input::placeholder {
    color: var(--ink-soft);
}

.hlc-btn {
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.8rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-lead-card {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 24px;
    }
}

.dash-mock {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dash-head {
    background: linear-gradient(90deg, var(--lime), var(--orange));
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-head span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dash-head .t {
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    margin-left: 6px;
}

.dash-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dash-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    transition: all 0.4s;
}

.dash-row.active {
    background: var(--lime-pale);
    border-color: rgba(141, 198, 63, 0.4);
}

.dash-row i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--lime-d);
    font-size: 1rem;
    border: 1px solid var(--line);
}

.dash-row.active i {
    background: var(--lime);
    color: #fff;
}

.dash-row .info {
    flex: 1;
}

.dash-row .info .ti {
    font-weight: 600;
    font-size: 0.86rem;
}

.dash-row .info .bar {
    height: 5px;
    background: var(--line);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 6px;
}

.dash-row .info .bar i {
    display: block;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--lime), var(--orange));
    width: 0%;
}

.dash-row .pct {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

/* ========== TRUSTED STRIP ========== */
.trusted-strip {
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trusted-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 16px 20px 0;
}

/* ========== MARQUEE ========== */
.marquee-wrap {
    border-top: none;
    border-bottom: none;
    padding: 18px 0;
    overflow: hidden;
    background: transparent;
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollx 38s linear infinite;
}

@keyframes scrollx {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.m-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink-soft);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.m-item i {
    color: var(--orange);
}

/* ========== SECTIONS HEAD ========== */
section {
    padding: 120px 0;
    position: relative;
}

.section-padding {
    padding: 80px 0;
}

.sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.sec-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

.sec-head h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.2;
}

.sec-head h2 .grad {
    background: linear-gradient(90deg, var(--lime-d), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sec-head p {
    margin-top: 18px;
    color: var(--ink-soft);
    font-weight: 300;
    font-size: 1.02rem;
    line-height: 1.8;
}

/* ========== WHY ========== */
#why {
    background: var(--bg-soft);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 34px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lime);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--lime), var(--lime-d));
}

.why-card:nth-child(2) .why-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-d));
}

.why-card:nth-child(3) .why-icon {
    background: linear-gradient(135deg, var(--ink), #4a4a4a);
}

.why-card:nth-child(4) .why-icon {
    background: linear-gradient(135deg, var(--lime-d), var(--orange));
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.7;
    font-weight: 300;
}

/* ========== STATS BAND ========== */
#stats {
    background: linear-gradient(120deg, #1F2A14 0%, #2B2B2B 60%, #3a2a14 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

#stats-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--lime), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-lbl {
    margin-top: 10px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cfd6c4;
    font-weight: 500;
}

/* Timeline items inside stats */
/* ========== STATS TIMELINE (single continuous vertical line) ========== */
/*
    Single reference point: --dot-cx = 20px (center X of dot and line from left of .stats-timeline)
    Line: left = 20px - 1px = 19px  (center the 2px line over 20px)
    Dot:  width=20px, so left = 0px relative to .stats-timeline
          but dot is inside .stats-timeline-item (which is offset by padding-left)
          so we use position:absolute on dot relative to .stats-timeline-item
          and pull it left by padding-left amount to sit over the line.
    Simplest: make dot position relative to .stats-timeline directly via left=10px
    and items have enough padding-left to not overlap.
    
    Chosen values:
      padding-left on .stats-timeline = 60px
      line left = 19px  → center at 20px
      dot width/height = 20px
      dot left = 10px  (relative to .stats-timeline, center = 10+10 = 20px ✓)
      dot is absolute child of .stats-timeline-item but
      .stats-timeline-item itself is a block inside .stats-timeline,
      so dot left relative to item = 10px - 0 = 10px
      BUT item has no left offset (it is full width) so:
      dot left relative to item = 10px
*/

.stats-timeline {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    padding-left: 60px;    /* content starts 60px from left */
}

/* The one continuous background track — JS sets top/bottom precisely to dot centers */
.stats-timeline-line {
    position: absolute;
    left: 19px;            /* center of 2px line = 20px, matches dot center */
    top: 16px;             /* safe default before JS runs; JS overrides this */
    bottom: 16px;          /* safe default before JS runs; JS overrides this */
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

/* The animated fill — GSAP scrub controls height, no CSS transition */
.stats-timeline-line i {
    display: block;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--lime) 0%, var(--orange) 100%);
    border-radius: 2px;
}

/* Each stat row */
.stats-timeline-item {
    position: relative;
    padding: 6px 0 48px 0;
}

.stats-timeline-item:last-child {
    padding-bottom: 0;
}

/* The dot — left:10px puts its center at 20px, same as line center */
.stats-timeline-dot {
    position: absolute;
    left: -50px;           /* 60px padding - 20px dot width / 2 = back to 20px center on line */
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--lime);
    box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.2), 0 0 10px rgba(141, 198, 63, 0.35);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
}

/* Dot active — orange glow as fill passes */
.stats-timeline-item.dot-active .stats-timeline-dot {
    background: #fff;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2), 0 0 12px rgba(247, 148, 29, 0.45);
}

.timeline-content {
    padding: 4px 0 0 0;
}

.timeline-content h4 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, var(--lime), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.timeline-content p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(207, 214, 196, 0.75);
    font-weight: 500;
    margin-top: 6px;
}

/* ========== PROCESS ========== */
#process {
    background: var(--bg-soft);
}

.process-track {
    position: relative;
}

.process-line {
    position: absolute;
    top: 38px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: var(--line);
    z-index: 0;
}

.process-line i {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--lime), var(--orange));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.proc-step {
    text-align: center;
}

.proc-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ink-soft);
    transition: all 0.4s;
}

.proc-step.active .proc-num {
    border-color: var(--lime);
    color: var(--lime-d);
    background: var(--lime-pale);
    box-shadow: 0 0 0 6px rgba(141, 198, 63, 0.12);
}

.proc-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.proc-step p {
    font-size: 0.84rem;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.6;
}

/* ========== DEMO ========== */
#demo {
    background: #fff;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.demo-canvas-wrap {
    position: relative;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--lime-pale) 0%, var(--orange-pale) 100%);
    border: 1px solid var(--line);
}

#demo-canvas {
    width: 100%;
    height: 100%;
}

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.demo-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.7;
}

.demo-list li .check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--lime-pale);
    color: var(--lime-d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* ========== NEW APP DASHBOARD ========== */
.app-dashboard-section {
    background: var(--bg-soft);
}

.app-dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.dashboard-card,
.mobile-promo-card {
    background: var(--bg);
    border-radius: 32px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover,
.mobile-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dashboard-inner,
.promo-inner {
    padding: 36px 32px;
}

.user-greeting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--lime-pale);
}

.user-greeting h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
}

.user-greeting h3 span {
    background: linear-gradient(135deg, var(--lime), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.user-greeting i {
    font-size: 2.2rem;
    color: var(--orange);
    opacity: 0.8;
}

.stats-chips {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.stat-chip {
    background: var(--lime-pale);
    border-radius: 60px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    border: 1px solid rgba(141, 198, 63, 0.3);
}

.stat-chip i {
    color: var(--lime-d);
    font-size: 1rem;
}

.stat-chip strong {
    color: var(--orange);
    font-weight: 800;
    margin-left: 4px;
}

.alert-section {
    margin-bottom: 32px;
}

.section-mini-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-item {
    background: var(--bg-soft);
    border-left: 3px solid var(--orange);
    padding: 14px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s;
}

.alert-item i {
    color: var(--orange);
    font-size: 1rem;
}

.alert-item p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.homework-digital-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.hw-card,
.dl-card {
    background: var(--bg-soft);
    border-radius: 24px;
    padding: 18px;
    text-align: center;
    border: 1px solid var(--line);
}

.hw-card .big-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lime), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.dl-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 8px;
}

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

.dl-stat .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.dl-stat .value {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--ink);
}

.dl-stat .value.overdue {
    color: var(--orange);
}

.dl-stat .value.completed {
    color: var(--lime-d);
}

.news-section {
    margin-top: 8px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
}

.news-item i {
    color: var(--lime-d);
    font-size: 0.8rem;
}

.news-item span {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 400;
}

.promo-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promo-badge {
    display: inline-block;
    background: var(--lime-pale);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--lime-d);
    margin-bottom: 20px;
    width: fit-content;
}

.promo-inner h2 {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.promo-inner h2 span {
    background: linear-gradient(90deg, var(--lime-d), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.promo-inner p {
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 28px;
}

.store-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ink);
    color: #fff;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.25s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-btn i {
    font-size: 1.4rem;
}

.store-btn:hover {
    background: var(--orange);
    transform: scale(1.02);
}

.app-stats-mini {
    display: flex;
    gap: 28px;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.app-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.app-stat .num {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--orange);
}

/* ========== TESTIMONIALS ========== */
#testi {
    background: var(--bg-soft);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.testi-stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testi-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testi-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testi-role {
    font-size: 0.76rem;
    color: var(--ink-soft);
}

/* ========== CTA ========== */
#cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--lime-d), var(--lime) 40%, var(--orange) 100%);
}

#cta-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-inner p {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--ink);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-ghost-white {
    border-color: #fff;
    color: #fff;
}

.btn-ghost-white:hover {
    background: #fff;
    color: var(--ink);
}

/* ========== FOOTER ========== */
footer {
    background: #1F241A;
    color: #cfd6c4;
    padding: 80px 0 30px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.foot-brand .brand-text .name {
    color: #fff;
}

.foot-about p {
    margin-top: 18px;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: #9aa590;
    max-width: 320px;
}

.foot-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.foot-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfd6c4;
    transition: all 0.25s;
}

.foot-social a:hover {
    background: var(--lime);
    color: #1F241A;
}

.foot-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-col a {
    color: #9aa590;
    font-size: 0.86rem;
    font-weight: 300;
    transition: color 0.2s;
}

.foot-col a:hover {
    color: var(--lime);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: #7e8a73;
    font-weight: 300;
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    will-change: transform, opacity;
}

/* ========== FAQ ACCORDION ========== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.active {
    border-color: rgba(141, 198, 63, 0.4);
    box-shadow: var(--shadow);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
}

.faq-q i {
    flex-shrink: 0;
    color: var(--lime-d);
    transition: transform 0.35s ease;
}

.faq-item.active .faq-q i {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 220px;
}

.faq-a p {
    padding: 0 24px 20px;
    color: var(--ink-soft);
    font-weight: 300;
    font-size: 0.94rem;
    line-height: 1.8;
}

/* ========== APP SLIDER SECTION ========== */
.app-dashboard-section {
    background: var(--bg-soft);
}

.app-slider-layout {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
}

/* ---- LEFT THUMB COLUMN ---- */
.app-thumb-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-thumb:hover {
    border-color: var(--lime);
    box-shadow: 0 4px 16px rgba(141, 198, 63, 0.12);
}

.app-thumb.active {
    background: linear-gradient(90deg, var(--lime-pale), var(--orange-pale));
    border-color: var(--lime);
    box-shadow: 0 6px 20px rgba(141, 198, 63, 0.18);
}

.app-thumb-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--lime-d);
    flex-shrink: 0;
    border: 1px solid var(--line);
}

.app-thumb.active .app-thumb-icon {
    background: var(--lime);
    color: #fff;
    border-color: var(--lime);
}

.app-thumb-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
}

.app-thumb-sub {
    font-size: 0.68rem;
    color: var(--ink-soft);
    font-weight: 400;
    margin-top: 2px;
}

/* ---- CENTRE PHONE ---- */
.app-phone-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.app-phone-frame {
    position: relative;
    width: 240px;
    background: #1a1a1a;
    border-radius: 42px;
    padding: 12px;
    box-shadow: 0 32px 80px rgba(43, 43, 43, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.apf-notch {
    width: 80px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 3;
}

.apf-screen {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/19;
    background: #000;
    margin-bottom: 5px;
}

.apf-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.apf-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.apf-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Arrow buttons */
.apf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
    font-size: 0.8rem;
    transition: all 0.25s;
    z-index: 10;
}

.apf-arrow:hover {
    background: var(--lime);
    color: #fff;
    border-color: var(--lime);
}

.apf-prev {
    left: -18px;
}

.apf-next {
    right: -18px;
}

/* Dot indicators */
.apf-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.apf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: all 0.3s;
}

.apf-dot.active {
    background: var(--orange);
    width: 22px;
    border-radius: 4px;
}

/* ---- RIGHT INFO PANELS ---- */
.app-info-col {
    position: relative;
    min-height: 320px;
}

.app-info-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.app-info-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.aip-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lime-pale), var(--orange-pale));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--lime-d);
    margin-bottom: 20px;
    border: 1px solid rgba(141, 198, 63, 0.25);
}

.app-info-panel h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.app-info-panel p {
    font-size: 0.98rem;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 400px;
}

.aip-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aip-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 400;
}

.aip-list li i {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--lime-pale);
    color: var(--lime-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.app-store-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 56px;
}

/* ========== 3D ORBIT + MODULE EXPLORER (ACCORDION STYLE) ========== */
.orbit-section {
    background: linear-gradient(135deg, #F7F9F4 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.orbit-explorer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Left: 3D canvas */
.orbit-canvas-wrap {
    flex: 1;
    background: radial-gradient(ellipse at 30% 40%, #0a1208 0%, #030603 100%);
    border-radius: 32px;
    border: 1px solid rgba(141, 198, 63, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    min-height: 550px;
    position: relative;
}

#orbit-canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
    min-height: 450px;
}

#orbit-canvas:active {
    cursor: grabbing;
}

.orbit-tooltip {
    position: absolute;
    background: rgba(6, 12, 4, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid var(--lime);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.15s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.orbit-tooltip.show {
    opacity: 1;
}

.orbit-drag-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    pointer-events: none;
    z-index: 15;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Right: Accordion-style module explorer */
.mod-explorer {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    /* Match the 3D canvas height exactly */
    height: 100%;
    max-height: 650px;
    display: flex;
    flex-direction: column;
}

/* Hide old modDetail (now inline in accordion) */
#modDetail {
    display: none;
}

.mod-list {
    padding: 8px;
    /* Scroll inside the fixed-height explorer */
    flex: 1;
    min-height: 0;          /* critical: allows flex child to shrink & scroll */
    overflow-y: auto;
    overflow-x: hidden;
    /* Custom scrollbar to match site style */
    scrollbar-width: thin;
    scrollbar-color: var(--lime) var(--bg-soft);
}

.mod-list::-webkit-scrollbar {
    width: 5px;
}

.mod-list::-webkit-scrollbar-track {
    background: var(--bg-soft);
    border-radius: 4px;
}

.mod-list::-webkit-scrollbar-thumb {
    background: var(--lime);
    border-radius: 4px;
}

/* Each accordion item */
.mod-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 6px;
    background: #fff;
    transition: all 0.25s ease;
    overflow: hidden;
}

.mod-item:last-child {
    margin-bottom: 0;
}

/* Header row (always visible) */
.mod-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
}

.mod-item .num {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink-soft);
    width: 24px;
    text-align: right;
    opacity: 0.55;
    flex-shrink: 0;
    transition: opacity 0.25s, color 0.25s;
}

.mod-item .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime-d);
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.25s;
}

.mod-item .label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink);
    flex: 1;
    transition: color 0.25s, font-weight 0.25s;
}

.mod-item .arrow {
    font-size: 0.72rem;
    color: var(--ink-soft);
    opacity: 0.45;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s, opacity 0.25s;
    flex-shrink: 0;
}

/* Hover state */
.mod-item:hover {
    border-color: rgba(141, 198, 63, 0.35);
    box-shadow: var(--shadow);
}

.mod-item:hover .num {
    opacity: 1;
}

/* Active / open state — header */
.mod-item.active {
    border-color: rgba(141, 198, 63, 0.45);
    box-shadow: 0 6px 24px rgba(141, 198, 63, 0.1);
}

.mod-item.active .mod-item-header {
    background: var(--lime-pale);
    border-radius: 14px 14px 0 0;
}

.mod-item.active .num {
    opacity: 1;
    color: var(--lime-d);
}

.mod-item.active .ic {
    background: linear-gradient(135deg, var(--lime), var(--orange));
    color: #fff;
    border-color: transparent;
}

.mod-item.active .label {
    font-weight: 600;
    color: var(--ink);
}

.mod-item.active .arrow {
    transform: rotate(180deg);
    color: var(--orange);
    opacity: 1;
}

/* Collapsible body */
.mod-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.mod-item.active .mod-item-body {
    max-height: 600px;
}

.mod-item-inner {
    padding: 16px 18px 20px;
    border-top: 1px solid var(--line);
}

/* Detail content inside accordion */
.mod-item-inner .tagnum {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
}

.mod-item-inner .desc {
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.78;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 9px;
    font-size: 0.82rem;
    font-weight: 500;
    /* opacity: 0; */
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.feat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feat-item i {
    color: var(--lime-d);
    margin-top: 2px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ========== MODULE PAGES ADDITIONS ========== */
.section-padding {
    padding: 80px 0;
}

.module-hero img,
.demo-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
    .why-grid[style*="repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .orbit-explorer-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .mod-explorer {
        border-radius: 18px;
        height: auto;
        min-height: auto;
        max-height: 60vh;
    }
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .why-grid[style*="repeat(3"] {
        grid-template-columns: 1fr !important;
    }
    .section-padding {
        padding: 60px 0;
    }
    .feat-grid {
        grid-template-columns: 1fr;
    }
    .mod-item-inner .desc {
        font-size: 0.85rem;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .process-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .demo-grid {
        grid-template-columns: 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
    .app-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .app-slider-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .app-thumb-col {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .app-phone-center {
        margin: 0 auto;
    }
    .app-info-col {
        min-height: auto;
    }
    .app-info-panel {
        position: static;
        display: none;
    }
    .app-info-panel.active {
        display: block;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .feat-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-line {
        display: none;
    }
    .hero-stats {
        flex-direction: column;
    }
    .hstat {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .foot-grid {
        grid-template-columns: 1fr;
    }
    .homework-digital-row {
        grid-template-columns: 1fr;
    }
    .stats-chips {
        justify-content: center;
    }
    .store-buttons {
        justify-content: center;
    }
    .dashboard-inner,
    .promo-inner {
        padding: 28px 24px;
    }
    .promo-inner h2 {
        font-size: 1.6rem;
    }
    .stats-timeline {
        padding-left: 52px;  /* line stays at left:19 center:20, dot: -52+10+10=−32 → item offset: 52-42=10 center:20 ✓ */
    }
    .stats-timeline-item {
        padding-bottom: 36px;
    }
    .stats-timeline-dot {
        left: -42px;         /* item is at 52px offset, dot center = 52-42+10 = 20px ✓ */
    }
    .timeline-content h4 {
        font-size: 2.2rem;
    }
    .faq-q {
        padding: 16px 18px;
        font-size: 0.92rem;
    }
    .faq-a p {
        padding: 0 18px 16px;
    }
    .app-thumb {
        flex: 1 1 120px;
        padding: 10px 12px;
    }
    .app-phone-frame {
        width: 200px;
    }
    .app-store-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ========== SCHOOL MOBILE APP SECTION ========== */
.app-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.phone-mockup-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 60px 40px 60px 20px;
}

.phone-body {
    width: 240px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(43, 43, 43, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 80px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    margin: 0 auto 8px;
    position: relative;
    z-index: 3;
}

.phone-screen {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    min-height: 440px;
}

.app-screen-head {
    background: linear-gradient(135deg, var(--lime), var(--orange));
    padding: 14px 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.app-screen-title {
    font-weight: 700;
    font-size: 0.95rem;
}

.app-menu-icon {
    font-size: 0.85rem;
    opacity: 0.9;
}

.app-icons-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.app-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
}

.app-screen-chips {
    padding: 10px 12px 6px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.app-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.chip-badge {
    background: var(--orange);
    color: #fff;
    border-radius: 20px;
    padding: 0 5px;
    font-size: 0.6rem;
    font-weight: 700;
}

.app-quick-stats {
    display: flex;
    gap: 4px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
}

.aq-stat {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    border-radius: 10px;
}

.aq-stat.lime {
    background: var(--lime-pale);
}

.aq-stat.orange {
    background: var(--orange-pale);
}

.aq-stat.ink {
    background: #f3f3f3;
}

.aq-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
}

.aq-stat.lime .aq-num {
    color: var(--lime-d);
}

.aq-stat.orange .aq-num {
    color: var(--orange-d);
}

.aq-lbl {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.app-homework-row {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
}

.app-hw-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.app-hw-label i {
    font-size: 0.65rem;
}

.app-hw-circle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hw-legend {
    font-size: 0.6rem;
    color: var(--ink-soft);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hw-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
}

.hw-dot.overdue {
    background: var(--orange);
}

.hw-dot.done {
    background: var(--lime-d);
}

.app-digital-row {
    padding: 10px 12px;
}

.app-dl-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.app-dl-entry {
    font-size: 0.62rem;
    color: var(--ink-soft);
    background: var(--bg-soft);
    border-radius: 8px;
    padding: 6px 8px;
    line-height: 1.5;
}

.floating-ui-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(43, 43, 43, 0.12);
    z-index: 4;
}

.fc-alerts {
    top: 20px;
    left: -10px;
    width: 220px;
    padding: 14px 16px;
}

.fcard-head {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lime-d);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fcard-head.hw-head {
    color: var(--ink);
    justify-content: space-between;
}

.fcard-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
}

.fcard-row:last-child {
    border-bottom: none;
}

.fcard-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.fcard-icon-wrap.orange {
    background: var(--orange-pale);
    color: var(--orange-d);
}

.fcard-icon-wrap.lime {
    background: var(--lime-pale);
    color: var(--lime-d);
}

.fcard-text {
    flex: 1;
    font-size: 0.62rem;
    color: var(--ink-soft);
    line-height: 1.4;
}

.fcard-btn {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.fcard-btn.orange {
    background: var(--orange);
    color: #fff;
}

.fcard-btn.lime {
    background: var(--lime);
    color: #fff;
}

.fc-homework {
    bottom: 30px;
    right: -20px;
    width: 190px;
    padding: 14px 16px;
}

.fcard-hw-body {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.hw-legend-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.65rem;
    color: var(--ink-soft);
    font-weight: 500;
}

.fc-news {
    bottom: 20px;
    left: -10px;
    padding: 14px 18px;
    text-align: center;
    min-width: 110px;
}

.fc-news-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lime-d), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.fc-news-lbl {
    font-size: 0.65rem;
    color: var(--ink-soft);
    font-weight: 500;
    margin-top: 2px;
}

.fc-news-tag {
    margin-top: 8px;
    background: var(--orange-pale);
    color: var(--orange-d);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.app-promo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.app-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--ink-soft);
    font-weight: 400;
    line-height: 1.6;
}

.app-feat-item i {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--lime-pale);
    color: var(--lime-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn small {
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .app-mobile-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .phone-mockup-wrap {
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .fc-alerts {
        left: -4px;
        width: 180px;
    }
    .fc-homework {
        right: -4px;
        width: 160px;
    }
    .fc-news {
        left: -4px;
    }
}

/* ========== FLOATING BUTTON + CENTERED MODAL ========== */

/* The button sits flush on the right edge of the viewport,
   vertically centred, on every screen size.
   No rotation tricks — just a clean pill with shadow. */
.floating-quote-btn {
    position: fixed;
    rotate: -90deg;
    right: 0px;
    bottom: 50%;
    transform: translateY(150%);
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 28px rgba(247, 148, 29, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.floating-quote-btn:hover {
    background: var(--orange-d);
    transform: translateY(150%) scale(1.05);
    box-shadow: 0 12px 36px rgba(247, 148, 29, 0.55);
}

.floating-quote-btn i {
    font-size: 1rem;
}

/* ---- Modal overlay ---- */
.quote-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
}

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

/* ---- Centred modal ---- */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.quote-modal-content {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.quote-modal.active .quote-modal-content {
    transform: scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--ink-soft);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.quote-modal-close:hover {
    color: var(--orange);
}

.quote-modal-content .hlc-title {
    font-size: 1.3rem;
    background: linear-gradient(90deg, var(--lime), var(--orange));
    padding: 16px 20px;
    border-radius: 12px 12px 0 0;
    margin: -30px -30px 20px -30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.quote-modal-content .hlc-title i {
    font-size: 1.5rem;
}

.quote-modal-content .quote-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-modal-content .quote-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-soft);
    transition: border-color 0.25s;
    outline: none;
}

.quote-modal-content .quote-form-group input:focus {
    border-color: var(--lime);
}

/* ========== QUOTE FORM TEXTAREA ========== */
.quote-modal-content .quote-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-soft);
    transition: border-color 0.25s;
    outline: none;
    resize: vertical;
    min-height: 100px;
}

.quote-modal-content .quote-form-group textarea:focus {
    border-color: var(--lime);
}

.quote-modal-content .hlc-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.3);
    font-size: 1rem;
}

.quote-modal-content .hlc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(247, 148, 29, 0.4);
}

.quote-modal-content .hlc-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .floating-quote-btn {
        right: 16px;
        padding: 12px 16px;
        font-size: 0.82rem;
        gap: 8px;
    }
    .quote-modal-content {
        padding: 20px;
        max-width: 95%;
    }
    .quote-modal-content .hlc-title {
        margin: -20px -20px 20px -20px;
        font-size: 1.1rem;
        padding: 14px 16px;
    }
}

/* ========== ABOUT SECTION (Stacked Images) ========== */
.about-section {
    padding: 90px 0 100px;
    background: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* ---- LEFT SIDE ---- */
.sec-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.about-h2 {
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-h2 .grad {
    background: linear-gradient(90deg, var(--lime-d), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-desc {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 16px;
}

.divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--orange));
    border-radius: 2px;
    margin: 22px 0;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 34px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 500;
}

.feat-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lime-pale);
    color: var(--lime-d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    font-weight: 800;
}

/* CTA row */
.cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-section .btn-primary {
    border-radius: 6px;
    padding: 13px 28px;
    background: var(--orange);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    font-family: inherit;
}

.about-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(247, 148, 29, 0.4);
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lime-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--lime-d);
    flex-shrink: 0;
}

.contact-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-soft);
    font-weight: 600;
}

.contact-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

/* ---- RIGHT SIDE: stacked images ---- */
.about-right {
    position: relative;
    height: 430px;
}

/* Dot pattern bg */
.dot-pattern {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, var(--line) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 0;
}

.dot-pattern-2 {
    position: absolute;
    top: 10px;
    left: -10px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--line) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 0;
}

/* Main (top) image */
.img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(43, 43, 43, 0.14);
}

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

.img-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lime), var(--orange));
}

.img-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--orange);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 5;
}

/* Secondary (bottom-left) image */
.img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(43, 43, 43, 0.16);
    border: 5px solid #fff;
}

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

/* Stat badge */
.stat-badge {
    position: absolute;
    bottom: 28px;
    right: 20px;
    z-index: 4;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 16px 48px rgba(43, 43, 43, 0.14);
    text-align: center;
    min-width: 130px;
}

.stat-badge .num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -2px;
    line-height: 1;
}

.stat-badge .lbl {
    font-size: 0.72rem;
    color: var(--ink-soft);
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-right {
        height: 360px;
    }
    .img-main {
        width: 78%;
        height: 220px;
    }
    .img-secondary {
        width: 60%;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .about-right {
        height: 300px;
    }
    .img-main {
        width: 75%;
        height: 180px;
    }
    .img-secondary {
        width: 55%;
        height: 150px;
    }
    .stat-badge {
        padding: 12px 16px;
        min-width: 100px;
        bottom: 20px;
        right: 10px;
    }
    .stat-badge .num {
        font-size: 1.8rem;
    }
    .stat-badge .lbl {
        font-size: 0.6rem;
    }
    .cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .contact-pill {
        justify-content: center;
    }
}

/* ========== ADD LOGO IMAGE STYLES ========== */
.brand-logo {
    height: 75px;
    width: auto;
    display: block;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
}

/* Mobile adjustment if needed */
@media (max-width: 768px) {
    .brand-logo {
        height: 36px;
    }
    .footer-logo {
        height: 40px;
    }
}