
  :root {
    --accent:   #29A59B;
    --accent2:  #7C3AED;
    --teal:     #14B8A6;
    --amber:    #FBBF24;
    --navy:     #0F172A;
    --mid:      #334155;
    --soft:     #F8F7FF;
    --cream:    #F1EFF9;
    --border-c: #E2E0F0;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Poppins', sans-serif; background: #fff; color: var(--navy); overflow-x: hidden; }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--soft); }
  ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

  /* ── NAV ── */
   /* ─── NAVBAR ─── */
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2.8rem;
        height: 70px;
        background: #fff;
        border-bottom: 1px solid var(--border-c);
        position: relative;
        z-index: 10;
    }

    .logo-wrap {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        text-decoration: none;
    }

    /* Creative Advs logo mark — abstract C + spark */
    .logo-icon {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .logo-text-block {
        display: flex;
        flex-direction: column;
        line-height: 1.18;
    }

    .logo-text-block .l1 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: -0.01em;
        font-family: 'Nunito', sans-serif;
    }

    .logo-text-block .l2 {
        font-size: 0.68rem;
        font-weight: 600;
        color: var(--accent);
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

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

    .nav-links a {
        font-size: 0.84rem;
        font-weight: 500;
        color: var(--mid);
        text-decoration: none;
        padding: 0.4rem 0.9rem;
        border-radius: 6px;
        white-space: nowrap;
        transition: color 0.2s, background 0.2s;
    }

    .nav-links a:hover {
        color: var(--accent);
        background: rgba(255, 77, 28, 0.06);
    }

    .nav-actions {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .btn-pill {
        padding: 0.45rem 1.5rem;
        border-radius: 100px;
        font-size: 0.86rem;
        font-weight: 600;
        text-decoration: none;
        border: 2px solid var(--accent);
        background: var(--accent);
        color: #fff;
        transition: background 0.2s, color 0.2s, transform 0.15s;
        white-space: nowrap;
        font-family: 'Poppins', sans-serif;
    }

    .btn-pill:hover {
        background: #e03a0a;
        border-color: #e03a0a;
        transform: translateY(-1px);
    }

    .btn-pill.outline {
        background: #fff;
        color: var(--accent2);
        border-color: var(--accent2);
    }

    .btn-pill.outline:hover {
        background: var(--accent2);
        color: #fff;
        transform: translateY(-1px);
    }

/* ══════════════════════════════════════════
        MOBILE HAMBURGER + DRAWER
   ══════════════════════════════════════════ */

/* ─── HAMBURGER BUTTON ─── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border-c);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
    border-color: var(--accent);
    background: rgba(41, 165, 155, 0.06);
}

.menu-toggle .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s,
                width 0.3s;
    transform-origin: center;
}

/* X / close state */
.menu-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.open {
    border-color: var(--accent);
    background: rgba(41, 165, 155, 0.08);
}

/* Hide "Call Us" pill on small screens */
.hide-mobile {
    display: inline-flex;
}

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ─── MOBILE DRAWER PANEL ─── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(15, 23, 42, 0.18);
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

/* ─── DRAWER HEADER ─── */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-c);
    flex-shrink: 0;
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.drawer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

.drawer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.drawer-logo-text .dl1 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
}

.drawer-logo-text .dl2 {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid var(--border-c);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.drawer-close:hover {
    border-color: var(--accent);
    background: rgba(41, 165, 155, 0.06);
}

.drawer-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--mid);
    stroke-width: 2;
    fill: none;
}

/* ─── DRAWER SECTION LABEL ─── */
.drawer-section-label {
    padding: 0.8rem 1.5rem 0.3rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94A3B8;
}

/* ─── DRAWER NAV LINKS ─── */
.drawer-nav {
    padding: 0.5rem 0;
    flex: 1;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, padding-left 0.2s, border-left-color 0.2s;
}

