:root {
  --terracotta: #5c2e1f;
  --terracotta-deep: #3a1c12;
  --sand: #c9a36a;
  --gold: #c4a035;
  --green: #1f4d3a;
  --cream: #f3ead8;
  --card: #fffdf8;
  --ink: #2a1c14;
  --muted: #6b5344;
  --brown-btn: #6b3a22;
  --line: #e4d4bc;
  --pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='%23c4a06a' fill-opacity='.14' d='M10 10h14v14H10zm30 0h14v14H40zm30 0h14v14H70zm30 0h14v14h-14zM0 40h14v14H0zm30 0h14v14H30zm30 0h14v14H60zm30 0h14v14H90zM10 70h14v14H10zm30 0h14v14H40zm30 0h14v14H70zm30 0h14v14h-14zM0 100h14v14H0zm30 0h14v14H30zm30 0h14v14H60zm30 0h14v14H90z'/%3E%3Cpath fill='none' stroke='%23c4a06a' stroke-opacity='.12' d='M0 60h120M60 0v120'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

.wrap { max-width: 1080px; margin: 0 auto; }
.wrap.narrow { max-width: 760px; }
.lead { text-align: center; color: var(--muted); max-width: 560px; margin: -18px auto 28px; }
.pill {
  display: inline-block;
  background: #e8d7b0;
  color: var(--terracotta);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pill.light { background: rgba(255,255,255,.18); color: #fff; }
.tiny { font-size: 13px; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 32px;
  background: #f7f0e4;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--green); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand .brand-lockup { width: auto; height: 52px; }
.brand span { font-size: 11px; font-weight: 800; letter-spacing: .04em; line-height: 1.25; text-transform: uppercase; }

.top nav { display: flex; gap: 20px; font-weight: 600; flex-wrap: wrap; justify-content: center; }
.top nav a { text-decoration: none; color: var(--ink); }
.top nav a.active { color: var(--brown-btn); }

.top-actions { display: flex; align-items: center; gap: 10px; }
.top-actions .btn {
  height: 38px;
  padding: 0 14px;
  font-size: 13px;
}
.lang-slot {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin-left: 2px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.lang-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 88px;
  height: 32px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(42, 28, 20, 0.06);
  box-shadow: inset 0 0 0 1px rgba(42, 28, 20, 0.1);
}
.lang-switch-thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: var(--brown-btn);
  box-shadow: 0 1px 2px rgba(42, 28, 20, 0.28);
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.lang-switch[data-lang="en"] .lang-switch-thumb {
  transform: translateX(100%);
}
.lang-switch button {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0;
  cursor: pointer;
  border-radius: 999px;
  user-select: none;
}
.lang-switch button[aria-pressed="true"] {
  color: #fff;
}
.lang-switch button[aria-pressed="false"]:hover {
  color: var(--ink);
}
.lang-switch button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .lang-switch-thumb { transition: none; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brown-btn); color: #fff; text-decoration: none;
  border: 0; border-radius: 10px; padding: 10px 16px; font-weight: 700; cursor: pointer;
  font-family: inherit;
}
.btn.ghost {
  background: transparent;
  color: var(--brown-btn);
  border: 1px solid var(--line);
}
.btn.ghost:hover { border-color: var(--gold); background: #fff; }

.stage {
  position: relative;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    #3a1c12 0%,
    #4a2416 36%,
    #8a4a24 52%,
    #c9a24a 62%,
    #d8b45c 82%,
    #c49a42 100%
  );
  overflow: hidden;
}
.stage::before {
  content: "";
  position: absolute;
  inset: 0 0 48% 0;
  background: var(--pattern);
  pointer-events: none;
  z-index: 0;
}
.stage > * { position: relative; z-index: 1; }

.hero {
  background: transparent;
  color: #fff;
  text-align: center;
  padding: 72px 20px 28px;
}
.eyebrow { letter-spacing: .08em; text-transform: uppercase; font-size: 12px; opacity: .8; margin: 0 0 10px; }
.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.hero p { margin: 0 auto 28px; max-width: 620px; opacity: .92; }

.search {
  display: flex; max-width: 860px; margin: 0 auto; background: #fff; border-radius: 14px; overflow: hidden; text-align: left;
}
.search label { flex: 1; padding: 10px 14px; border-right: 1px solid #eee; color: #888; font-size: 12px; display: flex; flex-direction: column; gap: 4px; }
.search input, .search select { border: 0; outline: 0; font: inherit; color: var(--ink); background: transparent; }
.search .btn { border-radius: 0; padding: 0 22px; }

.trust-row {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  list-style: none; padding: 22px 0 0; margin: 0; font-size: 14px; opacity: .9;
}

.stats { background: var(--terracotta-deep); color: #f3ead8; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 28px 24px; text-align: center;
}
.stats strong { display: block; font-size: 28px; font-family: "Oswald", sans-serif; }
.stats span { font-size: 13px; opacity: .85; }

.section { padding: 56px 24px; }
.section h2, .apps h2, .newsletter h2 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 12px 0 36px;
}
.section .pill { display: block; width: fit-content; margin: 0 auto; }

.cats-band,
.feat-band {
  margin: 0;
  background: transparent;
}
.cats-band { padding: 8px 20px 0; }
.feat-band { padding: 36px 20px 56px; }
.cats-band h2,
.feat-band h2 {
  text-align: center;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 28px;
  text-shadow: 0 1px 0 rgba(0,0,0,.28);
}

.cats {
  display: grid;
  grid-template-columns: repeat(8, minmax(80px, 1fr));
  gap: 8px;
  max-width: 1080px;
  margin: 0 auto;
}
.cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0 0 10px;
  position: relative;
}
.cat-btn::after {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 56px;
  height: 10px;
  border-radius: 50%;
  background: rgba(40, 18, 8, .35);
  filter: blur(2px);
}
.cat-btn:hover { transform: translateY(-6px); }
.cat-btn { transition: transform .18s ease; }
.cat-disc {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff8ea;
  border: 5px solid #c9a36a;
  box-shadow:
    0 2px 0 #8b6a2e,
    0 10px 16px rgba(26, 12, 6, .28);
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.cat-disc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-base {
  margin-top: -14px;
  width: 72px;
  min-height: 34px;
  padding: 16px 6px 8px;
  background:
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(201, 162, 74, .22) 5px 6px),
    linear-gradient(180deg, #5a3824 0%, #2a160e 100%);
  border-radius: 6px 6px 40% 40%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  box-shadow:
    0 10px 0 #1a1008,
    0 14px 10px rgba(0,0,0,.22);
  position: relative;
  z-index: 1;
}

.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.prov {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px 10px 10px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transition: transform .15s ease;
}
.prov:hover { transform: translateY(-3px); }
.prov img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 12px;
  flex: 0 0 108px;
  background: #2a1c14;
}
.prov strong { display: block; font-size: 16px; }
.prov .spec { display: block; color: var(--muted); font-size: 13px; margin: 2px 0 4px; }
.prov .stars { color: #e0b000; letter-spacing: 1px; font-size: 13px; }
.prov .loc { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; margin: 4px 0; }
.prov .loc i {
  width: 10px; height: 10px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: #c0392b; display: inline-block;
}
.prov .price { font-size: 13px; }
.prov .price b { font-size: 14px; }

.split-wrap { background: var(--cream); }
.split { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.split h2 { text-align: left; }
.step { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.step img { width: 56px; height: 56px; flex: 0 0 56px; }
.step p { margin: 4px 0 0; }
.muted { color: var(--muted); }
.quote {
  background: #fff; border-radius: 18px; padding: 16px 18px; margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.quote p { margin: 0; }
.quote-foot { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.quote-foot img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

.events-wrap { background: #efe4cf; }
.events { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.event {
  display: flex; gap: 16px; background: var(--card); border-radius: 16px; padding: 16px;
  border: 1px solid var(--line);
}
.event-date {
  width: 64px; flex: 0 0 64px; text-align: center; background: var(--terracotta-deep); color: #fff;
  border-radius: 12px; padding: 10px 6px; font-weight: 700; text-transform: uppercase; font-size: 12px;
}
.event-date span { display: block; font-size: 26px; font-family: "Oswald", sans-serif; }
.event p { margin: 6px 0; color: var(--muted); }
.tag { font-size: 12px; font-weight: 700; color: var(--green); }

.news-wrap { background: var(--cream); }
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card {
  background: var(--card); border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
}
.news-card > div:last-child { padding: 14px 16px 18px; }
.news-card time { font-size: 12px; color: var(--muted); }
.news-card p { color: var(--muted); margin: 8px 0 0; }
.news-thumb {
  height: 110px; display: grid; place-items: center; color: #fff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.news-thumb.t1 { background: var(--terracotta); }
.news-thumb.t2 { background: var(--green); }
.news-thumb.t3 { background: #8b4a24; }

.partners-wrap { background: #efe4cf; }
.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.partner {
  background: var(--card); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 6px;
  border: 1px solid var(--line);
}
.partner small { color: var(--muted); }
.mark {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
}
.m1 { background: var(--green); }
.m2 { background: var(--terracotta); }
.m3 { background: var(--gold); color: var(--ink); }
.m4 { background: #8b4a24; }
.m5 { background: #1a3a4a; }
.m6 { background: #6b3a22; }

.apps {
  background: var(--terracotta-deep) var(--pattern);
  color: #fff;
  padding: 56px 24px;
}
.apps h2 { text-align: left; margin-bottom: 12px; }
.apps-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 10px; align-items: center; }
.apps-apk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f5f1e6;
  color: #2a1c14;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  min-width: 180px;
  font-weight: 700;
}
.apps-apk-btn:hover { filter: brightness(1.05); }
.apps-apk-icon { flex-shrink: 0; }
.store {
  display: flex; align-items: center; gap: 10px;
  background: #111; color: #fff; text-decoration: none;
  border-radius: 12px; padding: 10px 16px; min-width: 180px;
}
.store small { display: block; font-size: 11px; opacity: .75; }
.phone {
  width: 232px;
  height: 456px;
  margin: 0 auto;
  padding: 10px 10px 12px;
  border-radius: 28px;
  background: linear-gradient(160deg, #3a2a22, #120c08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}
.phone-island {
  width: 72px;
  height: 10px;
  margin: 4px auto 8px;
  border-radius: 999px;
  background: #0a0705;
}
.phone-screen {
  height: calc(100% - 22px);
  margin: 0;
  padding: 10px 12px 12px;
  border-radius: 20px;
  background: #f5f1e6;
  color: #2a1c14;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(226, 211, 188, 0.8);
}
.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: #6b5344;
  margin-bottom: 10px;
}
.phone-brand {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a227;
}
.phone-screen strong {
  display: block;
  margin: 2px 0 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}
.phone-search {
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2d3bc;
  padding: 8px 10px;
  font-size: 11px;
  color: #8a7a6a;
  margin-bottom: 10px;
}
.phone-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffdf8;
  border: 1px solid #e2d3bc;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
}
.phone-card b {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}
.phone-card em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: #6b5344;
}
.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #c9a227;
  color: #2a1c14;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  flex: 0 0 auto;
}
.phone-avatar.alt { background: #e4b89a; }
.phone-badge {
  margin-left: auto;
  background: #e8d7b0;
  color: #5c2e1f;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.phone-tabs {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  background: #fffdf8;
  border: 1px solid #e2d3bc;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #6b5344;
}
.phone-tabs .on { color: #5c2e1f; }

.faq-wrap { background: var(--cream); }
.faq-wrap h2 { margin-bottom: 20px; }
details {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 4px 16px; margin-bottom: 10px;
}
summary { cursor: pointer; font-weight: 700; padding: 12px 0; }
details p { margin: 0 0 14px; color: var(--muted); }

.contact-wrap { background: #efe4cf; }
.contact-wrap h2, .contact-wrap .pill { text-align: left; margin-left: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-list { list-style: none; padding: 0; }
.contact-list li { margin: 10px 0; }
.contact-list a { color: var(--terracotta); }
.contact-form, .news-form input, .contact-form input, .contact-form select, .contact-form textarea {
  font: inherit;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; background: var(--card); padding: 20px; border-radius: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 4px; font-size: 13px; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea {
  border: 1px solid var(--line); border-radius: 8px; padding: 10px; font-weight: 400;
}
.form-ok { color: var(--green); font-weight: 700; }
.form-err { color: #b42318; font-weight: 700; }

.newsletter { background: var(--green); color: #fff; padding: 36px 24px; }
.newsletter h2 { text-align: left; margin: 0 0 8px; }
.newsletter-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.news-form { display: flex; gap: 8px; }
.news-form input { border: 0; border-radius: 10px; padding: 12px 14px; min-width: 240px; }

.footer { background: #2b1c14; color: #ddd; padding: 36px 0 0; }
.footer .brand { color: #e8d7b0; margin-bottom: 12px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 0 24px 28px; }
.footer-title { font-weight: 800; color: #fff; text-transform: uppercase; font-size: 13px; letter-spacing: .06em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 8px 0; }
.footer a { color: #ddd; text-decoration: none; }
.footer a:hover { color: #fff; }
.social { display: flex; gap: 8px; margin-top: 14px; }
.social a {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid #666;
  display: grid; place-items: center; font-size: 12px;
}
.legal { padding: 0 24px 18px; font-size: 13px; color: #bbb; }
.legal h3 { color: #fff; font-size: 14px; margin: 0 0 8px; }
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
.legal-doc h1 {
  font-family: "Oswald", sans-serif;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 8px 0 20px;
}
.legal-doc h2 {
  font-size: 1.05rem;
  margin: 1.6rem 0 0.45rem;
}
.legal-doc p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 0.7rem;
}
.legal-doc a { color: var(--terracotta); }
.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.legal-tabs a {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}
.legal-tabs a.on {
  background: var(--brown-btn);
  border-color: var(--brown-btn);
  color: #fff;
}
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 12px 24px 18px; font-size: 13px; border-top: 1px solid #3d2a20;
}
.kente {
  height: 12px;
  background: repeating-linear-gradient(90deg,
    #c9a227 0 16px, #1f4d3a 16px 28px, #b33a2b 28px 40px, #f4efe4 40px 48px, #111 48px 60px, #d4a017 60px 72px);
}

@media (max-width: 960px) {
  .cats { grid-template-columns: repeat(4, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .split, .events, .news, .partners, .apps-grid, .contact-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .split h2, .apps h2, .contact-wrap h2 { text-align: center; }
  .newsletter-row { flex-direction: column; text-align: center; }
  .top { flex-wrap: wrap; }
  .top nav { width: 100%; }
  .top-actions { margin-left: auto; }
}
@media (max-width: 600px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .split, .events, .news, .partners, .apps-grid, .contact-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
  .search { flex-direction: column; }
  .search label { border-right: 0; border-bottom: 1px solid #eee; }
  .news-form { flex-direction: column; width: 100%; }
  .news-form input { min-width: 0; width: 100%; }
}
