/* ============================================================
   ANGAZA — Design System
   Brand: "Angaza" (Swahili: to illuminate / shine light)
   Professional-minimalist · navy · gold · cream
   ============================================================ */

:root {
    /* Palette */
    --saffron:      #F6C945;   /* gold — accent only */
    --saffron-soft: #FDECB8;
    --ink:          #17324D;   /* deep navy — structure, headings, nav */
    --text:         #17212B;   /* near-black body text */
    --coral:        #E0A800;   /* amber (rare accent) */
    --leaf:         #2E9E6B;   /* success / free */
    --grape:        #17324D;   /* navy (focus, tags) */
    --paper:        #FFFFFF;   /* main page background */
    --card:         #FFFFFF;
    --sky:          #FFF8E7;   /* warm cream — alternating sections */
    --muted:        #667085;   /* secondary text */
    --line:         #ECEEF2;   /* hairline dividers */

    /* Type */
    --display: 'Manrope', system-ui, sans-serif;
    --body:    'Manrope', system-ui, -apple-system, sans-serif;

    /* Shape & motion */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-pill: 999px;
    --shadow: 0 6px 24px rgba(23, 50, 77, 0.06);
    --shadow-lg: 0 16px 44px rgba(23, 50, 77, 0.12);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t: 0.28s var(--ease);

    --max: 1180px;
}

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

/* Guarantee the hidden attribute always wins, even over components
   (like .login-wrap) that set their own display value. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.14; color: var(--ink); letter-spacing: -0.01em; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.icon { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* Accessibility */
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 2px; border-radius: 4px; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Section rhythm */
.section { padding: 76px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--coral); margin-bottom: 14px;
}
.eyebrow .sun-tick { display: none; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 10px; }

/* ============================================================ HEADER */
header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid var(--line);
}
header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: auto; height: 34px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-word { font-family: var(--display); font-weight: 800; font-size: 24px; color: var(--ink); letter-spacing: -0.02em; }
.brand-tagline { font-size: 11.5px; font-weight: 700; color: var(--muted); letter-spacing: 0.01em; }

nav.primary { display: flex; align-items: center; gap: 28px; }
nav.primary a {
    text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink);
    padding: 4px 0; position: relative;
}
nav.primary a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
    background: var(--saffron); transition: right var(--t);
}
nav.primary a:hover::after { right: 0; }

.nav-item { position: relative; }
.nav-shop-trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-shop-trigger .chev { width: 13px; height: 13px; transition: transform var(--t); }
.nav-item:hover .nav-shop-trigger .chev { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(6px);
    background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
    padding: 22px; display: grid; grid-template-columns: repeat(3, minmax(130px, 160px)); gap: 6px 24px;
    opacity: 0; pointer-events: none; transition: opacity var(--t), transform var(--t);
    z-index: 110; max-width: min(560px, calc(100vw - 48px));
}
@media (max-width: 1080px) {
    .nav-dropdown { grid-template-columns: repeat(2, minmax(130px, 160px)); }
    .nd-highlight { border-left: none; padding-left: 0; grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 14px; }
}
.nav-item:hover .nav-dropdown, .nav-dropdown:hover {
    opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nd-col { display: flex; flex-direction: column; gap: 3px; }
.nd-col h4 {
    font-family: var(--body); font-size: 11.5px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px;
}
.nd-col a {
    text-decoration: none; color: var(--ink); font-size: 14px; font-weight: 600;
    padding: 6px 8px; border-radius: 8px; transition: background var(--t);
}
.nd-col a:hover { background: var(--sky); }
.nd-col a::after { display: none; content: none; }
.nd-highlight { border-left: 1px solid var(--line); padding-left: 22px; }
.nd-cta { color: var(--coral) !important; display: inline-flex; align-items: center; gap: 6px; }
.nd-cta .icon { width: 13px; height: 13px; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-only-btn {
    display: inline-flex; align-items: center; justify-content: center; position: relative;
    width: 40px; height: 40px; border-radius: 50%; border: none; background: none;
    color: var(--ink); cursor: pointer; transition: background var(--t);
}
.icon-only-btn:hover { background: var(--line); }
.icon-only-btn .icon { width: 20px; height: 20px; }
.cart-icon-btn .cart-count {
    position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px;
    font-size: 10.5px;
}
.btn-browse { padding: 12px 22px; font-size: 14.5px; }
@media (max-width: 980px) { .btn-browse { display: none; } }
.cart-btn {
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
    background: var(--ink); color: #fff; border: none; font-family: var(--body);
    font-weight: 800; font-size: 14px; padding: 10px 18px; border-radius: var(--r-pill);
    transition: transform var(--t), background var(--t);
}
.cart-btn:hover { transform: translateY(-2px); }
.cart-count {
    min-width: 20px; height: 20px; padding: 0 6px; border-radius: var(--r-pill);
    background: var(--saffron); color: var(--ink); font-size: 12px; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); }

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; padding: 72px 0 84px; background: linear-gradient(180deg, #fff 0%, var(--sky) 100%); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero-badge {
    display: inline-block; color: var(--coral); font-weight: 800; font-size: 12.5px;
    letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(42px, 5.6vw, 64px); letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--saffron); }
