/* =====================================================================
   SHIKANET  ·  Company website
   White background  ·  Blue + Orange brand (from logo)
   Fonts: Exo 2 (display) + Manrope (body)
   ===================================================================== */

:root {
  --blue:          #1a6fd4;
  --blue-dark:     #1254a6;
  --blue-mid:      #2d85e8;
  --blue-light:    #e6f0fb;
  --blue-pale:     #f0f6ff;
  --orange:        #f58411;
  --orange-dark:   #d46e05;
  --orange-light:  #fff4e5;
  --bg:            #ffffff;
  --bg-off:        #f6f8fb;
  --bg-dark:       #091324;
  --bg-footer:     #071020;
  --text:          #0e1b30;
  --text-muted:    #5a6b85;
  --text-light:    #8fa0b8;
  --border:        #dce5f0;
  --shadow-sm:     0 2px 10px rgba(10,40,100,.07);
  --shadow:        0 4px 28px rgba(10,40,100,.10);
  --shadow-lg:     0 12px 48px rgba(10,40,100,.13);
  --radius-sm:     .5rem;
  --radius:        .875rem;
  --radius-lg:     1.35rem;
  --font-display:  "Exo 2", sans-serif;
  --font-body:     Manrope, sans-serif;
  --nav-h:         4.5rem;
  --max:           76rem;
  --ease:          cubic-bezier(.22,1,.36,1);
  --transition:    .25s var(--ease);
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.15; letter-spacing: .01em; }

/* ─── Utilities ──────────────────────────────────────────────────── */
.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;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-off { background: var(--bg-off); }

/* ─── Typography ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .55rem;
}
.eyebrow-orange { color: var(--orange); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  margin-bottom: .7rem;
}
.section-title .accent-blue { color: var(--blue); }
.section-title .accent-orange { color: var(--orange); }

.section-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 40rem;
}
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem;
  padding: .78rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26,111,212,.3);
}
.btn-blue:hover { background: var(--blue-dark); box-shadow: 0 8px 26px rgba(26,111,212,.4); }
.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245,132,17,.3);
}
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 8px 26px rgba(245,132,17,.4); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue-light); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-ghost {
  background: var(--bg-off);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }
.btn-lg { padding: .9rem 1.85rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,.28);
}
.btn-whatsapp:hover { background: #1fba59; }

/* ─── NAV ────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand img { height: 2.5rem; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: .15rem;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: .45rem .75rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: .45rem;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--blue); background: var(--blue-light); }
.nav-actions { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 2.5rem; height: 2.5rem;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border-radius: .55rem;
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--bg-off); }
.nav-toggle span {
  display: block; width: 1.15rem; height: 2px;
  background: var(--text); border-radius: 1px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.footer-brand img { height: 2.25rem; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 1rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
.footer-contact-quick {
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.footer-contact-quick a {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 600;
  color: var(--orange);
}
.footer-contact-quick a:hover { color: var(--orange-dark); }

/* ─── PAGE HERO (sub-pages) ─────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #081120 0%, #0d1e3d 45%, var(--blue-dark) 100%);
  color: #fff;
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 100% 50%, rgba(26,111,212,.35), transparent 55%),
    radial-gradient(ellipse 40% 55% at 0% 80%, rgba(245,132,17,.15), transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--orange);
  margin-bottom: .75rem;
  font-size: .72rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  color: #fff;
  margin-bottom: .9rem;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.page-hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.68);
  max-width: 38rem;
  line-height: 1.7;
}

/* ─── HOMEPAGE HERO ──────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
/* Ambient light blobs in the page background */
.hero::before {
  content: "";
  position: absolute;
  width: 50rem; height: 50rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,212,.055) 0%, transparent 65%);
  top: -14rem; right: -10rem;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 38rem; height: 38rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,132,17,.05) 0%, transparent 65%);
  bottom: -12rem; left: -8rem;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 5rem;
  width: 100%;
}