.drawer-nav a:hover {
    color: var(--accent);
    background: rgba(41, 165, 155, 0.05);
    padding-left: 1.8rem;
    border-left-color: var(--accent);
}

.drawer-nav .dn-arrow {
    font-size: 0.75rem;
    color: #CBD5E1;
    transition: color 0.2s;
}

.drawer-nav a:hover .dn-arrow {
    color: var(--accent);
}

.drawer-divider {
    height: 1px;
    background: var(--border-c);
    margin: 0.4rem 1.5rem;
}

/* ─── DRAWER CTA BUTTONS ─── */
.drawer-ctas {
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    border-top: 1px solid var(--border-c);
    flex-shrink: 0;
}

.drawer-btn-primary {
    display: block;
    text-align: center;
    padding: 0.82rem;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s, transform 0.15s;
}

.drawer-btn-primary:hover {
    background: #1e8c83;
    transform: translateY(-1px);
}

.drawer-btn-outline {
    display: block;
    text-align: center;
    padding: 0.82rem;
    border-radius: 12px;
    border: 1.5px solid var(--accent2);
    color: var(--accent2);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.drawer-btn-outline:hover {
    background: var(--accent2);
    color: #fff;
    transform: translateY(-1px);
}

/* ─── DRAWER CONTACT STRIP ─── */
.drawer-contact {
    padding: 1rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid var(--border-c);
    flex-shrink: 0;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}

.drawer-contact-item:hover {
    color: var(--accent);
}

.dci-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dci-icon svg {
    width: 14px;
    height: 14px;
}

/* ─── DRAWER SOCIAL ROW ─── */
.drawer-social {
    padding: 0.8rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.drawer-soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border-c);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #94A3B8;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.drawer-soc:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

/* ══════════════════════════════════════════
        RESPONSIVE — SHOW HAMBURGER
   ══════════════════════════════════════════ */

@media (max-width: 900px) {
    nav {
        padding: 0 1.2rem;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* Hide desktop links & "Call Us" pill */
    .nav-links {
        display: none !important;
    }

    .hide-mobile {
        display: none !important;
    }

    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Hero responsive */
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem 5rem;
    }

    .hero-illustration {
        min-height: 280px;
    }
}
    
/* 1. Main Drawer - Ensure it uses Flexbox correctly */
.mobile-drawer {
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 85%;
  max-width: 320px;
  height: 100%;
  padding: 0; /* Remove default padding to handle inner spacing better */
  box-sizing: border-box;
  text-align: left; /* Fixes the weird centering in your screenshot */
}

/* 2. Header Spacing */
.drawer-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

/* 3. The Nav Links - THIS IS THE CRITICAL PART */
.drawer-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Allows scrolling if the menu is long */
  flex-grow: 1;    /* Pushes the CTA buttons to the bottom */
}

.drawer-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin: 15px 0 10px 0;
}

.drawer-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #f9f9f9;
}

