/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal: #0891b2;
  --teal-dark: #0e7490;
  --teal-deeper: #164e63;
  --teal-light: #ecfeff;
  --teal-mid: #cffafe;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-soft: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 56px rgba(0,0,0,.12);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.16);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TOPBAR ===== */
.topbar { background: var(--teal-deeper); color: #e0f2fe; text-align: center; padding: .55rem 1.5rem; font-size: .82rem; font-weight: 500; }
.topbar strong { color: #fff; }
.topbar a { color: #7dd3fc; font-weight: 700; margin-left: .3rem; }
.topbar a:hover { color: #fff; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--teal); color: #fff; border: 2px solid var(--teal);
  padding: .65rem 1.4rem; border-radius: 10px; font-weight: 700; font-size: .92rem;
  cursor: pointer; transition: all .2s; white-space: nowrap; font-family: inherit;
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(8,145,178,.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: var(--teal); border: 2px solid var(--teal);
  padding: .65rem 1.4rem; border-radius: 10px; font-weight: 700; font-size: .92rem;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.btn-outline:hover { background: var(--teal-light); }
.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: .5rem; font-size: 1.1rem; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.logo-icon { width: 30px; height: 30px; background: linear-gradient(135deg, var(--teal), var(--teal-deeper)); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sm-icon { width: 24px; height: 24px; border-radius: 6px; }
.xs-icon { width: 20px; height: 20px; border-radius: 5px; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: .88rem; padding: .45rem .75rem; border-radius: 7px; transition: all .18s; }
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-login { color: var(--text) !important; font-weight: 600 !important; }
.nav-divider { width: 1px; height: 22px; background: var(--border); margin: 0 .5rem; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }

/* ===== HERO ===== */
.hero { max-width: 1160px; margin: 0 auto; padding: 5rem 2rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--teal-light); color: var(--teal-dark); border: 1px solid var(--teal-mid); padding: .35rem 1rem; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .01em; margin-bottom: 1.4rem; }
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.1; letter-spacing: -.035em; margin-bottom: 1.3rem; color: var(--text); }
.hero-em { background: linear-gradient(135deg, var(--teal), #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 2.2rem; max-width: 480px; }

/* Domain box */
.hero-domain { margin-bottom: 2rem; }
.hd-inner { display: flex; align-items: center; gap: .5rem; background: #fff; border: 2px solid var(--border); border-radius: 14px; padding: .55rem .55rem .55rem 1rem; box-shadow: 0 4px 24px rgba(0,0,0,.07); transition: border-color .2s, box-shadow .2s; }
.hd-inner:focus-within { border-color: var(--teal); box-shadow: 0 4px 24px rgba(8,145,178,.15); }
.hd-globe { font-size: 1rem; flex-shrink: 0; }
.hd-input { flex: 1; border: none; outline: none; font-size: .95rem; font-weight: 700; color: var(--text); background: transparent; min-width: 0; font-family: inherit; }
.hd-input::placeholder { color: #94a3b8; font-weight: 400; }
.hd-suffix { color: var(--text-muted); font-size: .85rem; white-space: nowrap; flex-shrink: 0; }
.hd-btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--teal); color: #fff; border: none; border-radius: 10px; padding: .6rem 1.1rem; font-size: .88rem; font-weight: 700; cursor: pointer; flex-shrink: 0; transition: all .2s; font-family: inherit; }
.hd-btn:hover { background: var(--teal-dark); transform: scale(1.03); }
.hd-hint { font-size: .78rem; color: var(--text-soft); margin-top: .65rem; padding-left: .25rem; }

/* Trust row */
.hero-trust { display: flex; align-items: center; gap: 1rem; }
.trust-avatars { display: flex; }
.av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 800; color: #fff; margin-left: -8px; }
.av:first-child { margin-left: 0; }
.av.more { background: var(--teal); font-size: .7rem; }
.trust-text { display: flex; flex-direction: column; font-size: .8rem; color: var(--text-muted); }
.trust-stars { color: #f59e0b; font-size: .85rem; letter-spacing: .05em; }

/* ===== HERO VISUAL ===== */
.hero-right { position: relative; }
.hero-visual-wrap { position: relative; }
.browser-window { background: #fff; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow-xl); overflow: hidden; }
.bw-bar { background: #f8fafc; border-bottom: 1px solid var(--border); padding: .6rem 1rem; display: flex; align-items: center; gap: .5rem; }
.bw-dots { display: flex; gap: 5px; }
.bwd { width: 10px; height: 10px; border-radius: 50%; }
.bwd.r { background: #ef4444; }
.bwd.y { background: #f59e0b; }
.bwd.g { background: #10b981; }
.bw-url { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: .2rem .8rem; font-size: .72rem; color: var(--text-muted); margin: 0 .5rem; display: flex; align-items: center; gap: .35rem; font-family: monospace; }
.url-lock { font-size: .7rem; }
.bw-actions { display: flex; gap: 6px; }
.bwa { width: 18px; height: 14px; background: #e2e8f0; border-radius: 3px; }
.bw-content { padding: .9rem; }
.bwc-nav { display: flex; align-items: center; gap: .5rem; margin-bottom: .7rem; background: #f8fafc; border-radius: 6px; padding: .4rem .7rem; }
.bwc-logo { width: 40px; height: 8px; background: var(--teal); border-radius: 3px; }
.bwc-nav-links { display: flex; gap: .4rem; flex: 1; }
.bwc-nav-links div { width: 24px; height: 6px; background: #e2e8f0; border-radius: 3px; }
.bwc-nav-cta { width: 36px; height: 18px; background: var(--teal); border-radius: 4px; }
.bwc-hero { background: linear-gradient(135deg, var(--teal-light), #f0fdff); border-radius: 8px; padding: 1rem; margin-bottom: .7rem; }
.bwc-h1 { height: 14px; background: linear-gradient(90deg, var(--teal-mid), #a5f3fc); border-radius: 4px; width: 72%; margin-bottom: .5rem; }
.bwc-h2 { height: 10px; background: #e0f2fe; border-radius: 4px; width: 55%; margin-bottom: .4rem; }
.bwc-h3 { height: 8px; background: #e0f2fe; border-radius: 4px; width: 40%; margin-bottom: .8rem; }
.bwc-btns { display: flex; gap: .4rem; }
.bwc-btn { height: 22px; border-radius: 5px; }
.bwc-btn.primary-btn { width: 65px; background: var(--teal); }
.bwc-btn.outline-btn { width: 55px; background: transparent; border: 1.5px solid var(--teal); }
.bwc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.bwc-card { background: #f8fafc; border-radius: 6px; padding: .5rem; border: 1px solid var(--border); }
.bwc-card-icon { width: 18px; height: 18px; background: var(--teal-mid); border-radius: 4px; margin-bottom: .35rem; }
.bwc-card-lines div { height: 5px; background: #e2e8f0; border-radius: 3px; margin-bottom: .25rem; }
.bwc-card-lines div:first-child { width: 80%; }
.bwc-card-lines div:last-child { width: 55%; }

/* Floating chips */
.float-chip { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: .6rem .9rem; display: flex; align-items: center; gap: .6rem; box-shadow: 0 8px 24px rgba(0,0,0,.1); font-size: .78rem; white-space: nowrap; animation: chipFloat 4s ease-in-out infinite; }
.chip-1 { bottom: -12px; left: -18px; animation-delay: 0s; }
.chip-2 { top: -12px; right: -18px; animation-delay: 1.5s; }
.chip-3 { bottom: 60px; right: -22px; animation-delay: 3s; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.chip-icon { font-size: 1.1rem; }
.chip-title { font-weight: 700; font-size: .78rem; color: var(--text); }
.chip-sub { font-size: .7rem; color: var(--text-soft); }
.chip-stat-val { font-size: 1.3rem; font-weight: 900; color: var(--teal); }
.chip-stat-label { font-size: .7rem; color: var(--text-muted); }
.chip-trend { font-size: .72rem; font-weight: 700; color: #10b981; background: #f0fdf4; padding: .1rem .35rem; border-radius: 4px; }

/* ===== LOGOS ===== */
.logos-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); padding: 1.8rem 2rem; }
.logos-label { text-align: center; font-size: .78rem; font-weight: 600; color: var(--text-soft); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.2rem; }
.logos-row { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.logo-item { color: var(--text-soft); font-size: .85rem; font-weight: 700; letter-spacing: -.01em; opacity: .7; transition: opacity .2s; }
.logo-item:hover { opacity: 1; }

/* ===== CONTAINER ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ===== SECTION LABELS ===== */
.section-label { display: inline-flex; align-items: center; background: var(--teal-light); color: var(--teal-dark); padding: .3rem .9rem; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .8rem; border: 1px solid var(--teal-mid); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.15; margin-bottom: 3rem; }
.accent { color: var(--teal); }

/* ===== HOW ===== */
.how { padding: 6rem 0; background: var(--bg-alt); text-align: center; }
.how-grid { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 880px; margin: 0 auto; }
.how-step { flex: 1; padding: 0 1.5rem; }
.how-step-num { font-size: .68rem; font-weight: 800; color: var(--teal); letter-spacing: .15em; text-transform: uppercase; margin-bottom: .6rem; }
.how-step-icon { font-size: 2.4rem; margin-bottom: .8rem; }
.how-step h3 { font-weight: 800; font-size: 1rem; margin-bottom: .5rem; }
.how-step p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }
.how-arrow { display: flex; align-items: center; padding-top: 3.8rem; flex-shrink: 0; color: var(--teal-mid); }

/* ===== FEATURES ===== */
.features { padding: 6rem 0; }
.feat-bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1.2rem; }
.feat-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all .22s; position: relative; overflow: hidden; }
.feat-card::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius); background: linear-gradient(135deg, var(--teal-light) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.feat-card:hover { box-shadow: var(--shadow-lg); border-color: #a5f3fc; transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-main { grid-column: span 2; }
.feat-africa { grid-column: span 2; }
.feat-icon-wrap { width: 44px; height: 44px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem; position: relative; z-index: 1; border: 1px solid var(--teal-mid); }
.feat-card h3 { font-weight: 800; font-size: 1rem; margin-bottom: .5rem; position: relative; z-index: 1; }
.feat-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.65; position: relative; z-index: 1; }
.feat-speed { margin-top: 1.4rem; display: flex; flex-direction: column; gap: .6rem; position: relative; z-index: 1; }
.fs-row { display: flex; align-items: center; gap: .8rem; }
.fs-label { width: 90px; font-size: .78rem; color: var(--text-muted); text-align: right; flex-shrink: 0; }
.fs-track { flex: 1; height: 8px; background: #f1f5f9; border-radius: 4px; overflow: hidden; }
.fs-bar { height: 100%; border-radius: 4px; transition: width 1s ease; }
.fs-time { width: 50px; font-size: .75rem; font-weight: 700; color: var(--text); flex-shrink: 0; }
.feat-devices { display: flex; align-items: flex-end; gap: .7rem; margin-top: 1.2rem; position: relative; z-index: 1; }
.device-desktop { width: 72px; height: 48px; background: #e0f2fe; border-radius: 5px; border: 2px solid var(--teal-mid); }
.device-tablet { width: 46px; height: 58px; background: #e0f2fe; border-radius: 5px; border: 2px solid var(--teal-mid); }
.device-mobile { width: 28px; height: 52px; background: #e0f2fe; border-radius: 4px; border: 2px solid var(--teal-mid); }
.africa-flags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; font-size: 1.4rem; position: relative; z-index: 1; }

/* ===== TEMPLATES ===== */
.templates-section { padding: 6rem 0; background: var(--bg-alt); }
.tpl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.tpl-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: all .25s; }
.tpl-card:hover { border-color: var(--teal); box-shadow: 0 12px 40px rgba(8,145,178,.15); transform: translateY(-4px); }
.tpl-preview { height: 180px; display: flex; flex-direction: column; overflow: hidden; }
.biz-preview { background: #f0f9ff; }
.rest-preview { background: #1a0f0a; }
.port-preview { background: #faf5ff; }
.shop-preview { background: #f0fdf4; }
/* topbar */
.tp-topbar { background: #f1f5f9; display: flex; align-items: center; gap: .35rem; padding: .3rem .5rem; border-bottom: 1px solid #e2e8f0; }
.tp-topbar.dark-tb { background: #111; border-bottom-color: #333; }
.tp-topbar.purple-tb { background: #2e1065; border-bottom-color: #4c1d95; }
.tp-dots { display: flex; gap: 3px; }
.tp-dots i { width: 6px; height: 6px; border-radius: 50%; background: #94a3b8; font-style: normal; display: block; }
.tp-url { flex: 1; background: #fff; border-radius: 3px; padding: .1rem .5rem; font-size: .55rem; color: #94a3b8; margin: 0 .3rem; font-family: monospace; }
.tp-url.light-url { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
/* nav strip */
.tp-nav { display: flex; align-items: center; gap: .3rem; padding: .3rem .5rem; background: rgba(255,255,255,.7); }
.tp-nav.dark-nav { background: rgba(0,0,0,.4); }
.tp-nav.purple-nav { background: rgba(76,29,149,.4); }
.tp-brand { width: 24px; height: 6px; background: var(--teal); border-radius: 2px; }
.tp-brand.light-brand { background: rgba(255,255,255,.6); }
.tp-links { display: flex; gap: .25rem; flex: 1; }
.tp-links div { width: 14px; height: 4px; background: rgba(0,0,0,.15); border-radius: 2px; }
.tp-links .light-l { background: rgba(255,255,255,.3); }
.tp-cta { width: 24px; height: 10px; border-radius: 3px; }
.blue-bg { background: var(--teal); }
.warm-bg { background: #d97706; }
.purple-bg { background: #7c3aed; }
.green-bg { background: #059669; }
/* hero strip */
.tp-hero { flex: 1; display: flex; gap: .5rem; padding: .5rem; align-items: center; position: relative; }
.biz-hero { background: linear-gradient(135deg, #e0f2fe 0%, #f0fdff 100%); }
.rest-hero { background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%23321"/></svg>'); background-size: cover; }
.tp-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.over-content { position: relative; z-index: 1; }
.port-hero { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }
.shop-hero { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }
.tp-content { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.tp-h1 { height: 8px; width: 70%; background: rgba(15,23,42,.2); border-radius: 3px; }
.tp-h1.light-line { background: rgba(255,255,255,.7); }
.tp-h2 { height: 6px; width: 50%; background: rgba(15,23,42,.15); border-radius: 3px; }
.tp-h2.light-line { background: rgba(255,255,255,.5); }
.tp-h3 { height: 5px; width: 40%; background: rgba(15,23,42,.1); border-radius: 3px; }
.tp-btnrow { display: flex; gap: .3rem; margin-top: .3rem; }
.tp-btn { height: 10px; width: 30px; border-radius: 3px; }
.outlined-blue { background: transparent; border: 1px solid var(--teal); }
.outlined-purple { background: transparent; border: 1px solid rgba(255,255,255,.5); }
.tp-img-placeholder { width: 52px; height: 44px; border-radius: 5px; flex-shrink: 0; }
.blue-img { background: linear-gradient(135deg, #bae6fd, #7dd3fc); }
.green-img { background: linear-gradient(135deg, #bbf7d0, #6ee7b7); }
/* cards row */
.tp-cards-row { display: flex; gap: .3rem; padding: .4rem .5rem; background: rgba(255,255,255,.5); }
.tp-cards-row.dark-cards { background: rgba(0,0,0,.2); }
.tp-feat-card { flex: 1; background: #fff; border-radius: 4px; padding: .3rem; display: flex; gap: .25rem; align-items: flex-start; }
.tp-feat-card.dark-card { background: rgba(255,255,255,.08); }
.tp-feat-card.purple-feat { background: rgba(124,58,237,.15); border-radius: 3px; }
.tp-icon { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; margin-top: 1px; }
.blue-icon { background: var(--teal); }
.warm-icon { background: #d97706; }
.purple-icon { background: #7c3aed; }
.tp-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.tp-text div { height: 3px; background: rgba(0,0,0,.12); border-radius: 2px; }
.tp-text div:first-child { width: 80%; }
.tp-text div:last-child { width: 55%; }
.tp-text .light-l { background: rgba(255,255,255,.3); }
.tp-img-sq { height: 32px; border-radius: 3px; flex: 1; }
.purple-sq { background: linear-gradient(135deg, #c4b5fd, #a78bfa); }
.tp-prod-img { height: 28px; background: #f1f5f9; border-radius: 3px; }
.shop-prod { flex-direction: column; gap: .25rem; }
/* template footer */
.tpl-footer { padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); }
.tpl-info { display: flex; align-items: center; gap: .7rem; }
.tpl-emoji { font-size: 1.4rem; }
.tpl-info strong { display: block; font-weight: 800; font-size: .9rem; }
.tpl-info span { color: var(--text-muted); font-size: .75rem; display: block; }
.tpl-use-btn { background: var(--teal-light); color: var(--teal-dark); border: 1px solid var(--teal-mid); border-radius: 8px; padding: .4rem .9rem; font-size: .8rem; font-weight: 700; cursor: pointer; transition: all .2s; font-family: inherit; white-space: nowrap; }
.tpl-use-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 6rem 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.testi-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.testi-card.featured-testi { background: linear-gradient(135deg, var(--teal), var(--teal-deeper)); color: #fff; border-color: transparent; box-shadow: 0 16px 48px rgba(8,145,178,.3); }
.testi-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .05em; }
.featured-testi .testi-stars { color: #fde68a; }
.testi-card p { font-size: .9rem; line-height: 1.75; color: var(--text-muted); font-style: italic; flex: 1; }
.featured-testi p { color: rgba(255,255,255,.85); }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi-author strong { display: block; font-weight: 700; font-size: .88rem; }
.testi-author span { color: var(--text-soft); font-size: .78rem; display: block; }
.featured-testi .testi-author strong { color: #fff; }
.featured-testi .testi-author span { color: rgba(255,255,255,.65); }

/* ===== PRICING ===== */
.pricing { padding: 6rem 0; background: var(--bg-alt); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.price-card { background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.price-card.price-featured { background: linear-gradient(160deg, var(--teal-deeper), var(--teal-dark)); color: #fff; border-color: transparent; box-shadow: 0 20px 60px rgba(8,145,178,.35); transform: scale(1.03); }
.pc-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #f59e0b; color: #7c2d00; font-size: .72rem; font-weight: 800; padding: .3rem .9rem; border-radius: 999px; white-space: nowrap; box-shadow: 0 4px 12px rgba(245,158,11,.3); }
.pc-header { margin-bottom: 1.6rem; }
.pc-name { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .4rem; }
.price-featured .pc-name { color: rgba(255,255,255,.6); }
.pc-price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.04em; line-height: 1; }
.pc-price span { font-size: .9rem; font-weight: 500; opacity: .6; }
.pc-period { font-size: .78rem; color: var(--text-muted); margin-top: .3rem; }
.price-featured .pc-period { color: rgba(255,255,255,.55); }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.pc-features li { display: flex; align-items: center; gap: .55rem; font-size: .88rem; }
.pc-features li.no { color: var(--text-soft); }
.pc-btn { width: 100%; padding: .85rem; border-radius: 10px; font-size: .92rem; font-weight: 700; cursor: pointer; transition: all .2s; font-family: inherit; }
.pc-btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.pc-btn-outline:hover { background: var(--teal-light); }
.pc-btn-white { background: #fff; color: var(--teal-deeper); border: 2px solid #fff; }
.pc-btn-white:hover { background: #f0fdff; }
.price-note { text-align: center; font-size: .84rem; color: var(--text-muted); margin-top: 2rem; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 7rem 2rem; background: var(--teal-deeper); position: relative; overflow: hidden; text-align: center; }
.fc-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(8,145,178,.4) 0%, transparent 70%); pointer-events: none; }
.fc-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.fc-content h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: .8rem; }
.fc-content p { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 2rem; }
.fc-domain { margin-bottom: 1.5rem; }
.fc-domain .hd-inner { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.fc-domain .hd-inner:focus-within { border-color: rgba(255,255,255,.5); }
.light-input { color: #fff !important; }
.light-input::placeholder { color: rgba(255,255,255,.45) !important; }
.light-suffix { color: rgba(255,255,255,.55) !important; }
.fc-trust { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.fc-trust span { font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: #060d19; }
.footer-top { max-width: 1160px; margin: 0 auto; padding: 4rem 2rem 3rem; display: grid; grid-template-columns: 280px 1fr; gap: 4rem; }
.footer-brand .logo { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.footer-brand p { color: #64748b; font-size: .88rem; line-height: 1.65; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-socials a { width: 34px; height: 34px; background: #1e293b; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; transition: background .2s; }
.footer-socials a:hover { background: var(--teal-dark); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h5 { color: #e2e8f0; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem; }
.footer-col a { display: block; color: #64748b; font-size: .85rem; margin-bottom: .55rem; transition: color .2s; }
.footer-col a:hover { color: #e2e8f0; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 1.4rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: #475569; max-width: 1160px; margin: 0 auto; }

/* ===== BUILDER OVERLAY ===== */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.overlay.hidden { display: none; }
.builder-modal { background: #fff; border-radius: 20px; width: 100%; max-width: 760px; max-height: 92vh; display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 32px 96px rgba(0,0,0,.25); position: relative; }
.close-btn { position: absolute; top: 1rem; right: 1rem; background: var(--bg-alt); border: 1px solid var(--border); width: 32px; height: 32px; border-radius: 50%; font-size: .9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all .18s; color: var(--text-muted); }
.close-btn:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.builder-header { padding: 1.4rem 2rem .9rem; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.bh-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.bh-logo { display: flex; align-items: center; gap: .4rem; font-weight: 800; font-size: .95rem; }
.bh-badge { background: var(--teal-light); color: var(--teal-dark); font-size: .72rem; font-weight: 700; padding: .2rem .7rem; border-radius: 999px; border: 1px solid var(--teal-mid); }
.progress-bar { height: 4px; background: #f1f5f9; border-radius: 999px; overflow: hidden; margin-bottom: .7rem; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--teal), #06b6d4); border-radius: 999px; transition: width .4s cubic-bezier(.4,0,.2,1); }
.step-labels { display: flex; }
.sl { flex: 1; text-align: center; font-size: .7rem; color: var(--text-soft); font-weight: 500; padding: .1rem 0; }
.sl.active { color: var(--teal); font-weight: 700; }
.sl.done { color: #10b981; font-weight: 700; }
.builder-body { flex: 1; overflow-y: auto; padding: 1.8rem 2rem; scroll-behavior: smooth; }
.builder-step { animation: stepIn .25s cubic-bezier(.4,0,.2,1); }
.builder-step.hidden { display: none; }
@keyframes stepIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.step-intro { margin-bottom: 1.4rem; }
.step-intro h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .25rem; }
.step-intro p { font-size: .85rem; color: var(--text-muted); }
.builder-footer { padding: 1rem 2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.step-counter { font-size: .8rem; color: var(--text-soft); font-weight: 500; }

/* Builder template grid */
.tpl-select-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.tpl-option { border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all .2s; display: flex; flex-direction: column; }
.tpl-option:hover, .tpl-option.selected { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(8,145,178,.1); }
.tpl-option input { display: none; }
.tpl-mini { height: 80px; display: flex; flex-direction: column; padding: .35rem; gap: .2rem; }
.biz-mini { background: linear-gradient(135deg, #e0f2fe, #f0fdff); }
.rest-mini { background: linear-gradient(135deg, #1a0f0a, #3d1a08); }
.port-mini { background: linear-gradient(135deg, #2e1065, #4c1d95); }
.shop-mini { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.tm-bar { height: 10px; border-radius: 3px; background: rgba(255,255,255,.3); }
.tm-bar.dark-tmbar { background: rgba(0,0,0,.3); }
.tm-bar.purple-tmbar { background: rgba(124,58,237,.3); }
.tm-hero { flex: 1; border-radius: 3px; }
.blue-h { background: rgba(8,145,178,.15); }
.rest-h { background: rgba(0,0,0,.35); }
.purple-h { background: rgba(124,58,237,.3); }
.green-h { background: rgba(5,150,105,.15); }
.tm-cards { display: flex; gap: 3px; }
.tm-cards div { flex: 1; height: 12px; background: rgba(255,255,255,.35); border-radius: 2px; }
.dark-tmcards div { background: rgba(255,255,255,.12); }
.tpl-opt-label { padding: .5rem .8rem; font-weight: 700; font-size: .82rem; text-align: center; }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--text); }
.req { color: #dc2626; }
.form-group input, .form-group textarea { border: 2px solid var(--border); border-radius: 9px; padding: .65rem .9rem; font-size: .92rem; font-family: inherit; transition: border-color .2s, box-shadow .2s; background: #fff; color: var(--text); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,145,178,.12); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Style step */
.style-block { margin-bottom: 1.6rem; }
.style-label { display: block; font-size: .8rem; font-weight: 700; margin-bottom: .7rem; }
.swatches-row { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: .8rem; }
.sw { width: 36px; height: 36px; border-radius: 9px; cursor: pointer; transition: transform .18s, box-shadow .18s; border: 3px solid transparent; }
.sw:hover { transform: scale(1.12); }
.sw.active { border-color: #fff; box-shadow: 0 0 0 3px var(--teal); }
.sw-custom { position: relative; background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red) !important; display: flex; align-items: center; justify-content: center; }
.sw-custom input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; border: none; }
.sw-custom span { color: #fff; font-weight: 900; font-size: .95rem; pointer-events: none; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.color-selected { display: flex; align-items: center; gap: .6rem; font-size: .8rem; }
.cs-chip { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--border); }
.cs-label { color: var(--text-soft); }
.font-grid { display: flex; flex-direction: column; gap: .6rem; }
.font-opt { display: flex; align-items: center; gap: .7rem; font-size: .9rem; cursor: pointer; padding: .6rem .8rem; border: 2px solid var(--border); border-radius: 9px; transition: border-color .18s; }
.font-opt:has(input:checked) { border-color: var(--teal); background: var(--teal-light); }
.font-opt input { accent-color: var(--teal); flex-shrink: 0; }
.logo-drop { border: 2px dashed var(--border); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s; }
.logo-drop:hover { border-color: var(--teal); background: var(--teal-light); }
.logo-drop-inner { display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: 1.5rem; }
.logo-drop-icon { font-size: 1.8rem; }
.logo-drop-inner span:not(.logo-drop-icon) { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.logo-drop-hint { font-size: .75rem !important; color: var(--text-soft) !important; }

/* Pages step */
.pages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .55rem; }
.page-tile { display: flex; align-items: center; gap: .6rem; padding: .75rem 1rem; border: 2px solid var(--border); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: .88rem; transition: all .18s; }
.page-tile input { accent-color: var(--teal); }
.page-tile:has(input:checked):not(.locked) { border-color: var(--teal); background: var(--teal-light); }
.page-tile.locked { border-color: #10b981; background: #f0fdf4; cursor: default; }
.locked-badge { font-size: .68rem; background: #dcfce7; color: #166534; padding: .12rem .45rem; border-radius: 999px; margin-left: auto; font-weight: 700; }

/* Preview */
.preview-wrap { margin-bottom: 1.5rem; }
.preview-device-tabs { display: flex; gap: .4rem; margin-bottom: .7rem; }
.pdt { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 8px; padding: .35rem .9rem; cursor: pointer; font-size: .82rem; font-weight: 700; color: var(--text-muted); font-family: inherit; transition: all .18s; }
.pdt.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.preview-frame-box { border: 2px solid var(--border); border-radius: 12px; overflow: hidden; height: 300px; transition: width .3s; }
.preview-frame { width: 100%; height: 100%; border: none; }
.dl-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; max-width: 680px; }
  .hero-right { display: none; }
  .feat-bento { grid-template-columns: repeat(2, 1fr); }
  .feat-main, .feat-africa { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card.featured-testi { order: -1; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.price-featured { transform: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 64px; left: 0; right: 0; background: #fff; padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); gap: .5rem; box-shadow: var(--shadow-lg); z-index: 199; }
  .burger { display: flex; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .how-grid { flex-direction: column; align-items: center; }
  .how-arrow { transform: rotate(90deg); }
  .feat-bento { grid-template-columns: 1fr; }
  .feat-main, .feat-africa { grid-column: span 1; }
  .tpl-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .logos-row { gap: 1.5rem; }
  .fc-trust { flex-direction: column; gap: .5rem; }
  .builder-body { padding: 1.2rem 1.2rem; }
  .builder-header { padding: 1rem 1.2rem .7rem; }
  .builder-footer { padding: .8rem 1.2rem; }
  .tpl-select-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .tpl-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