.hero .lede { font-size: 18px; color: var(--muted); margin: 22px 0 32px; max-width: 460px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn {
    display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
    font-family: var(--body); font-weight: 800; font-size: 16px; text-decoration: none;
    padding: 15px 28px; border-radius: var(--r-pill); border: 2px solid transparent;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 8px 22px rgba(23,50,77,0.18); }
.btn-ghost .icon {
    border: 1.6px solid currentColor; border-radius: 50%; padding: 4px;
    width: 0.85em; height: 0.85em; box-sizing: content-box;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(23,50,77,0.26); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; }
.hero-trust .ht .icon { width: 22px; height: 22px; color: var(--saffron); }
.hero-trust .ht b { display: block; font-size: 14px; color: var(--ink); font-weight: 800; line-height: 1.1; }
.hero-trust .ht span { font-size: 12.5px; color: var(--muted); }

.hero-art { position: relative; padding: 20px 28px 34px 6px; }
.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none;
}
.hero-blob-1 { width: 320px; height: 320px; background: var(--saffron); opacity: 0.30; top: -30px; right: 0; }
.hero-blob-2 { width: 240px; height: 240px; background: var(--leaf); opacity: 0.18; bottom: 10px; left: -20px; }
.hero-photo {
    position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 3 / 2;
    object-fit: cover; object-position: 50% 50%; border-radius: var(--r-lg);
    box-shadow: 0 40px 70px -24px rgba(23,50,77,0.38);
}

/* trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust .container { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; padding: 18px 24px; }
.trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--muted); }
.trust .icon { color: var(--saffron); }

/* ============================================================ LEARNING AREAS (rays of the sun) */
.areas { background: var(--paper); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 26px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    position: relative; overflow: hidden;
}
.area::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--c, var(--saffron));
}
.area:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.area .badge {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: color-mix(in srgb, var(--c, var(--saffron)) 16%, #fff); color: var(--c, var(--saffron)); margin-bottom: 16px;
}
.area .badge .icon { width: 26px; height: 26px; }
.area h3 { font-size: 19px; margin-bottom: 6px; }
.area p { font-size: 14.5px; color: var(--muted); }

/* ============================================================ BROWSE (categories + levels) */
.browse { background: var(--sky); }
.browse-tabs {
    display: flex; justify-content: center; gap: 8px; margin: -12px 0 32px;
}
.browse-tab {
    font-family: var(--body); font-weight: 800; font-size: 14.5px; cursor: pointer;
    background: #fff; border: 1.5px solid var(--line); color: var(--muted);
    padding: 10px 22px; border-radius: var(--r-pill); transition: var(--t);
}
.browse-tab:hover { border-color: var(--saffron); color: var(--ink); }
.browse-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-card {
  background: var(--card); border: none; border-radius: var(--r-lg);
  padding: 30px 18px 24px; text-align: center; cursor: pointer; font-family: var(--body);
  display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card .cat-icon { width: 34px; height: 34px; color: var(--c); }
.cat-card h3 { font-size: 15.5px; line-height: 1.25; }
.cat-card .go { margin-top: 2px; color: var(--muted); display: inline-flex; align-items: center; justify-content: center; }
.cat-card .go .icon { width: 16px; height: 16px; transition: transform var(--t); }
.cat-card:hover .go .icon { transform: translateX(4px); color: var(--c); }

@media (max-width: 1180px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }

/* format badge on product covers */
.card .format {
  position: absolute; bottom: 12px; right: 12px; display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(30,42,68,0.72); color: #fff; backdrop-filter: blur(4px);
}
.card .format .icon { width: 13px; height: 13px; }
.card .cover .preview { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-grid { grid-template-columns: 1fr; } }

/* ============================================================ PREVIEW LIGHTBOX */
.card .cover { cursor: default; }
.card .peek {
  position: absolute; inset: 0; margin: auto; width: 52px; height: 52px; border: none;
  border-radius: 50%; background: rgba(30,42,68,0.55); color: #fff; cursor: pointer;
  display: grid; place-items: center; opacity: 0; transition: opacity var(--t), transform var(--t);
  backdrop-filter: blur(3px);
}
.card .cover:hover .peek { opacity: 1; }
.card .peek:hover { transform: scale(1.08); background: rgba(30,42,68,0.75); }
.card .peek .icon { width: 24px; height: 24px; }

.lightbox {
  width: min(520px, 100%); background: var(--paper); border-radius: var(--r-lg);
  overflow: hidden; transform: scale(0.96); transition: transform var(--t); box-shadow: var(--shadow-lg);
  max-height: 94vh; display: flex; flex-direction: column;
}
.overlay.open .lightbox { transform: scale(1); }
.lightbox .stage {
  position: relative; background: #11182b; display: grid; place-items: center; overflow: hidden;
}
.lightbox .stage img { width: 100%; height: auto; max-height: 62vh; object-fit: contain; display: block; }
.lightbox .stage .tile {
  width: 100%; aspect-ratio: 4/3; display: grid; place-items: center;
}
.lightbox .stage .tile .icon { width: 92px; height: 92px; color: var(--ink); opacity: 0.6; }
.wm-layer { position: absolute; inset: 0; pointer-events: none; background-repeat: repeat; opacity: 0.85; }
.lightbox .lb-close {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border: none;
  border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--ink); cursor: pointer;
  display: grid; place-items: center;
}
.lightbox .lb-close:hover { background: #fff; }
.lightbox .lb-body { padding: 20px 22px; }
.lightbox .lb-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.lightbox h3 { font-size: 21px; margin-bottom: 6px; }
.lightbox .lb-desc { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.lightbox .lb-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.lightbox .lb-foot .price { font-family: var(--display); font-size: 24px; color: var(--ink); }
.lightbox .lb-foot .price .was { font-family: var(--body); font-size: 15px; color: var(--muted); text-decoration: line-through; margin-right: 7px; font-weight: 700; }
.lightbox .lb-foot .price.free { color: var(--leaf); }
.lightbox .lb-foot .btn { flex: none; }

/* ============================================================ BY LEVEL */
.level-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.level {
    background: var(--card); border-radius: var(--r-lg); padding: 22px 18px; text-align: center;
    text-decoration: none; color: var(--ink); border: 2px solid transparent;
    box-shadow: var(--shadow); transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.level:hover { transform: translateY(-5px); border-color: var(--saffron); box-shadow: var(--shadow-lg); }
.level .glyph {
    width: 56px; height: 56px; margin: 0 auto 10px; border-radius: 50%;
    display: grid; place-items: center; background: var(--saffron-soft); color: var(--ink);
}
.level .glyph .icon { width: 28px; height: 28px; color: inherit; }
.level h3 { font-size: 17px; }
.level .age { font-size: 13px; color: var(--muted); font-weight: 700; margin: 2px 0 10px; }
.level .chip {
    display: inline-block; font-size: 12px; font-weight: 800; padding: 4px 12px;
    border-radius: var(--r-pill); background: color-mix(in srgb, var(--saffron) 18%, #fff); color: var(--ink);
}

/* ============================================================ SHOP */
.shop { background: var(--paper); }
.shop-controls {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 18px; margin-bottom: 28px; box-shadow: var(--shadow);
}
.search-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.search-box {
    flex: 1; display: flex; align-items: center; gap: 10px; background: var(--paper);
    border: 1px solid var(--line); border-radius: var(--r-pill); padding: 11px 18px;
}
.search-box .icon { color: var(--muted); }
.search-box input { flex: 1; border: none; background: none; font-family: var(--body); font-size: 15px; font-weight: 600; color: var(--ink); }
.search-box input:focus { outline: none; }
.result-count { font-weight: 800; font-size: 14px; color: var(--muted); white-space: nowrap; }

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-row + .chip-row { margin-top: 10px; }
.filter-chip {
    font-family: var(--body); font-weight: 800; font-size: 13.5px; cursor: pointer;
    border: 1.5px solid var(--line); background: #fff; color: var(--ink);
    padding: 8px 16px; border-radius: var(--r-pill); transition: var(--t);
    display: inline-flex; align-items: center; gap: 6px;
}
.filter-chip:hover { border-color: var(--saffron); }
.filter-chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 24px; }
.card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .cover { position: relative; aspect-ratio: 4/3; display: grid; place-items: center; }
.card .cover .glyph { width: 60px; height: 60px; color: var(--ink); opacity: 0.55; }
.card .flags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.card .flag {
    font-size: 11px; font-weight: 800; padding: 4px 11px; border-radius: var(--r-pill);
    background: #fff; color: var(--ink); box-shadow: var(--shadow);
}
.card .flag.free { background: var(--leaf); color: #fff; }
.card .flag.deal { background: var(--coral); color: #fff; }
.card .body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.card .tags { display: flex; gap: 6px; margin-bottom: 8px; }
.card .tag { font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: var(--r-pill); }
.card .tag.grade { background: var(--sky); color: var(--ink); }
.card .tag.type { background: color-mix(in srgb, var(--grape) 14%, #fff); color: var(--grape); }
.card h3 { font-size: 17px; margin-bottom: 5px; }
.card .desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card .foot { display: flex; align-items: center; justify-content: space-between; }
.card .price { font-family: var(--display); font-size: 21px; color: var(--ink); }
.card .price .was { font-family: var(--body); font-size: 14px; color: var(--muted); text-decoration: line-through; margin-right: 7px; font-weight: 700; }
.card .price.free { color: var(--leaf); }
.card .add {
    display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
    background: var(--ink); color: #fff; border: none; font-family: var(--body);
    font-weight: 800; font-size: 14px; padding: 10px 18px; border-radius: var(--r-pill);
    transition: transform var(--t), background var(--t);
}
.card .add:hover { transform: scale(1.05); background: #0f2338; }
.card .add.get { background: var(--leaf); color: #fff; }

.empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--muted); }
.empty .icon { width: 56px; height: 56px; color: var(--line); margin: 0 auto 14px; }

/* ============================================================ HOW IT WORKS */
.how { background: var(--paper); }
.how .eyebrow { color: var(--coral); }
.how .section-head h2 { color: var(--ink); }
.how .section-head p { color: var(--muted); }
.steps { display: flex; align-items: flex-start; justify-content: center; }
.step { flex: 1 1 0; max-width: 300px; text-align: center; padding: 0 18px; }
.step-icon {
    width: 84px; height: 84px; border-radius: 50%; background: var(--sky);
    display: grid; place-items: center; margin: 0 auto 20px; position: relative;
}
.step-icon .icon { width: 32px; height: 32px; color: var(--ink); }
.step-icon .num {
    position: absolute; top: -2px; left: -2px; width: 27px; height: 27px; border-radius: 50%;
    background: var(--saffron); color: var(--ink); font-family: var(--display); font-weight: 800;
    font-size: 13px; display: grid; place-items: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step-line { flex: 0 0 90px; height: 0; border-top: 2px dashed var(--line); margin-top: 42px; }

@media (max-width: 780px) {
    .steps { flex-direction: column; align-items: center; gap: 36px; }
    .step-line { display: none; }
}

/* ============================================================ TESTIMONIALS */
.voices { background: var(--paper); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.voice .rays { color: var(--saffron); display: flex; gap: 2px; margin-bottom: 12px; }
.voice .rays .icon { width: 18px; height: 18px; }
.voice blockquote { font-size: 15.5px; font-style: italic; margin-bottom: 16px; }
.voice .who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.voice .who .av {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    background: var(--saffron-soft); font-family: var(--display); color: var(--ink); font-size: 17px;
}
.voice .who .n { font-weight: 800; font-size: 14px; }
.voice .who .r { font-size: 12.5px; color: var(--muted); }

/* ============================================================ CTA BAND */
.band { background: var(--ink); }
.band .inner { position: relative; text-align: center; padding: 72px 24px; color: #fff; overflow: hidden; }
.band-sun { position: absolute; top: -70px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(246,201,69,0.35) 0%, rgba(246,201,69,0) 70%); }
.band h2 { font-size: clamp(28px, 3.6vw, 42px); color: #fff; position: relative; }
.band p { font-size: 17px; margin: 14px 0 28px; color: rgba(255,255,255,0.75); position: relative; }
.band .btn-primary { background: var(--saffron); color: var(--ink); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }

/* ============================================================ FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 56px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; margin-bottom: 34px; }
.foot-brand .brand-word { color: #fff; }
.foot-brand p { font-size: 14.5px; margin: 14px 0; max-width: 280px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
    width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,0.08); color: #fff; transition: var(--t);
}
.foot-social a:hover { background: var(--saffron); color: var(--ink); }
footer h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
footer .col a { display: block; text-decoration: none; font-size: 14px; margin-bottom: 9px; color: rgba(255,255,255,0.72); transition: color var(--t); }
footer .col a:hover { color: var(--saffron); }
footer .col p { font-size: 14px; margin-bottom: 8px; }
.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; text-align: center;
    font-size: 13.5px; color: rgba(255,255,255,0.5);
}
.foot-bottom .kicker { color: var(--saffron); font-weight: 800; }

/* ============================================================ WHATSAPP FLOAT */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; }
.wa-float a {
    display: inline-flex; align-items: center; gap: 9px; background: #25D366; color: #fff;
    text-decoration: none; font-weight: 800; font-size: 14px; padding: 12px 20px;
    border-radius: var(--r-pill); box-shadow: 0 10px 26px rgba(37,211,102,0.4); transition: transform var(--t);
}
.wa-float a:hover { transform: scale(1.05); }
.wa-float .icon { width: 22px; height: 22px; }

/* ============================================================ CART DRAWER + MODALS */
.overlay {
    position: fixed; inset: 0; background: rgba(30,42,68,0.5); z-index: 300;
    display: flex; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.overlay.open { opacity: 1; pointer-events: auto; }
.overlay.right { justify-content: flex-end; }
.overlay.center { align-items: center; justify-content: center; padding: 20px; }

.drawer {
    width: min(420px, 100%); background: var(--paper); height: 100%;
    display: flex; flex-direction: column; transform: translateX(30px); transition: transform var(--t);
    box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}
.overlay.open .drawer { transform: translateX(0); }
.drawer header { position: static; background: none; backdrop-filter: none; border: none; padding: 22px 24px; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 22px; }
.icon-btn { background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; border-radius: 50%; }
.icon-btn:hover { background: var(--line); }
.icon-btn .icon { width: 22px; height: 22px; }

.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-line { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line .thumb { width: 54px; height: 54px; border-radius: var(--r-sm); display: grid; place-items: center; flex: none; }
.cart-line .thumb .icon { width: 28px; height: 28px; color: var(--ink); opacity: 0.6; }
.cart-line .meta { flex: 1; }
.cart-line .meta h4 { font-family: var(--body); font-weight: 800; font-size: 14.5px; }
.cart-line .meta span { font-size: 13px; color: var(--muted); }
.cart-line .price { font-family: var(--display); font-size: 16px; }
.cart-line .rm { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 12px; font-weight: 800; text-decoration: underline; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-empty .icon { width: 52px; height: 52px; color: var(--line); margin: 0 auto 14px; }
.cart-foot { border-top: 1px solid var(--line); padding: 20px 24px; background: #fff; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-total .l { font-weight: 800; }
.cart-total .v { font-family: var(--display); font-size: 26px; }
.cart-foot .btn-primary { width: 100%; justify-content: center; }

.modal {
    width: min(460px, 100%); background: var(--paper); border-radius: var(--r-lg);
    max-height: 92vh; overflow-y: auto; transform: scale(0.96); transition: transform var(--t);
    box-shadow: var(--shadow-lg);
}
.overlay.open .modal { transform: scale(1); }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.modal-head h2 { font-size: 22px; }
.modal-body { padding: 22px 24px; }
.pay-box { background: var(--sky); border-radius: var(--r-md); padding: 16px 18px; margin-bottom: 20px; }
.pay-box h4 { font-family: var(--body); font-weight: 800; font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.pay-box h4 .icon { color: var(--leaf); }
.pay-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 4px 0; }
.pay-row b { font-family: var(--display); }
.pay-note { font-size: 12.5px; color: var(--coral); margin-top: 10px; font-weight: 700; }

.send-money { margin-top: 12px; }
.send-money h4 { font-family: var(--body); font-weight: 800; font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.send-money h4 .icon { color: var(--leaf); }
.send-money ol { margin: 0; padding-left: 20px; }
.send-money li { font-size: 14px; margin-bottom: 6px; }
.send-money li b { font-family: var(--display); }
.send-money .mp-name { color: var(--muted); font-weight: 700; }

.field { margin-bottom: 15px; }
.field label { display: block; font-weight: 800; font-size: 13.5px; margin-bottom: 6px; }
.field input {
    width: 100%; font-family: var(--body); font-size: 15px; font-weight: 600; color: var(--ink);
    padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff;
}
.field input:focus { outline: none; border-color: var(--saffron); }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 5px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.secure { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.secure .icon { width: 14px; height: 14px; }

.success { text-align: center; padding: 40px 30px; }
.success .ring {
    width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
    background: color-mix(in srgb, var(--leaf) 16%, #fff); color: var(--leaf);
}
.success .ring .icon { width: 44px; height: 44px; }
.success h2 { font-size: 26px; color: var(--leaf); margin-bottom: 10px; }
.success p { color: var(--muted); font-size: 15px; }
.success .note { background: color-mix(in srgb, var(--leaf) 10%, #fff); border-radius: var(--r-md); padding: 14px; margin: 18px 0; font-weight: 700; color: var(--ink); }

/* toast */
.toast {
    position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px);
    background: var(--ink); color: #fff; font-weight: 800; font-size: 14px;
    padding: 13px 22px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 9px; opacity: 0; pointer-events: none;
    transition: opacity var(--t), transform var(--t); z-index: 400;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .icon { color: var(--saffron); }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
    nav.primary { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero .container { grid-template-columns: 1fr; }
    .hero-art { order: -1; max-width: 380px; margin: 0 auto; }
    .areas-grid, .voice-grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .level-grid { grid-template-columns: repeat(3, 1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    .areas-grid, .voice-grid { grid-template-columns: 1fr; }
    .level-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 26px; }
    .search-row { flex-direction: column; align-items: stretch; }
    .result-count { text-align: right; }
    .foot-grid { grid-template-columns: 1fr; }
    .brand-tagline { display: none; }
}

/* mobile nav sheet */
.mobile-nav {
    position: fixed; inset: 68px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px; z-index: 90; display: none; flex-direction: column; gap: 4px;
    box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { text-decoration: none; font-weight: 800; padding: 12px 0; border-bottom: 1px solid var(--line); }

/* ============================================================ FOOTER EXTRA */
.foot-tag { color: var(--saffron); font-weight: 800; font-size: 14px; margin: 8px 0 6px; }

/* ============================================================ BENEFITS */
.benefits { background: var(--paper); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; transition: transform var(--t), box-shadow var(--t); }
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit .b-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--sky); color: var(--ink); margin-bottom: 16px; }
.benefit .b-icon .icon { width: 24px; height: 24px; color: var(--ink); }
.benefit h3 { font-size: 17px; margin-bottom: 6px; }
.benefit p { font-size: 14.5px; color: var(--muted); }

/* ============================================================ FAQ */
.faq { background: var(--sky); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 16px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { width: 20px; height: 20px; color: var(--muted); transition: transform var(--t); flex: none; }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ============================================================ ABOUT */
.about-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.about-copy .eyebrow { display: block; margin-bottom: 12px; }
.about-copy h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.about-copy p { color: var(--text); font-size: 15.5px; margin-bottom: 14px; max-width: 520px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-stats { display: grid; gap: 16px; }
.about-stat {
    background: var(--card); border-radius: var(--r-lg); padding: 20px 24px;
    box-shadow: var(--shadow); text-align: center;
}
.about-stat b { display: block; font-family: var(--display); font-size: 24px; color: var(--ink); }
.about-stat span { font-size: 13px; color: var(--muted); font-weight: 700; }
@media (max-width: 780px) { .about-inner { grid-template-columns: 1fr; } }

/* ============================================================ CONTACT */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
    background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 30px 20px; text-decoration: none; color: inherit;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-card .icon { width: 28px; height: 28px; color: var(--saffron); margin-bottom: 4px; }
.contact-card h3 { font-size: 16px; }
.contact-card span { font-size: 14px; color: var(--muted); font-weight: 600; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

@media (max-width: 980px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }
.foot-bottom .dev-credit { margin-top: 6px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.foot-bottom .dev-credit b { color: var(--saffron); }