/* 4. Fix CTA Buttons and Contact Info */
.drawer-ctas {
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.drawer-btn-primary, .drawer-btn-outline {
  display: block;
  width: 100%; /* Force full width */
  margin-bottom: 10px;
  padding: 14px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.drawer-btn-primary {
  background: #29A59B;
  color: #fff !important;
}

.drawer-btn-outline {
  border: 1.5px solid #7C3AED;
  color: #7C3AED !important;
}

/* 5. Contact & Social Items */
.drawer-contact {
  padding: 0 20px 10px 20px;
}

.drawer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.drawer-social {
  padding: 10px 20px 20px 20px;
  display: flex;
  gap: 10px;
}

.drawer-soc {
  width: 35px;
  height: 35px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  color: #666;
}

/* ── FLOATING BUTTONS ── */
.float-btns {
    position: fixed;
    left: 0;
    bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 200;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s;
}

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

.float-phone {
    background: var(--accent);
}

.float-whatsapp {
    background: #25D366;
}

.float-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.get-quote {
    position: fixed;
    right: 0;
    top: 50%;
    background: var(--accent);
    color: #fff;
    writing-mode: vertical-rl;
    padding: 1.2rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    border-radius: 8px 0 0 8px;
    z-index: 200;
    cursor: pointer;
    text-transform: uppercase;
    transform: translateY(-50%) rotate(180deg);
    transition: background 0.2s;
}

.get-quote:hover {
    background: #c93510;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

  /* ── FLOATING ── */
  .get-quote { position: fixed; right: 0; top: 50%; background: var(--accent); color: #fff; writing-mode: vertical-rl; padding: 1.2rem 0.55rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; border-radius: 8px 0 0 8px; z-index: 200; cursor: pointer; text-transform: uppercase; transform: translateY(-50%) rotate(180deg); transition: background 0.2s; }
  .get-quote:hover { background: #c93510; }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .rd1{transition-delay:.1s} .rd2{transition-delay:.2s} .rd3{transition-delay:.3s}
  .rd4{transition-delay:.4s} .rd5{transition-delay:.5s}

  /* ══ HERO ══ */
  .hero {
    position: relative; overflow: hidden;
    background: var(--soft); min-height: 92vh;
    display: flex; align-items: center;
    padding: 6rem 4rem 4rem;
  }
  /* animated gradient bg */
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 10% 80%, rgba(255,77,28,0.10) 0%, transparent 50%),
      radial-gradient(ellipse at 85% 20%, rgba(124,58,237,0.09) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 95%, rgba(20,184,166,0.08) 0%, transparent 45%);
    pointer-events: none;
  }
  /* dot grid */
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(15,23,42,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  }

  /* BG decorative shapes */
  .hshape { position: absolute; pointer-events: none; z-index: 0; }
  .hshape-1 { top: -100px; right: 60px; width: 0; height: 0; border-left: 440px solid transparent; border-top: 680px solid rgba(124,58,237,0.055); }
  .hshape-2 { bottom: -80px; left: 0;    width: 0; height: 0; border-right: 340px solid transparent; border-bottom: 480px solid rgba(255,77,28,0.055); }
  .hshape-3 { top: 50px; right: 0;       width: 0; height: 0; border-left: 200px solid transparent; border-top: 440px solid rgba(20,184,166,0.07); }

  .hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 5rem; align-items: center;
    max-width: 1240px; margin: 0 auto; width: 100%;
  }
  .hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
  .hero-tag::before { content: ''; width: 22px; height: 1.5px; background: var(--accent); display: inline-block; }
  .hero h1 { font-family: 'Nunito', sans-serif; font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.04; color: var(--navy); margin-bottom: 1.4rem; }
  .hero h1 em { font-style: italic; color: var(--accent); font-family: 'Caveat', cursive; font-size: 1.08em; }
  .hero-desc { font-size: 0.97rem; color: var(--mid); font-weight: 300; line-height: 1.85; max-width: 520px; margin-bottom: 2.5rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: var(--accent); color: #fff; padding: 0.82rem 2.2rem; border-radius: 100px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
  .btn-primary:hover { background: #e03a0a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,77,28,0.3); }
  .btn-outline { color: var(--navy); padding: 0.82rem 2.2rem; border-radius: 100px; border: 1.5px solid var(--border-c); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
  .btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }

  /* Hero right: stacked cards visual */
  .hero-visual { position: relative; height: 480px; }

  .hv-main {
    position: absolute; top: 0; left: 0; right: 0; bottom: 60px;
    background: var(--navy); border-radius: 24px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 24px 64px rgba(15,23,42,0.2);
  }
  .hv-main::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,77,28,0.18) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(124,58,237,0.15) 0%, transparent 50%);
  }
  .hv-stat-card {
    position: absolute; background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px); border-radius: 14px; padding: 1rem 1.3rem;
  }
  .hv-stat-card .snum { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
  .hv-stat-card .slbl { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }
  .hvc-1 { top: 1.5rem; left: 1.5rem; }
  .hvc-2 { top: 1.5rem; right: 1.5rem; }
  .hvc-3 { bottom: 1.5rem; left: 50%; transform: translateX(-50%); white-space: nowrap; }

  .hv-bottom {
    position: absolute; bottom: 0; left: 3rem; right: 3rem;
    background: #fff; border-radius: 18px; padding: 1.2rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 16px 40px rgba(15,23,42,0.14);
    border: 1.5px solid var(--border-c);
  }
  .hv-bottom-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,77,28,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .hv-bottom-icon svg { width: 22px; height: 22px; }
  .hv-bottom-text .hbt { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
  .hv-bottom-text .hbs { font-size: 0.72rem; color: #94A3B8; margin-top: 0.1rem; }
  .hv-award { margin-left: auto; background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 100px; white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; }

  /* breadcrumb */
  .breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: #94A3B8; margin-top: 1rem; }
  .breadcrumb a { color: var(--accent); text-decoration: none; font-weight: 500; }

  /* ══ SECTION COMMONS ══ */
  .section-tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
  .section-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--accent); display: inline-block; }
  .section-h2 { font-family: 'Nunito', sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; color: var(--navy); margin-bottom: 1rem; }
  .section-h2 em { font-style: italic; color: var(--accent); }

  /* ══ TICKER ══ */
  .ticker-wrap { overflow: hidden; background: var(--navy); padding: 1.1rem 0; }
  .ticker-inner { display: flex; gap: 0; animation: ticker 28s linear infinite; width: max-content; }
  .ticker-item { display: flex; align-items: center; gap: 1.4rem; padding: 0 2rem; font-family: 'Nunito', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,242,237,0.45); white-space: nowrap; flex-shrink: 0; }
  .ticker-dot { color: var(--accent); font-size: 1.1rem; }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ══ STORY SECTION ══ */
  .story-section { padding: 8rem 4rem; background: #fff; }
  .story-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

  .story-visual { position: relative; min-height: 460px; }
  .story-img-main {
    position: absolute; top: 0; left: 0; width: 72%; height: 80%;
    background: linear-gradient(135deg, var(--cream), var(--soft));
    border-radius: 20px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 50px rgba(15,23,42,0.1);
  }
  .story-img-accent {
    position: absolute; bottom: 0; right: 0;
    width: 50%; height: 50%;
    background: var(--accent); border-radius: 18px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem;
    box-shadow: 0 16px 36px rgba(255,77,28,0.3);
  }
  .story-img-accent .big { font-family: 'Nunito', sans-serif; font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
  .story-img-accent .sm { font-size: 0.68rem; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; text-transform: uppercase; }

  /* Floating decorative badge */
  .story-badge {
    position: absolute; top: 38%; left: 55%;
    background: #fff; border: 1.5px solid var(--border-c); border-radius: 14px;
    padding: 0.9rem 1.1rem; box-shadow: 0 12px 32px rgba(15,23,42,0.1);
    display: flex; align-items: center; gap: 0.7rem; white-space: nowrap;
  }
  .sb-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(20,184,166,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .sb-icon svg { width: 18px; height: 18px; }
  .sb-num { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 900; color: var(--navy); line-height: 1; }
  .sb-lbl { font-size: 0.65rem; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.07em; }

  .story-content p { font-size: 0.9rem; color: var(--mid); font-weight: 300; line-height: 1.88; margin-bottom: 1.3rem; }
  .story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .sh-item { background: var(--soft); border: 1.5px solid var(--border-c); border-radius: 14px; padding: 1.1rem 1.2rem; transition: border-color 0.2s, transform 0.2s; }
  .sh-item:hover { border-color: var(--accent); transform: translateY(-3px); }
  .sh-num { font-family: 'Nunito', sans-serif; font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
  .sh-lbl { font-size: 0.75rem; color: var(--mid); font-weight: 400; margin-top: 0.2rem; line-height: 1.4; }

  /* ══ MISSION / VISION / VALUES ══ */
  .mvv-section { padding: 8rem 4rem; background: var(--soft); }
  .mvv-header { text-align: center; max-width: 580px; margin: 0 auto 5rem; }
  .mvv-header p { font-size: 0.92rem; color: var(--mid); font-weight: 300; line-height: 1.8; }

  .mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
  .mvv-card {
    border-radius: 22px; padding: 2.5rem 2rem; position: relative; overflow: hidden;
    border: 1.5px solid var(--border-c); background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .mvv-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(15,23,42,0.1); }
  .mvv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
  .mvv-card.mission::before { background: linear-gradient(90deg, var(--accent), #FF8C5A); }
  .mvv-card.vision::before  { background: linear-gradient(90deg, var(--accent2), #A78BFA); }
  .mvv-card.values::before  { background: linear-gradient(90deg, var(--teal), #5EEAD4); }
  .mvv-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
  .mvv-card.mission .mvv-icon { background: rgba(255,77,28,0.1); }
  .mvv-card.vision  .mvv-icon { background: rgba(124,58,237,0.1); }
  .mvv-card.values  .mvv-icon { background: rgba(20,184,166,0.1); }
  .mvv-icon svg { width: 26px; height: 26px; }
  .mvv-card h3 { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 0.8rem; }
  .mvv-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.8; font-weight: 300; }
  .mvv-values-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
  .mvv-values-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--mid); font-weight: 400; }
  .mvv-values-list li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: rgba(20,184,166,0.12); flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6 L5 9 L10 3' stroke='%2314B8A6' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }

  /* ══ TIMELINE ══ */
  .timeline-section { padding: 8rem 4rem; background: #fff; }
  .timeline-header { text-align: center; max-width: 540px; margin: 0 auto 5rem; }
  .timeline-header p { font-size: 0.9rem; color: var(--mid); font-weight: 300; line-height: 1.8; }

  .timeline { max-width: 900px; margin: 0 auto; position: relative; }
  /* Vertical line */
  .timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent), var(--accent2), var(--teal)); transform: translateX(-50%); }

  .tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 3.5rem; align-items: start; }
  .tl-item:last-child { margin-bottom: 0; }

  .tl-left { text-align: right; padding-right: 2.5rem; padding-top: 0.5rem; }
  .tl-right { text-align: left; padding-left: 2.5rem; padding-top: 0.5rem; }
  .tl-center { display: flex; align-items: flex-start; justify-content: center; padding-top: 0.4rem; position: relative; }

  /* dot */
  .tl-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--accent); flex-shrink: 0; margin-top: 4px; }
  .tl-dot.purple { background: var(--accent2); box-shadow: 0 0 0 3px var(--accent2); }
  .tl-dot.teal   { background: var(--teal);    box-shadow: 0 0 0 3px var(--teal); }
  .tl-dot.amber  { background: var(--amber);   box-shadow: 0 0 0 3px var(--amber); }

  .tl-year { font-family: 'Caveat', cursive; font-size: 1.2rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 0.3rem; }
  .tl-year.purple { color: var(--accent2); }
  .tl-year.teal   { color: var(--teal); }
  .tl-year.amber  { color: var(--amber); }
  .tl-title { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: -0.01em; }
  .tl-body { font-size: 0.82rem; color: var(--mid); line-height: 1.72; font-weight: 300; }
  .tl-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; margin-bottom: 0.3rem; }
  .tl-badge.coral  { background: rgba(255,77,28,0.1); color: var(--accent); }
  .tl-badge.purple { background: rgba(124,58,237,0.1); color: var(--accent2); }
  .tl-badge.teal   { background: rgba(20,184,166,0.12); color: var(--teal); }
  .tl-badge.amber  { background: rgba(251,191,36,0.15); color: #B45309; }

  /* alternating layout: even items flip */
  .tl-item.right .tl-left { order: 3; text-align: left; padding-left: 2.5rem; padding-right: 0; }
  .tl-item.right .tl-center { order: 2; }
  .tl-item.right .tl-right { order: 1; text-align: right; padding-right: 2.5rem; padding-left: 0; }

  /* ══ AWARDS STRIP ══ */
  .awards-strip { background: var(--soft); padding: 5rem 4rem; }
  .awards-header { text-align: center; margin-bottom: 3.5rem; }
  .awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .award-card {
    background: #fff; border: 1.5px solid var(--border-c); border-radius: 18px; padding: 1.8rem 1.5rem;
    text-align: center; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .award-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(255,77,28,0.1); }
  .award-icon { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; }
  .award-card h4 { font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; letter-spacing: -0.01em; }
  .award-card p { font-size: 0.72rem; color: #94A3B8; font-weight: 300; line-height: 1.55; }
  .award-year { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 0.18rem 0.6rem; border-radius: 100px; background: rgba(255,77,28,0.1); color: var(--accent); margin-top: 0.6rem; letter-spacing: 0.06em; }

  /* ══ STATS BAND ══ */
  .stats-band { background: var(--accent); padding: 5rem 4rem; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2.5rem; position: relative; overflow: hidden; }
  .stats-band::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E"); background-size: 40px 40px; pointer-events: none; }
  .stat-b { text-align: center; position: relative; z-index: 1; }
  .stat-b .num { font-family: 'Nunito', sans-serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; color: #fff; letter-spacing: -0.05em; line-height: 1; }
  .stat-b .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.72); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.4rem; }

  /* ══ WHY US ══ */
  .whyus-section { padding: 8rem 4rem; background: #fff; }
  .whyus-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .whyus-content p { font-size: 0.9rem; color: var(--mid); line-height: 1.88; font-weight: 300; margin-bottom: 1.2rem; }
  .whyus-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .wl-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.3rem; border: 1.5px solid var(--border-c); border-radius: 14px; background: var(--soft); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
  .wl-item:hover { border-color: var(--accent); background: rgba(255,77,28,0.025); transform: translateX(5px); }
  .wl-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .wl-icon svg { width: 20px; height: 20px; }
  .wl-body h5 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
  .wl-body p { font-size: 0.78rem; color: var(--mid); line-height: 1.65; font-weight: 300; margin: 0; }

  /* Why Us visual: stacked graph card */
  .whyus-visual {
    background: var(--navy); border-radius: 24px; padding: 2rem;
    box-shadow: 0 24px 60px rgba(15,23,42,0.18); position: relative; overflow: hidden;
  }
  .whyus-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(124,58,237,0.2) 0%, transparent 55%); pointer-events: none; }
  .wv-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; position: relative; z-index: 1; }
  .wv-bars { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; }
  .wv-bar-row { display: flex; align-items: center; gap: 0.8rem; }
  .wv-bar-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.55); width: 80px; flex-shrink: 0; text-align: right; }
  .wv-bar-track { flex: 1; height: 10px; background: rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
  .wv-bar-fill { height: 100%; border-radius: 10px; transition: width 1.2s ease; }
  .wv-bar-val { font-size: 0.72rem; font-weight: 700; color: #fff; width: 36px; flex-shrink: 0; }
  .wv-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1.5rem 0; }
  .wv-metric-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
  .wv-metric { text-align: center; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 1rem 0.5rem; }
  .wv-metric .mn { font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; }
  .wv-metric .ml { font-size: 0.62rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

  /* ══ PARTNERS ══ */
  .partners-section { padding: 6rem 4rem; background: var(--soft); }
  .partners-header { text-align: center; margin-bottom: 3rem; }
  .partners-header p { font-size: 0.85rem; color: #94A3B8; font-weight: 300; margin-top: 0.3rem; }
  .partners-row { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; max-width: 1000px; margin: 0 auto; }
  .partner-chip {
    background: #fff; border: 1.5px solid var(--border-c); border-radius: 100px;
    padding: 0.7rem 2rem; font-family: 'Nunito', sans-serif; font-size: 0.92rem; font-weight: 700;
    color: #94A3B8; letter-spacing: 0.04em;
    transition: color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .partner-chip:hover { color: var(--navy); border-color: var(--navy); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(15,23,42,0.1); }
  .partner-chip .pc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

  /* ══ CTA BAND ══ */
  .cta-band { background: var(--navy); padding: 8rem 4rem; text-align: center; position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,77,28,0.14) 0%, transparent 55%), radial-gradient(ellipse at 75% 50%, rgba(124,58,237,0.12) 0%, transparent 55%); pointer-events: none; }
  .cta-band .section-tag { color: rgba(255,255,255,0.4); justify-content: center; }
  .cta-band .section-tag::before { background: rgba(255,255,255,0.25); }
  .cta-band h2 { color: #fff; text-align: center; font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1.2rem; position: relative; }
  .cta-band h2 em { color: var(--accent); }
  .cta-band p { color: rgba(255,255,255,0.5); font-size: 0.95rem; font-weight: 300; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; position: relative; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-white { background: #fff; color: var(--navy); padding: 0.85rem 2.4rem; border-radius: 100px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: background 0.2s, transform 0.2s; }
  .btn-white:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
  .btn-ghost { color: rgba(255,255,255,0.65); padding: 0.85rem 2.4rem; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.2); font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: border-color 0.2s, color 0.2s, transform 0.2s; }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; transform: translateY(-2px); }

  /* ══ FOOTER ══ */
  .footer-section { background: #fff; width: 100%; padding: 4rem 0 0; position: relative; border-top: 1px solid #E8E4F0; }
  .footer-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--teal) 100%); }
  .footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: 1.1fr 0.8fr 1fr 1.3fr; gap: 3rem; align-items: start; }
  .footer-logo-wrap { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-bottom: 1.4rem; }
  .footer-logo-text .fl1 { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--navy); display: block; line-height: 1.2; }
  .footer-logo-text .fl2 { font-size: 0.65rem; font-weight: 600; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }
  .footer-map { width: 100%; height: 150px; border-radius: 10px; overflow: hidden; border: 1.5px solid #E2E0F0; position: relative; background: #F0EEF8; }
  .footer-map iframe { width: 100%; height: 100%; border: none; }
  .map-badge { position: absolute; top: 8px; left: 8px; background: #fff; border-radius: 6px; padding: 0.25rem 0.6rem; font-size: 0.68rem; font-weight: 600; color: #1a73e8; display: flex; align-items: center; gap: 0.3rem; box-shadow: 0 2px 8px rgba(0,0,0,0.12); text-decoration: none; }
  .footer-support-card { margin-top: 1.2rem; border: 1.5px solid #E2E0F0; border-radius: 12px; padding: 0.9rem 1.1rem; display: flex; align-items: center; justify-content: space-between; background: #F8F7FF; transition: border-color 0.2s; }
  .footer-support-card:hover { border-color: var(--accent); }
  .support-label { font-size: 0.72rem; color: #94A3B8; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.3rem; }
  .support-number { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--navy); }
  .support-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; animation: ring-pulse 2.5s ease infinite; }
  @keyframes ring-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,77,28,0.35); } 50% { box-shadow: 0 0 0 10px rgba(255,77,28,0); } }
  .support-icon svg { width: 20px; height: 20px; fill: #fff; }
  .footer-col-links h5, .footer-col-contact h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #94A3B8; margin-bottom: 1.4rem; padding-bottom: 0.7rem; border-bottom: 1px solid #E8E4F0; }
  .footer-col-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col-links ul li a { font-size: 0.85rem; color: #475569; text-decoration: none; font-weight: 400; transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem; }
  .footer-col-links ul li a::before { content: ''; width: 0; height: 1.5px; background: var(--accent); transition: width 0.25s; display: inline-block; flex-shrink: 0; }
  .footer-col-links ul li a:hover { color: var(--accent); }
  .footer-col-links ul li a:hover::before { width: 12px; }
  .f-contact-detail { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.78rem; color: #64748B; line-height: 1.65; margin-bottom: 0.5rem; font-weight: 300; }
  .f-contact-detail svg { flex-shrink: 0; margin-top: 2px; width: 13px; height: 13px; }
  .f-contact-detail a { color: #64748B; text-decoration: none; transition: color 0.2s; }
  .f-contact-detail a:hover { color: var(--accent); }
  .footer-cta-btn { display: inline-block; margin-top: 0.8rem; background: var(--accent); color: #fff; padding: 0.65rem 1.8rem; border-radius: 100px; font-size: 0.88rem; font-weight: 600; text-decoration: none; border: 2px solid var(--accent); transition: background 0.2s, transform 0.2s; }
  .footer-cta-btn:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
  .footer-social-row { max-width: 1200px; margin: 3rem auto 0; padding: 1.5rem 3rem; border-top: 1px solid #E8E4F0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-socials-list { display: flex; gap: 0.65rem; }
  .footer-soc { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #E2E0F0; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: #94A3B8; text-decoration: none; background: #fff; transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s; }
  .footer-soc:hover { border-color: var(--accent); background: var(--accent); color: #fff; transform: translateY(-2px); }
  .footer-tagline { font-size: 0.8rem; color: #94A3B8; font-weight: 300; text-align: right; }
  .footer-tagline strong { color: var(--accent); font-weight: 600; }
  .footer-copyright { background: #F1EFF9; padding: 1rem 3rem; text-align: center; font-size: 0.78rem; color: #94A3B8; font-weight: 300; border-top: 1px solid #E8E4F0; }
  .footer-copyright a { color: var(--accent); text-decoration: none; font-weight: 500; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { height: 300px; }
    .story-inner, .whyus-inner { grid-template-columns: 1fr; gap: 3rem; }
    .story-visual { min-height: 280px; }
    .mvv-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .awards-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 0 2rem; }
    .tl-item { grid-template-columns: 1fr 40px 1fr; }
    .tl-left { padding-right: 1.5rem; }
    .tl-right { padding-left: 1.5rem; }
    .tl-item.right .tl-left { padding-left: 1.5rem; padding-right: 0; }
    .tl-item.right .tl-right { padding-right: 1.5rem; padding-left: 0; }
  }
  @media (max-width: 768px) {
    nav { padding: 0 1rem; } .nav-links { display: none; }
    .hero { padding: 5rem 1.5rem 3rem; min-height: auto; }
    .story-section, .mvv-section, .timeline-section, .awards-strip, .whyus-section, .partners-section, .cta-band { padding: 5rem 1.5rem; }
    .stats-band { padding: 3.5rem 1.5rem; }
    .awards-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    /* Flatten timeline on mobile */
    .timeline::before { left: 20px; }
    .tl-item { grid-template-columns: 40px 1fr; }
    .tl-item .tl-left { display: none; }
    .tl-item.right .tl-left { display: none; }
    .tl-item.right .tl-right { order: 3; text-align: left; padding-left: 1.5rem; padding-right: 0; }
    .tl-item.right .tl-center { order: 1; }
    .tl-center { justify-content: flex-start; }
    .tl-right, .tl-item.right .tl-right { padding-left: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; padding: 0 1.5rem; }
    .footer-social-row { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
    .footer-tagline { text-align: left; }
    .footer-copyright { padding: 1rem 1.5rem; }
  }