/* =====================================================================
   Skyzun — Web Hosting · Stylesheet
   Brand palette extracted from skyzun.com (Hostim theme)
   Modern layout inspired by naxhosting.com
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root{
  /* Brand */
  --blue:        #1c40f2;
  --blue-bright: #0082f8;
  --navy:        #081b4b;
  --navy-2:      #24335a;
  --slate:       #4c5a7c;
  --muted:       #8a96b5;
  --tint:        #bac6ff;
  --line:        #d5dbe9;
  --bg:          #ffffff;
  --bg-soft:     #f9fafe;
  --bg-soft-2:   #eff2fb;
  --white:       #ffffff;
  --ok:          #16b364;

  --grad: linear-gradient(135deg, #1c40f2 0%, #0082f8 100%);
  --grad-soft: linear-gradient(135deg, #eef2ff 0%, #e6f3ff 100%);

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 14px rgba(8,27,75,.06);
  --shadow:    0 18px 50px rgba(8,27,75,.10);
  --shadow-lg: 0 30px 80px rgba(8,27,75,.16);
  --ring: 0 0 0 4px rgba(28,64,242,.14);

  /* Layout */
  --maxw: 1180px;
  --gutter: 22px;
  --header-h: 76px;
  --topbar-h: 42px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--slate);
  background:var(--bg);
  line-height:1.65;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:0; background:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ color:var(--navy); line-height:1.18; margin:0 0 .4em; font-weight:800; letter-spacing:-.02em; }
h1{ font-size:clamp(2.1rem, 4.6vw, 3.5rem); }
h2{ font-size:clamp(1.7rem, 3.2vw, 2.55rem); }
h3{ font-size:1.22rem; }
p{ margin:0 0 1rem; }
:focus-visible{ outline:none; box-shadow:var(--ring); border-radius:8px; }