/* ── Text side ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem 1rem .38rem .55rem;
  border-radius: 999px;
  background: var(--blue-light);
  border: 1px solid rgba(26,111,212,.22);
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.35); }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--text);
  line-height: 1.07;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}
.hero-grad {
  background: linear-gradient(115deg, var(--blue) 10%, var(--orange) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.4rem;
  max-width: 29rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex; align-items: center;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
  gap: 0;
}
.hero-stat { padding-right: 2.25rem; }
.hero-stat-sep {
  width: 1px; height: 2.75rem;
  background: var(--border);
  flex-shrink: 0;
  margin-right: 2.25rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero-stat-num span { color: var(--blue); }
.hero-stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; letter-spacing: .02em; }

/* ── Visual side ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Decorative blobs behind the image */
.hero-blob-1 {
  position: absolute;
  width: 24rem; height: 24rem; border-radius: 50%;
  background: var(--blue-light);
  top: -3.5rem; right: -3.5rem;
  z-index: 0;
}
.hero-blob-2 {
  position: absolute;
  width: 16rem; height: 16rem; border-radius: 50%;
  background: var(--orange-light);
  bottom: -2.5rem; left: -2rem;
  z-index: 0;
}
.hero-img-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(10,40,100,.15),
    0 6px 20px rgba(10,40,100,.08);
  aspect-ratio: 4 / 3.2;
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
/* Floating info cards */
.hero-float {
  position: absolute;
  z-index: 10;
  background: #fff;
  border-radius: 1.1rem;
  padding: .85rem 1.2rem;
  box-shadow:
    0 12px 36px rgba(10,40,100,.13),
    0 2px 8px rgba(10,40,100,.07);
  display: flex; align-items: center; gap: .8rem;
  border: 1px solid rgba(26,111,212,.08);
}
.hero-float-price {
  bottom: 1.75rem;
  left: -2rem;
  animation: float-bob 4s ease-in-out infinite;
}
.hero-float-support {
  top: 2rem;
  right: -1.5rem;
  animation: float-bob 4s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-float-icon {
  width: 2.75rem; height: 2.75rem; border-radius: .75rem;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float-dot {
  width: .9rem; height: .9rem; border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: pulse-dot 2s ease infinite;
}
.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800; font-size: .97rem;
  color: var(--text); line-height: 1.2;
}
.hero-float span {
  display: block;
  font-size: .75rem; color: var(--text-muted); font-weight: 500;
  margin-top: .1rem;
}

/* ─── TRUST BAR ─────────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-off);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0 3rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem 0;
  font-size: .9rem; font-weight: 600;
  color: var(--text-muted);
}
.trust-item-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: .4rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon.blue { background: var(--blue-light); color: var(--blue); }
.trust-item-icon.orange { background: var(--orange-light); color: var(--orange); }

/* ─── PACKAGES ───────────────────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}
.plan-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column;
}
.plan-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border);
  transition: background var(--transition);
}
.plan-card.is-blue::before { background: var(--blue); }
.plan-card.is-orange::before { background: var(--orange); }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.is-blue:hover { border-color: var(--blue); }
.plan-card.is-orange:hover { border-color: var(--orange); }
.plan-card.is-selected.is-blue { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,111,212,.12), var(--shadow-lg); }
.plan-card.is-selected.is-orange { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(245,132,17,.12), var(--shadow-lg); }
.plan-popular {
  position: absolute; top: .95rem; right: .95rem;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--blue); color: #fff;
}
.plan-card.is-orange .plan-popular { background: var(--orange); }
.plan-speed {
  font-family: var(--font-display);
  font-weight: 800; font-size: 2.75rem; line-height: 1;
  color: var(--blue);
  margin-bottom: .15rem;
}
.plan-card.is-orange .plan-speed { color: var(--orange); }
.plan-speed-unit { font-size: .9rem; font-weight: 700; color: var(--text-muted); }
.plan-price {
  margin-top: .9rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--text);
}
.plan-price-cur { font-size: .85rem; color: var(--text-muted); margin-right: .1rem; }
.plan-price-mo { font-size: .82rem; font-weight: 600; color: var(--text-muted); }
.plan-divider { height: 1px; background: var(--border); margin: 1.1rem 0; }
.plan-features { display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.plan-feature {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--text-muted);
}
.plan-feature svg { flex-shrink: 0; color: var(--blue); }
.plan-card.is-orange .plan-feature svg { color: var(--orange); }
.plan-cta { margin-top: 1.35rem; width: 100%; }

/* ─── PLAN ACTION BAR ─────────────────────────────────────────────── */
.plan-action-bar {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: #fff;
}
.plan-action-bar-text { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.plan-action-bar-text span { display: block; font-size: .88rem; opacity: .75; font-weight: 500; }

/* ─── WHY US ─────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 3.25rem; height: 3.25rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.why-icon.blue { background: var(--blue-light); color: var(--blue); }
.why-icon.orange { background: var(--orange-light); color: var(--orange); }
.why-icon.green { background: #edfcf0; color: #16a34a; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.12rem;
  margin-bottom: .45rem;
}
.why-card p { font-size: .93rem; color: var(--text-muted); line-height: 1.65; }

/* ─── PHOTO GRID ─────────────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .85rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.photo-grid figure {
  margin: 0; overflow: hidden;
  position: relative;
}
.photo-grid figure:first-child { grid-row: 1 / 3; }
.photo-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.photo-grid figure:hover img { transform: scale(1.04); }
.photo-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .65rem .9rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  font-size: .78rem; font-weight: 600; color: #fff;
  letter-spacing: .03em;
}

/* ─── PHOTO STRIP ────────────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.photo-strip img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ─── CTA SECTION ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #2a85e8 100%);
  padding: 4.5rem 0;
  text-align: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(245,132,17,.18), transparent),
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(255,255,255,.05), transparent);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(1.75rem,3.5vw,2.5rem);
  margin-bottom: .75rem;
}
.cta-band p { font-size: 1.08rem; opacity: .85; margin-bottom: 2rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.cta-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}

/* ─── ABOUT ──────────────────────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-title { font-size: clamp(1.5rem,2.5vw,2.1rem); }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }
.about-text p:last-child { margin-bottom: 0; }
.about-list { display: flex; flex-direction: column; gap: .65rem; margin: 1.25rem 0 1.5rem; }
.about-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem; font-weight: 600;
}
.about-list li svg { color: var(--blue); flex-shrink: 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.value-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
}
.value-card-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 2rem;
  background: linear-gradient(115deg, var(--blue), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .5rem;
}
.value-card h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  margin-bottom: .4rem;
}
.value-card p { font-size: .88rem; color: var(--text-muted); }

/* ─── SERVICES/PACKAGES PAGE ─────────────────────────────────────── */
.plan-detail-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
}
.plan-detail-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.plan-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-detail-header {
  padding: 1.75rem 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.plan-detail-header.bg-blue { background: var(--blue); color: #fff; }
.plan-detail-header.bg-orange { background: var(--orange); color: #fff; }
.plan-detail-header .speed { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; }
.plan-detail-header .speed-unit { font-size: 1rem; opacity: .8; }
.plan-detail-header .price { font-size: 1.2rem; font-weight: 700; margin-top: .5rem; opacity: .9; }
.plan-detail-body { padding: 1.75rem; }
.plan-detail-features { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.5rem; }
.plan-detail-feature {
  display: flex; align-items: center; gap: .6rem;
  font-size: .93rem;
}
.plan-detail-feature svg { flex-shrink: 0; }
.plan-detail-feature.check svg { color: #16a34a; }
.plan-detail-feature.info svg { color: var(--blue); }
.plan-detail-card:nth-child(even) .plan-detail-feature.info svg { color: var(--orange); }

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: .98rem;
  color: var(--text);
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
}
.faq-q:hover { background: var(--bg-off); }
.faq-q[aria-expanded="true"] { color: var(--blue); background: var(--blue-pale); }
.faq-chevron {
  width: 1.35rem; height: 1.35rem; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-off);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background var(--transition);
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); background: var(--blue-light); }
.faq-a {
  display: none;
  padding: 0 1.35rem 1.25rem;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg);
}
.faq-a.is-open { display: block; }

/* ─── BLOG ────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-off); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.35rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  display: inline-block;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  background: var(--blue-light); color: var(--blue);
  margin-bottom: .75rem;
}
.blog-card-tag.orange { background: var(--orange-light); color: var(--orange-dark); }
.blog-card-title {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .55rem; line-height: 1.35;
}
.blog-card-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: .55rem;
  margin-top: 1.1rem; padding-top: .9rem;
  border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--text-light);
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

/* ─── CAREERS ─────────────────────────────────────────────────────── */
.culture-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.culture-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.culture-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; margin-bottom: .4rem; }
.culture-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.culture-emoji {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .85rem;
  background: var(--blue-light);
  color: var(--blue);
  flex-shrink: 0;
}
.culture-card:nth-child(2n) .culture-emoji { background: var(--orange-light); color: var(--orange); }
.footer-contact-quick a svg { flex-shrink: 0; }
.jobs-list { display: flex; flex-direction: column; gap: 1rem; }
.job-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.job-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.job-info h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: .3rem; }
.job-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.job-tag {
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .75rem; font-weight: 600;
  background: var(--bg-off); color: var(--text-muted);
  border: 1px solid var(--border);
}
.job-tag.full { background: var(--blue-light); color: var(--blue); border-color: transparent; }
.job-tag.nairobi { background: var(--orange-light); color: var(--orange-dark); border-color: transparent; }

