/* =========================================================================
   Pearl Solution — minimal cosmic theme
   ========================================================================= */
:root {
  --bg:        #05060f;
  --bg-2:      #0a0c1c;
  --panel:     rgba(255, 255, 255, 0.04);
  --panel-2:   rgba(255, 255, 255, 0.06);
  --line:      rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text:      #eef1ff;
  --muted:     #9aa3c4;
  --muted-2:   #6f779b;
  --brand:     #2f80ff;   /* logo blue */
  --brand-2:   #6aa8ff;   /* lighter blue for gradients */
  --accent:    #9cc1ff;   /* light blue accent */
  --radius:    18px;
  --radius-sm: 12px;
  --max:       1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --shadow:    0 24px 60px -28px rgba(0,0,0,.8);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -3;   /* colour wash, behind the stars */
  background:
    radial-gradient(1100px 700px at 75% -10%, rgba(47,128,255,.18), transparent 60%),
    radial-gradient(900px 600px at 10% 10%, rgba(106,168,255,.12), transparent 60%),
    radial-gradient(800px 800px at 50% 120%, rgba(255,255,255,.05), transparent 60%),
    linear-gradient(180deg, #05060f, #07081a 60%, #05060f);
}
/* Starfield sits ABOVE the colour wash but behind all content. */
#starfield { position: fixed; inset: 0; z-index: -2; display: block; pointer-events: none; }

h1, h2, h3, h4, .brand__name { font-family: 'Space Grotesk', sans-serif; line-height: 1.12; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(122,162,255,.35); }

/* ---------- Layout helpers ------------------------------------------------ */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.wrap { width: min(var(--max), 92%); margin-inline: auto; }
.eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #c9d6f2;
  padding: .5rem 1.05rem .5rem .9rem;
  border: 1px solid transparent; border-radius: 100px;
  /* solid dark fill + gradient hairline border */
  background:
    linear-gradient(180deg, rgba(22,28,52,.92), rgba(11,15,30,.92)) padding-box,
    linear-gradient(120deg, rgba(47,128,255,.75), rgba(255,255,255,.22) 45%, rgba(47,128,255,.35)) border-box;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 30px -18px rgba(47,128,255,.9);
  backdrop-filter: blur(6px);
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px;
  background: radial-gradient(circle at 35% 32%, #d7e6ff, var(--brand) 70%);
  box-shadow: 0 0 0 0 rgba(47,128,255,.55), 0 0 8px rgba(47,128,255,.9);
  animation: eyebrow-pulse 2.4s ease-out infinite;
}
@keyframes eyebrow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47,128,255,.5),  0 0 8px rgba(47,128,255,.9); }
  70%  { box-shadow: 0 0 0 9px rgba(47,128,255,0), 0 0 8px rgba(47,128,255,.9); }
  100% { box-shadow: 0 0 0 0 rgba(47,128,255,0),   0 0 8px rgba(47,128,255,.9); }
}
/* hero variant: location pin instead of the dot */
.eyebrow--pin::before { display: none; }
.eyebrow--pin svg { width: 14px; height: 14px; color: var(--brand); margin-inline-start: -2px; }
.section__head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 18px 0 14px; }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.text-grad { background: linear-gradient(100deg, var(--brand), var(--brand-2) 55%, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .95rem; line-height: 1;
  padding: .92rem 1.5rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  background: linear-gradient(100deg, var(--brand), var(--brand-2));
  color: #07081a;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(122,162,255,.6); }
.btn--ghost { background: var(--panel); color: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: var(--panel-2); box-shadow: none; }
.btn--sm { padding: .62rem 1.05rem; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Navigation ---------------------------------------------------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background .3s, border-color .3s, backdrop-filter .3s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(7,8,22,.72); backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }
.nav__inner { width: min(var(--max), 92%); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand__mark { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 0 22px rgba(122,162,255,.5); }
.brand__mark span { width: 11px; height: 11px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px #fff; }
.brand__name { font-size: 1.12rem; font-weight: 500; letter-spacing: -.01em; }
.brand__name strong { font-weight: 700; }
.brand__logo { height: 34px; width: auto; display: block; }
.footer__brand .brand__logo { height: 38px; }
.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links > a { font-size: .92rem; color: var(--muted); padding: .5rem .8rem; border-radius: 100px; transition: color .2s, background .2s; }
.nav__links > a:hover { color: var(--text); }
.nav__links > a.is-active { color: var(--text); background: var(--panel); }
.nav__cta { margin-left: .5rem; color: #07081a !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------------------------------------------------------- */
.hero { min-height: 100svh; display: flex; align-items: center; padding: 112px 0 64px; position: relative; }
.hero__inner {
  width: min(var(--max), 92%);
  margin-inline: auto;
  min-height: calc(100svh - 176px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 700; margin: 26px auto 0; max-width: 16ch; }
.hero p { color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.25rem); max-width: 60ch; margin: 22px auto 34px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  margin-top: 42px;
  color: var(--muted-2);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: color .2s, transform .2s;
}
.hero__scroll:hover { color: var(--text); transform: translateY(2px); }
.hero__scroll::after { content:''; width: 1px; height: 38px; background: linear-gradient(var(--brand), transparent); animation: drop 1.8s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Stat strip ---------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 26px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.stat b { display: block; font-family: 'Space Grotesk'; font-size: clamp(1.9rem, 4vw, 2.8rem); background: linear-gradient(100deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Cards / glass ------------------------------------------------- */
.glass { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); backdrop-filter: blur(8px); }
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.card::after { content:''; position: absolute; inset: 0; background: radial-gradient(400px 200px at var(--mx,50%) 0%, rgba(122,162,255,.14), transparent 70%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.card:hover { transform: translateY(-6px); border-color: rgba(122,162,255,.4); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card__media { position: relative; margin: -28px -28px 20px; height: 170px; overflow: hidden; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, rgba(122,162,255,.16), rgba(106,168,255,.10)); display: grid; place-items: center; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media .card__icon { margin: 0; width: 58px; height: 58px; background: rgba(255,255,255,.06); }
.card__media .tier__badge { position: absolute; top: 12px; right: 12px; margin: 0; background: rgba(5,6,15,.55); backdrop-filter: blur(6px); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: linear-gradient(135deg, rgba(122,162,255,.18), rgba(106,168,255,.12)); border: 1px solid var(--line); color: var(--brand); }
.card__icon .icon { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; }
.card__meta { color: var(--brand) !important; font-size: .82rem !important; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.card__chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .78rem;
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.card__specs { list-style: none; margin: 16px 0 0; display: grid; gap: 10px; }
.card__specs li { display: flex; gap: 10px; color: var(--muted); font-size: .92rem; }
.card__specs .tick { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; color: var(--brand); margin-top: 2px; }
.card__specs .tick svg { width: 14px; height: 14px; }
.card__detail-media {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.card__detail-media img { display: block; width: 100%; height: auto; }
.card__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 16px; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 0; color: var(--brand); font-weight: 600; font-size: .9rem; }
.card__link--muted { color: var(--text); }
.card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }
.card:hover .card__link--muted svg { transform: translateY(3px); }

/* ---------- Feature split ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.split__media { position: relative; aspect-ratio: 4/3.4; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(150deg, rgba(122,162,255,.12), rgba(106,168,255,.06)); overflow: hidden; display: grid; place-items: center; }
.split__media .orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__media--contain { background: linear-gradient(150deg, rgba(255,255,255,.06), rgba(122,162,255,.05)); }
.split__media--contain img { object-fit: contain; padding: 26px; }
.split__media .media-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text); background: rgba(5,6,15,.6); border: 1px solid var(--line); padding: .35rem .7rem; border-radius: 100px; backdrop-filter: blur(6px); }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.feature-list .tick { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(47,128,255,.18); color: var(--accent); margin-top: 2px; }
.feature-list .tick svg { width: 13px; height: 13px; }
.feature-list b { color: var(--text); font-weight: 600; }

/* ---------- Page header (inner pages) ------------------------------------- */
.page-head { padding: 150px 0 30px; text-align: center; }
.page-head h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); margin: 18px auto 14px; max-width: 18ch; }
.page-head p { color: var(--muted); max-width: 58ch; margin-inline: auto; font-size: 1.06rem; }

/* ---------- Clients / partners marquee ------------------------------------ */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: slide 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.chip { white-space: nowrap; padding: 14px 26px; border: 1px solid var(--line); border-radius: 100px; background: var(--panel); color: var(--muted); font-weight: 500; }

/* Logo marquee (real partner/client logos) — white cards so every logo,
   whether a transparent PNG or a white-background JPG, renders cleanly. */
.logo-chip { flex: 0 0 auto; width: 180px; height: 104px; padding: 18px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; }
.logo-chip img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.logo-chip:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(0,0,0,.7); }

/* Portfolio gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery a { position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; opacity: .9; }
.gallery a:hover img { transform: scale(1.06); opacity: 1; }
.gallery a::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,6,15,.7)); opacity: 0; transition: opacity .3s; }
.gallery a:hover::after { opacity: 1; }
.gallery__go { position: absolute; top: 10px; right: 10px; z-index: 2; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(5,6,15,.55); border: 1px solid var(--line); color: #fff; font-size: 1rem; opacity: 0; transform: translateY(-4px); transition: opacity .3s, transform .3s; backdrop-filter: blur(6px); }
.gallery a:hover .gallery__go { opacity: 1; transform: none; }

/* ---------- Process steps ------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.step__no { counter-increment: step; font-family: 'Space Grotesk'; font-size: 1.4rem; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #07081a; font-weight: 700; }
.step__no::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- CTA banner ---------------------------------------------------- */
.cta-banner { text-align: center; padding: clamp(48px, 7vw, 80px); border-radius: calc(var(--radius) + 8px); border: 1px solid var(--line); background: radial-gradient(700px 320px at 50% -20%, rgba(122,162,255,.22), transparent 70%), linear-gradient(180deg, var(--panel-2), var(--panel)); }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-banner p { color: var(--muted); max-width: 50ch; margin: 0 auto 28px; }

/* ---------- Pricing / SLA / store ----------------------------------------- */
.tier { display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--panel-2), var(--panel)); transition: transform .35s var(--ease), border-color .35s; }
.tier:hover { transform: translateY(-6px); border-color: rgba(122,162,255,.4); }
.tier.is-featured { border-color: rgba(122,162,255,.55); box-shadow: var(--shadow); }
.tier__badge { align-self: flex-start; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--brand); border: 1px solid var(--line); padding: .25rem .7rem; border-radius: 100px; margin-bottom: 14px; }
.tier h3 { font-size: 1.3rem; }
.tier__price { font-family: 'Space Grotesk'; font-size: 2.4rem; margin: 10px 0 4px; }
.tier__price small { font-size: .9rem; color: var(--muted); font-family: 'Inter'; }
.tier ul { list-style: none; margin: 22px 0; display: grid; gap: 12px; }
.tier li { display: flex; gap: 10px; color: var(--muted); font-size: .94rem; }
.tier li svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 18px; margin-top: 2px; }
.tier .btn { margin-top: auto; justify-content: center; }

/* ---------- Domain search -------------------------------------------------- */
.domain-search { display: flex; gap: 10px; flex-wrap: wrap; max-width: 620px; margin: 8px auto 0; }
.domain-search input { flex: 1 1 240px; }
.tld-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.tld { padding: 10px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); text-align: center; }
.tld b { font-family: 'Space Grotesk'; color: var(--brand); display: block; }
.tld span { font-size: .76rem; color: var(--muted); }
.domain-results { max-width: 1020px; margin: 18px auto 0; }
.domain-results__head { max-width: 720px; }
.domain-results[hidden] { display: none; }
.domain-result { display: flex; flex-direction: column; gap: 12px; }
.domain-result__top { display: flex; justify-content: space-between; gap: 8px; align-items: center; flex-wrap: wrap; }
.domain-result__badge,
.domain-result__status {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 7px 10px; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--line);
}
.domain-result__badge { color: var(--brand); background: rgba(122,162,255,.08); }
.domain-result__status { color: var(--muted); background: rgba(255,255,255,.03); }
.domain-result__name { margin: 0; font-family: 'Space Grotesk'; font-size: 1.22rem; word-break: break-word; }
.domain-result__meta { margin: 0; color: var(--muted); font-size: .94rem; }
.domain-result__btn { margin-top: auto; justify-content: center; width: 100%; }

/* ---------- Forms --------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .85rem; color: var(--muted); font-weight: 500; }
input, textarea, select {
  font-family: inherit; font-size: .96rem; color: var(--text);
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem 1rem; transition: border-color .25s, box-shadow .25s, background .25s;
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(122,162,255,.18); background: rgba(255,255,255,.05); }
textarea { resize: vertical; min-height: 140px; }
.form-note { padding: 14px 16px; border-radius: var(--radius-sm); font-size: .92rem; margin-bottom: 20px; border: 1px solid; }
.form-note.ok { background: rgba(47,128,255,.12); border-color: rgba(47,128,255,.45); color: #bcd6ff; }
.form-note.err { background: rgba(255,107,107,.1); border-color: rgba(255,107,107,.4); color: #ffb3b3; }

/* ---------- Contact layout ------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.info-row .ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(122,162,255,.18), rgba(106,168,255,.12)); color: var(--brand); flex: 0 0 42px; }
.info-row .ico svg { width: 20px; height: 20px; }
.info-row b { display: block; font-family: 'Space Grotesk'; font-weight: 600; }
.info-row a, .info-row span { color: var(--muted); }
.info-row a:hover { color: var(--text); }

/* ---------- Footer -------------------------------------------------------- */
.footer { border-top: 1px solid var(--line-soft); background: rgba(5,6,15,.6); margin-top: 40px; }
.footer__grid { width: min(var(--max), 92%); margin-inline: auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding: 64px 0 40px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.footer__col a, .footer__col span { color: var(--muted); font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__brand p { color: var(--muted); font-size: .93rem; max-width: 38ch; }
.footer__social { display: flex; gap: 10px; margin-top: 6px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); background: var(--panel); color: var(--muted); transition: color .2s, border-color .2s, transform .2s; }
.footer__social a:hover { color: var(--text); border-color: var(--brand); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bar { border-top: 1px solid var(--line-soft); }
.footer__bar { width: min(var(--max), 92%); margin-inline: auto; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; color: var(--muted-2); font-size: .85rem; flex-wrap: wrap; gap: 10px; }

/* ---------- WhatsApp float ------------------------------------------------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--brand); color: #fff; box-shadow: 0 12px 30px -8px rgba(47,128,255,.6); transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal animation ---------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------------------------------------------------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(7,8,22,.96); backdrop-filter: blur(16px); padding: 16px 6%;
    border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links > a { padding: .85rem 1rem; }
  .nav__cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2, .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 92px 0 48px; min-height: auto; }
  .hero__inner { min-height: auto; }
  .hero__scroll { margin-top: 30px; font-size: .68rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Language switcher -------------------------------------------- */
.lang-switch { position: relative; }
.lang-switch__btn { display: inline-flex; align-items: center; gap: 6px; background: var(--panel); border: 1px solid var(--line); color: var(--muted); padding: .5rem .85rem; border-radius: 100px; cursor: pointer; font: inherit; font-size: .86rem; transition: color .2s, border-color .2s; }
.lang-switch__btn svg { width: 16px; height: 16px; }
.lang-switch__btn:hover { color: var(--text); border-color: var(--brand); }
.lang-switch__menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 150px; background: rgba(10,12,28,.97); backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 14px; padding: 6px; display: none; flex-direction: column; gap: 2px; z-index: 80; box-shadow: var(--shadow); }
.lang-switch.is-open .lang-switch__menu { display: flex; }
.lang-switch__menu a { padding: .58rem .85rem; border-radius: 9px; color: var(--muted); font-size: .92rem; }
.lang-switch__menu a:hover { background: var(--panel); color: var(--text); }
.lang-switch__menu a.is-active { color: var(--text); background: var(--panel-2); }
[dir="rtl"] .lang-switch__menu { right: auto; left: 0; }

/* ---------- RTL + Arabic / Kurdish typography ---------------------------- */
[dir="rtl"] body { font-family: 'Noto Kufi Arabic', 'Inter', system-ui, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 { font-family: 'Noto Kufi Arabic', 'Space Grotesk', sans-serif; letter-spacing: normal; }
[dir="rtl"] .eyebrow, [dir="rtl"] .footer__col h4, [dir="rtl"] .hero__scroll,
[dir="rtl"] .tier__badge, [dir="rtl"] .media-tag, [dir="rtl"] .stat span { letter-spacing: normal; text-transform: none; }
[dir="rtl"] .tier__price small, [dir="rtl"] .card__link { letter-spacing: normal; }
/* keep brand wordmark and the language menu natives readable */
[dir="rtl"] .lang-switch__menu a, [dir="rtl"] .lang-switch__btn { letter-spacing: normal; }

/* ---------- Founders ------------------------------------------------------ */
.founder { display: flex; gap: 22px; align-items: flex-start; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--panel-2), var(--panel)); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.founder:hover { transform: translateY(-6px); border-color: rgba(47,128,255,.4); box-shadow: var(--shadow); }
.founder__avatar { flex: 0 0 72px; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 0 26px rgba(47,128,255,.45); }
.founder__name { font-size: 1.25rem; margin-bottom: 2px; }
.founder__role { display: inline-block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.founder__bio { color: var(--muted); font-size: .96rem; }
[dir="rtl"] .founder__role { letter-spacing: normal; text-transform: none; }
@media (max-width: 560px) { .founder { flex-direction: column; gap: 16px; } }