/* ---------- Layout helpers ---------- */
.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding:84px 0; }
.section--soft{ background:var(--bg-soft); }
.section--tint{ background:var(--grad-soft); }
.eyebrow{
  display:inline-block; font-weight:700; font-size:.82rem; letter-spacing:.12em;
  text-transform:uppercase; color:var(--blue);
  background:rgba(28,64,242,.08); padding:6px 14px; border-radius:var(--r-pill); margin-bottom:16px;
}
.section-head{ max-width:680px; margin:0 auto 52px; text-align:center; }
.section-head p{ color:var(--slate); font-size:1.06rem; margin-bottom:0; }
.text-grad{ background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-weight:700; font-size:.97rem; padding:13px 26px; border-radius:var(--r-pill);
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap; cursor:pointer; line-height:1;
}
.btn svg{ width:18px; height:18px; }
.btn--primary{ background:var(--grad); color:#fff; box-shadow:0 10px 24px rgba(28,64,242,.32); }
.btn--primary:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(28,64,242,.42); }
.btn--ghost{ background:rgba(255,255,255,.10); color:#fff; border:1px solid rgba(255,255,255,.28); }
.btn--ghost:hover{ background:rgba(255,255,255,.18); transform:translateY(-2px); }
.btn--light{ background:#fff; color:var(--blue); box-shadow:var(--shadow-sm); }
.btn--light:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
.btn--outline{ background:#fff; color:var(--navy); border:1.5px solid var(--line); }
.btn--outline:hover{ border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }
.btn--block{ width:100%; }
.btn--lg{ padding:16px 32px; font-size:1.02rem; }

/* ---------- Top bar ---------- */
.topbar{
  position:fixed; top:0; left:0; right:0; height:var(--topbar-h); z-index:101;
  display:flex; align-items:center; color:#cdd9f5; font-size:.84rem; font-weight:600;
  background:linear-gradient(90deg,#06143a,#0b2160);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:transform .3s ease;
}
body.is-scrolled .topbar{ transform:translateY(-100%); }
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; gap:18px; width:100%; }
.topbar__left{ display:inline-flex; align-items:center; gap:10px; min-width:0; }
.topbar__hot{ display:inline-flex; align-items:center; gap:5px; background:linear-gradient(135deg,#ff7a00,#ff4d00); color:#fff; font-weight:800; font-size:.7rem; letter-spacing:.04em; text-transform:uppercase; padding:3px 9px; border-radius:var(--r-pill); flex:none; }
.topbar__left span:not(.topbar__hot){ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.topbar__left a{ color:#fff; font-weight:700; text-decoration:underline; text-underline-offset:2px; }
.topbar__left a:hover{ color:#7aa2ff; }
.topbar__right{ display:inline-flex; align-items:center; gap:20px; flex:none; }
.topbar__right a{ display:inline-flex; align-items:center; gap:7px; color:#cdd9f5; font-weight:600; }
.topbar__right a:hover{ color:#fff; }
.topbar__right svg{ width:15px; height:15px; color:#37d0ff; }

/* ---------- Header ---------- */
.header{
  position:fixed; top:var(--topbar-h); left:0; right:0; height:var(--header-h); z-index:100;
  display:flex; align-items:center;
  background:#ffffff;
  transition:top .3s ease, box-shadow .25s ease;
}
body.is-scrolled .header{ top:0; }
.header.scrolled{ box-shadow:0 6px 24px rgba(8,27,75,.08); }
.header__inner{ display:flex; align-items:center; gap:22px; width:100%; }
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:1.3rem; color:var(--navy); letter-spacing:-.02em; flex:none; }
.brand__logo{ width:34px; height:34px; }
.nav{ display:flex; align-items:center; gap:6px; margin-inline:auto; }
.nav a{ font-weight:600; font-size:.95rem; color:var(--navy-2); padding:9px 14px; border-radius:var(--r-sm); transition:color .15s ease, background .15s ease; }
.nav a:hover{ color:var(--blue); background:var(--bg-soft-2); }
.header__actions{ display:flex; align-items:center; gap:10px; }
.link-login{ font-weight:700; color:var(--navy); padding:9px 12px; border-radius:var(--r-sm); }
.link-login:hover{ color:var(--blue); }

/* Language switcher */
.lang{ position:relative; }
.lang__btn{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; color:var(--navy-2);
  padding:9px 12px; border-radius:var(--r-pill); border:1.5px solid var(--line); background:#fff; font-size:.9rem;
}
.lang__btn:hover{ border-color:var(--tint); }
.flag{ display:inline-block; width:22px; height:15px; border-radius:3px; overflow:hidden; line-height:0; flex:none; box-shadow:0 0 0 1px rgba(8,27,75,.12); }
.flag svg{ width:100%; height:100%; display:block; }
.lang__btn .chev{ width:14px; height:14px; transition:transform .2s ease; }
.lang.open .lang__btn .chev{ transform:rotate(180deg); }
.lang__menu{
  position:absolute; top:calc(100% + 10px); right:0; min-width:184px;
  background:#fff; border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--shadow);
  padding:8px; opacity:0; visibility:hidden; transform:translateY(-6px); transition:.18s ease; z-index:50;
}
.lang.open .lang__menu{ opacity:1; visibility:visible; transform:translateY(0); }
.lang__menu a{ display:flex; align-items:center; gap:11px; padding:10px 12px; border-radius:var(--r-sm); font-weight:600; color:var(--navy-2); font-size:.93rem; }
.lang__menu a:hover{ background:var(--bg-soft-2); color:var(--blue); }
.lang__menu a.active{ background:rgba(28,64,242,.08); color:var(--blue); }
.lang__menu .flag{ width:24px; height:16px; }

/* Mobile menu toggle */
.hamburger{ display:none; width:44px; height:44px; border-radius:var(--r-sm); border:1.5px solid var(--line); align-items:center; justify-content:center; }
.hamburger span{ position:relative; width:20px; height:2px; background:var(--navy); border-radius:2px; transition:.2s; }
.hamburger span::before,.hamburger span::after{ content:""; position:absolute; left:0; width:20px; height:2px; background:var(--navy); border-radius:2px; transition:.2s; }
.hamburger span::before{ top:-6px; } .hamburger span::after{ top:6px; }
body.menu-open .hamburger span{ background:transparent; }
body.menu-open .hamburger span::before{ top:0; transform:rotate(45deg); }
body.menu-open .hamburger span::after{ top:0; transform:rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position:relative; padding:calc(var(--header-h) + var(--topbar-h) + 56px) 0 90px;
  background:
    radial-gradient(900px 480px at 78% -8%, rgba(0,130,248,.20), transparent 60%),
    linear-gradient(180deg, rgba(6,21,57,.78) 0%, rgba(8,27,75,.82) 55%, rgba(10,31,87,.88) 100%),
    url("/assets/img/sk-bg.png") center center / contain no-repeat,
    #081b4b;
  color:#dfe6fb; overflow:hidden;
}
.hero::after{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.28;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:46px 46px; mask-image:radial-gradient(60% 60% at 50% 30%, #000, transparent 80%);
}
.hero__grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.06fr .94fr; gap:54px; align-items:center; }
.hero h1{ color:#fff; }
.hero h1 .text-grad{ background:linear-gradient(120deg,#7aa2ff,#37d0ff); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero__sub{ font-size:1.14rem; color:#b9c4e6; max-width:540px; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin:30px 0 26px; }
.hero__trust{ display:flex; flex-wrap:wrap; gap:22px 28px; align-items:center; color:#9fb0db; font-size:.9rem; font-weight:600; }
.hero__trust .dot{ display:inline-flex; align-items:center; gap:8px; }
.hero__trust svg{ width:18px; height:18px; color:#37d0ff; }
.pill-badge{ display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16); color:#cfe0ff; font-weight:600; font-size:.82rem; padding:7px 14px; border-radius:var(--r-pill); margin-bottom:22px; }
.pill-badge .ping{ width:8px; height:8px; border-radius:50%; background:#37d0ff; box-shadow:0 0 0 0 rgba(55,208,255,.7); animation:ping 1.8s infinite; }
@keyframes ping{ 0%{box-shadow:0 0 0 0 rgba(55,208,255,.6)} 70%{box-shadow:0 0 0 10px rgba(55,208,255,0)} 100%{box-shadow:0 0 0 0 rgba(55,208,255,0)} }

/* Hero card — white, trust-focused */
.herocard{ position:relative; background:#fff; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:26px; color:var(--navy); }
.herocard__top{ display:flex; align-items:center; gap:14px; padding-bottom:18px; border-bottom:1px solid var(--line); margin-bottom:18px; }
.herocard__avatars{ display:flex; flex:none; }
.herocard__avatars span{ width:38px; height:38px; border-radius:50%; border:2px solid #fff; margin-left:-12px; background:var(--grad); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.74rem; box-shadow:var(--shadow-sm); }
.herocard__avatars span:first-child{ margin-left:0; }
.herocard__rating{ display:flex; align-items:center; gap:3px; color:#ffb400; }
.herocard__rating svg{ width:16px; height:16px; }
.herocard__rating b{ color:var(--navy); margin-left:6px; font-size:1.02rem; font-weight:800; }
.herocard__reviews{ font-size:.85rem; color:var(--muted); font-weight:600; margin-top:3px; }
.herocard__grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:20px; }
.hcchip{ display:flex; align-items:center; gap:11px; padding:13px 14px; border-radius:var(--r); background:var(--bg-soft); border:1px solid var(--line); font-weight:700; color:var(--navy); font-size:.9rem; transition:transform .18s, box-shadow .18s; }
.hcchip:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.hcchip .ic{ width:34px; height:34px; border-radius:10px; background:var(--grad-soft); color:var(--blue); display:flex; align-items:center; justify-content:center; flex:none; }
.hcchip .ic svg{ width:18px; height:18px; }
.herocard__bar{ display:flex; align-items:center; gap:13px; }
.herocard__bar .lbl{ font-size:.8rem; color:var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.hcbar{ flex:1; height:8px; border-radius:var(--r-pill); background:var(--bg-soft-2); overflow:hidden; }
.hcbar > span{ display:block; height:100%; width:99%; background:var(--grad); border-radius:var(--r-pill); transform-origin:left; animation:hcgrow 1.4s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes hcgrow{ from{ transform:scaleX(0) } to{ transform:scaleX(1) } }
.herocard__bar b{ color:var(--navy); font-weight:800; }

/* Tech logos strip */
.techstrip{ position:relative; z-index:2; margin-top:54px; padding-top:30px; border-top:1px solid rgba(255,255,255,.10); }
.techstrip p{ text-align:center; color:#8ea2d6; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; font-weight:700; margin-bottom:18px; }
.techstrip ul{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px 30px; }
.techstrip li{ display:inline-flex; align-items:center; gap:9px; color:#c4d2f5; font-weight:700; font-size:1rem; opacity:.85; }
.techstrip li svg{ width:22px; height:22px; color:#7aa2ff; }

/* ---------- Domain search ---------- */
.domain{ margin-top:-46px; position:relative; z-index:5; }
.domain__card{ background:#fff; border-radius:var(--r-lg); box-shadow:var(--shadow); padding:34px; border:1px solid var(--line); }
.domain__form{ display:flex; gap:12px; margin:18px 0 20px; }
.domain__form input{ flex:1; border:1.5px solid var(--line); border-radius:var(--r-pill); padding:15px 22px; font-size:1rem; color:var(--navy); background:var(--bg-soft); transition:.18s; }
.domain__form input:focus{ background:#fff; border-color:var(--blue); box-shadow:var(--ring); outline:none; }
.tlds{ display:flex; flex-wrap:wrap; gap:10px; }
.tld{ display:inline-flex; align-items:center; gap:8px; background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--r-pill); padding:8px 16px; font-weight:700; color:var(--navy); font-size:.9rem; }
.tld span{ color:var(--blue); }

/* ---------- Pricing ---------- */
.toggle{ display:inline-flex; align-items:center; gap:14px; background:var(--bg-soft-2); border-radius:var(--r-pill); padding:6px; margin-top:8px; font-weight:700; color:var(--slate); }
.toggle button{ padding:9px 20px; border-radius:var(--r-pill); font-weight:700; color:var(--slate); transition:.18s; font-size:.92rem; }
.toggle button.active{ background:#fff; color:var(--blue); box-shadow:var(--shadow-sm); }
.toggle .save{ background:rgba(22,179,100,.12); color:var(--ok); font-size:.74rem; padding:4px 10px; border-radius:var(--r-pill); }
.pricing__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; align-items:stretch; }
.plan{ background:#fff; border:1.5px solid var(--line); border-radius:var(--r-lg); padding:30px 26px; display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease, border-color .2s; position:relative; }
.plan:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--tint); }
.plan--featured{ border-color:transparent; box-shadow:var(--shadow); background:linear-gradient(180deg,#fff,#fbfcff); }
.plan--featured::before{ content:""; position:absolute; inset:0; border-radius:var(--r-lg); padding:1.6px; background:var(--grad); -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; }
.plan__badge{ position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--grad); color:#fff; font-weight:700; font-size:.74rem; letter-spacing:.04em; padding:6px 16px; border-radius:var(--r-pill); box-shadow:0 8px 18px rgba(28,64,242,.35); text-transform:uppercase; }
.plan__name{ font-size:1.18rem; font-weight:800; color:var(--navy); }
.plan__desc{ font-size:.9rem; color:var(--muted); min-height:38px; margin-top:2px; }
.plan__price{ display:flex; align-items:baseline; gap:4px; margin:14px 0 2px; }
.plan__price .cur{ font-size:1.2rem; font-weight:800; color:var(--navy); }
.plan__price .amt{ font-size:2.6rem; font-weight:800; color:var(--navy); letter-spacing:-.03em; }
.plan__price .per{ font-size:.92rem; color:var(--muted); font-weight:600; }
.plan__renew{ font-size:.82rem; color:var(--muted); margin-bottom:18px; }
.plan__features{ display:flex; flex-direction:column; gap:11px; margin:8px 0 24px; }
.plan__features li{ display:flex; align-items:flex-start; gap:10px; font-size:.92rem; color:var(--slate); }
.plan__features svg{ width:18px; height:18px; color:var(--ok); flex:none; margin-top:2px; }
.plan__features b{ color:var(--navy); font-weight:700; }
.plan .btn{ margin-top:auto; }

/* ---------- Features grid ---------- */
.features__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:28px; transition:transform .2s, box-shadow .2s; }
.feature:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.feature__icon{ width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--grad-soft); color:var(--blue); margin-bottom:16px; }
.feature__icon svg{ width:26px; height:26px; }
.feature h3{ margin-bottom:6px; }
.feature p{ margin:0; font-size:.95rem; }

/* ---------- Platforms ---------- */
.platforms__grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
.platform{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:24px 14px; text-align:center; font-weight:700; color:var(--navy); transition:.2s; }
.platform:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--tint); }
.platform svg{ width:42px; height:42px; margin:0 auto 12px; color:var(--blue); }

/* ---------- Split / showcase ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
.split__media{ border-radius:var(--r-lg); overflow:hidden; }
.checklist{ display:flex; flex-direction:column; gap:14px; margin-top:8px; }
.checklist li{ display:flex; align-items:flex-start; gap:12px; color:var(--slate); }
.checklist svg{ width:22px; height:22px; color:var(--ok); flex:none; }
.checklist b{ color:var(--navy); }

/* Visual card used in showcases */
.glass{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); box-shadow:var(--shadow); padding:26px; }
.kv{ display:flex; align-items:center; justify-content:space-between; padding:13px 16px; background:var(--bg-soft); border-radius:var(--r-sm); margin-bottom:10px; font-weight:600; color:var(--navy-2); font-size:.92rem; }
.kv:last-child{ margin-bottom:0; }
.kv svg{ width:20px; height:20px; color:var(--blue); }
.appgrid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.app{ display:flex; flex-direction:column; align-items:center; gap:9px; padding:14px 6px; border-radius:var(--r); background:var(--bg-soft); border:1px solid var(--line); transition:transform .2s, box-shadow .2s, border-color .2s; }
.app:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--tint); }
.app__mono{ width:46px; height:46px; border-radius:13px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:1rem; box-shadow:0 6px 14px rgba(8,27,75,.18); }
.app small{ font-size:.74rem; color:var(--navy-2); font-weight:700; text-align:center; line-height:1.2; }

/* ---------- Bands (CTA / guarantee / migration) ---------- */
.band{ background:var(--grad); color:#fff; border-radius:var(--r-lg); padding:48px; display:flex; align-items:center; justify-content:space-between; gap:30px; box-shadow:0 24px 60px rgba(28,64,242,.30); position:relative; overflow:hidden; }
.band::after{ content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size:40px 40px; mask-image:radial-gradient(70% 120% at 100% 0,#000,transparent 70%); }
.band > *{ position:relative; z-index:2; }
.band h2{ color:#fff; margin-bottom:8px; }
.band p{ color:rgba(255,255,255,.9); margin:0; max-width:560px; }
.band__icon{ width:74px; height:74px; border-radius:20px; background:rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center; flex:none; }
.band__icon svg{ width:38px; height:38px; color:#fff; }

/* ---------- Testimonials ---------- */
.testi__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:28px; box-shadow:var(--shadow-sm); }
.stars{ display:flex; gap:3px; margin-bottom:12px; color:#ffb400; }
.stars svg{ width:18px; height:18px; }
.testi p{ color:var(--navy-2); font-size:1rem; }
.testi__who{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.avatar{ width:46px; height:46px; border-radius:50%; background:var(--grad); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; }
.testi__who b{ color:var(--navy); display:block; font-size:.95rem; }
.testi__who span{ color:var(--muted); font-size:.85rem; }

/* ---------- FAQ ---------- */
.faq{ max-width:820px; margin:0 auto; }
.faq__item{ border:1px solid var(--line); border-radius:var(--r); background:#fff; margin-bottom:14px; overflow:hidden; transition:box-shadow .2s, border-color .2s; }
.faq__item.open{ box-shadow:var(--shadow-sm); border-color:var(--tint); }
.faq__q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:18px; text-align:left; padding:20px 24px; font-weight:700; color:var(--navy); font-size:1.04rem; }
.faq__q .ic{ width:26px; height:26px; border-radius:50%; background:var(--bg-soft-2); display:flex; align-items:center; justify-content:center; flex:none; transition:.2s; }
.faq__q .ic svg{ width:15px; height:15px; color:var(--blue); transition:transform .2s; }
.faq__item.open .ic{ background:var(--grad); } .faq__item.open .ic svg{ color:#fff; transform:rotate(180deg); }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .28s ease; }
.faq__a p{ padding:0 24px 22px; margin:0; color:var(--slate); }

/* ---------- Footer ---------- */
.footer{ background:var(--navy); color:#a9b6da; padding:70px 0 30px; }
.footer__top{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; padding-bottom:46px; border-bottom:1px solid rgba(255,255,255,.10); }
.footer .brand{ color:#fff; margin-bottom:14px; }
.footer__about p{ color:#93a2cc; font-size:.94rem; max-width:300px; }
.footer h4{ color:#fff; font-size:.95rem; letter-spacing:.04em; text-transform:uppercase; margin-bottom:18px; }
.footer__col a{ display:block; padding:6px 0; color:#a9b6da; font-size:.94rem; transition:color .15s, padding .15s; }
.footer__col a:hover{ color:#fff; padding-left:4px; }
.footer__contact a{ display:flex; align-items:center; gap:10px; }
.footer__contact svg{ width:17px; height:17px; color:#37d0ff; }
.socials{ display:flex; gap:10px; margin-top:18px; }
.socials a{ width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:.2s; }
.socials a:hover{ background:var(--grad); transform:translateY(-3px); }
.socials svg{ width:18px; height:18px; color:#fff; }
.footer__bottom{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding-top:24px; flex-wrap:wrap; font-size:.88rem; color:#8294c0; }
.footer__bottom a{ color:#a9b6da; } .footer__bottom a:hover{ color:#fff; }

/* Chat widget (WhatsApp) */
.sky-chat{ position:fixed; right:22px; bottom:22px; z-index:90; }
.sky-chat__launch{ position:relative; width:60px; height:60px; border-radius:50%; background:#25d366; box-shadow:0 12px 30px rgba(37,211,102,.45); display:flex; align-items:center; justify-content:center; transition:transform .2s; }
.sky-chat__launch:hover{ transform:scale(1.07); }
.sky-chat__launch svg{ width:32px; height:32px; }
.sky-chat__dot{ position:absolute; top:-3px; right:-3px; min-width:20px; height:20px; padding:0 5px; border-radius:var(--r-pill); background:var(--blue); color:#fff; font-size:.72rem; font-weight:800; display:flex; align-items:center; justify-content:center; border:2px solid #fff; }
.sky-chat.open .sky-chat__dot{ display:none; }

.sky-chat__panel{
  position:absolute; right:0; bottom:74px; width:340px; max-width:calc(100vw - 44px);
  background:#fff; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); overflow:hidden;
  opacity:0; visibility:hidden; transform:translateY(16px) scale(.97); transform-origin:bottom right;
  transition:opacity .22s ease, transform .22s ease, visibility .22s;
}
.sky-chat.open .sky-chat__panel{ opacity:1; visibility:visible; transform:none; }
.sky-chat__head{ display:flex; align-items:center; gap:12px; padding:16px 18px; background:var(--grad); color:#fff; }
.sky-chat__av{ width:42px; height:42px; border-radius:50%; background:rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; flex:none; overflow:hidden; }
.sky-chat__av img{ width:26px; height:26px; }
.sky-chat__id{ flex:1; min-width:0; }
.sky-chat__name{ font-weight:800; font-size:1rem; line-height:1.2; }
.sky-chat__status{ display:flex; align-items:center; gap:6px; font-size:.78rem; color:rgba(255,255,255,.9); }
.sky-chat__status span{ width:8px; height:8px; border-radius:50%; background:#3ddc84; box-shadow:0 0 0 0 rgba(61,220,132,.7); animation:pulseG 1.8s infinite; }
@keyframes pulseG{ 0%{box-shadow:0 0 0 0 rgba(61,220,132,.6)} 70%{box-shadow:0 0 0 8px rgba(61,220,132,0)} 100%{box-shadow:0 0 0 0 rgba(61,220,132,0)} }
.sky-chat__close{ width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; background:rgba(255,255,255,.14); flex:none; transition:background .2s; }
.sky-chat__close:hover{ background:rgba(255,255,255,.26); }

.sky-chat__body{ padding:20px 18px; background:var(--bg-soft); display:flex; flex-direction:column; gap:10px; max-height:300px; overflow-y:auto; }
.sky-chat__msg{ align-self:flex-start; max-width:85%; background:#fff; color:var(--navy-2); padding:11px 15px; border-radius:4px 16px 16px 16px; box-shadow:var(--shadow-sm); font-size:.92rem; line-height:1.5;
  opacity:0; transform:translateY(8px); transition:opacity .3s ease, transform .3s ease; }
.sky-chat__msg.show{ opacity:1; transform:none; }
.sky-chat__typing{ align-self:flex-start; display:none; gap:4px; background:#fff; padding:13px 16px; border-radius:4px 16px 16px 16px; box-shadow:var(--shadow-sm); }
.sky-chat__typing.show{ display:flex; }
.sky-chat__typing i{ width:7px; height:7px; border-radius:50%; background:var(--muted); animation:typing 1.3s infinite ease-in-out; }
.sky-chat__typing i:nth-child(2){ animation-delay:.18s } .sky-chat__typing i:nth-child(3){ animation-delay:.36s }
@keyframes typing{ 0%,60%,100%{ transform:translateY(0); opacity:.4 } 30%{ transform:translateY(-5px); opacity:1 } }

.sky-chat__cta{ display:flex; align-items:center; justify-content:center; gap:8px; margin:0; padding:15px; background:#25d366; color:#fff; font-weight:700; font-size:.95rem;
  opacity:0; max-height:0; overflow:hidden; transition:opacity .3s ease, max-height .3s ease; }
.sky-chat__cta.show{ opacity:1; max-height:70px; }
.sky-chat__cta:hover{ background:#1ebe5a; }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .hero__grid{ grid-template-columns:1fr; gap:40px; }
  .hero__visual{ order:-1; max-width:520px; }
  .split{ grid-template-columns:1fr; gap:34px; }
  .footer__top{ grid-template-columns:1fr 1fr; gap:30px; }
  .pricing__grid{ grid-template-columns:repeat(2,1fr); }
  .features__grid{ grid-template-columns:repeat(2,1fr); }
  .platforms__grid{ grid-template-columns:repeat(3,1fr); }
  .testi__grid{ grid-template-columns:1fr; }
  .band{ flex-direction:column; text-align:center; align-items:flex-start; }
}
@media (max-width:760px){
  .nav, .header__actions .link-login{ display:none; }
  .hamburger{ display:flex; }
  .header__actions{ margin-left:auto; }
  .nav.is-open{
    display:flex; flex-direction:column; align-items:stretch; gap:4px;
    position:fixed; top:var(--header-h); left:0; right:0; margin:0; padding:16px var(--gutter) 24px;
    background:#fff; box-shadow:var(--shadow); border-top:1px solid var(--line); max-height:calc(100vh - var(--header-h)); overflow:auto;
  }
  .nav.is-open a{ padding:13px 14px; font-size:1rem; }
  .topbar__right{ display:none; }
  .topbar__left{ justify-content:center; width:100%; font-size:.78rem; }
  .topbar__inner{ justify-content:center; }
  .section{ padding:60px 0; }
  .domain__form{ flex-direction:column; }
  .domain__card{ padding:24px; }
  .band{ padding:34px 24px; }
}
@media (max-width:560px){
  .pricing__grid, .features__grid, .platforms__grid, .appgrid{ grid-template-columns:1fr; }
  .appgrid{ grid-template-columns:repeat(4,1fr); }
  .platforms__grid{ grid-template-columns:repeat(2,1fr); }
  .dash__stats{ grid-template-columns:1fr 1fr; }
  .footer__top{ grid-template-columns:1fr; }
  .footer__bottom{ flex-direction:column; text-align:center; }
  .dash__float{ display:none; }
}
@media (max-width:480px){
  /* Free up header space on small phones: hero already carries the main CTAs */
  .header__actions .btn--primary{ display:none; }
  .lang__btn{ padding:9px 10px; }
  :root{ --gutter:16px; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; transition:none; }
}