/* ─── CONTACT ─────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-info-header {
  background: var(--blue);
  color: #fff;
  padding: 1.75rem;
}
.contact-info-header h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: .35rem; }
.contact-info-header p { opacity: .8; font-size: .9rem; }
.contact-info-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .85rem; }
.contact-detail-icon {
  width: 2.5rem; height: 2.5rem; border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon.blue { background: var(--blue-light); color: var(--blue); }
.contact-detail-icon.orange { background: var(--orange-light); color: var(--orange); }
.contact-detail-icon.green { background: #edfcf0; color: #16a34a; }
.contact-detail h4 { font-family: var(--font-display); font-weight: 700; font-size: .88rem; margin-bottom: .25rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-detail a, .contact-detail p { font-weight: 700; font-size: 1.05rem; color: var(--text); line-height: 1.4; }
.contact-detail a:hover { color: var(--blue); }
.contact-form-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  background: var(--bg);
}
.contact-form-wrap h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin-bottom: .4rem; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 1.75rem; font-size: .95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.15rem; }
.form-label { font-size: .85rem; font-weight: 700; color: var(--text); }
.form-input, .form-select, .form-textarea {
  padding: .8rem 1rem;
  border-radius: .6rem;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,212,.12);
}
.form-textarea { resize: vertical; min-height: 8rem; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }
.reveal-delay-4 { transition-delay: .34s; }

/* ─── MISC POLISH ────────────────────────────────────────────────── */
/* Make nav CTA more prominent */
.nav-cta-primary {
  background: var(--orange);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(245,132,17,.3);
}
.nav-cta-primary:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,132,17,.4);
}
/* Plan card number accent */
.plan-card.is-blue .plan-speed { color: var(--blue); }
.plan-card.is-orange .plan-speed { color: var(--orange); }
/* Section divider line */
.section-divider {
  height: 1px; background: var(--border);
  margin: 0 auto; max-width: var(--max);
}
/* Subtle card hover border */
.why-card:hover { border-color: var(--blue-light); }
/* Blog card read more */
.blog-card-read {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .85rem;
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 700;
  color: var(--blue);
}
.blog-card-read svg { transition: transform .2s var(--ease); }
.blog-card:hover .blog-card-read svg { transform: translateX(3px); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .plan-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 3.5rem; }
  .hero-blob-1 { width: 18rem; height: 18rem; }
  .hero-blob-2 { width: 12rem; height: 12rem; }
  .hero-float-price { left: -1rem; }
  .hero-float-support { right: -0.5rem; }
}
@media (max-width: 960px) {
  .hero { padding: 4rem 0 3.5rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 6vw, 3rem); }
  .hero-lead { max-width: 100%; }
  .hero-visual { max-width: 28rem; margin: 0 auto; width: 100%; }
  .hero-float-price { left: 0; }
  .hero-float-support { right: 0; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split.reverse { direction: ltr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .plan-detail-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid figure:first-child { grid-column: 1 / -1; grid-row: 1; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
    z-index: 99;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .75rem 1rem; border-radius: .5rem; }
  .nav-actions .btn-outline-blue { display: none; }

  .hero { padding: 3rem 0 2.5rem; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stat { padding-right: 1.5rem; margin-bottom: .75rem; }
  .hero-stat-sep { margin-right: 1.5rem; }
  .hero-float { padding: .65rem .9rem; gap: .6rem; }
  .hero-float-icon { width: 2.25rem; height: 2.25rem; }
  .hero-float strong { font-size: .85rem; }
  .hero-float span { font-size: .7rem; }

  .why-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .page-hero { padding: 3.5rem 0 3rem; }
}
@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stat-sep { display: none; }
  .hero-float-support { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
