/* =========================================================
   HostLagbe — Design tokens
   Palette: #FFFFFF base / #0B0E14 ink / #2B4EFF orbit-blue
            #FF5A1F ignition-orange / #E4E7EC hairline / #6B7280 muted
   Type: Space Grotesk (display) / Inter (body) / IBM Plex Mono (data)
   ========================================================= */

:root{
  --white:#ffffff;
  --ink:#0B0E14;
  --ink-soft:#3A3F4B;
  --muted:#6B7280;
  --line:#E4E7EC;
  --line-soft:#F1F2F5;
  --blue:#2B4EFF;
  --orange:#FF5A1F;
  --surface:#FAFAFB;

  /* System font stacks only — zero external requests, instant paint.
     -apple-system/Segoe UI/Roboto give a clean geometric grotesk feel
     on every platform; ui-monospace covers the mission-clock digits.
     Noto Sans Bengali / Kohinoor Bangla are added as fallbacks so the
     Bangla tagline renders with proper glyphs on devices that have them. */
  --font-display:-apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans Bengali', sans-serif;
  --font-body:-apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans Bengali', sans-serif;
  --font-mono: ui-monospace, 'SFMono-Regular', 'Cascadia Mono', 'Consolas', monospace;

  --wrap:1180px;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-sm:10px;

  --ease: cubic-bezier(.22,.9,.32,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
button{font:inherit;}

.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 24px;
}

.skip-link{
  position:absolute; left:-999px; top:0;
  background:var(--ink); color:var(--white); padding:12px 18px;
  border-radius:0 0 8px 0; z-index:200;
}
.skip-link:focus{ left:0; }

:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:3px;
  border-radius:4px;
}

/* =========================================================
   Typography
   ========================================================= */
h1,h2,h3{
  font-family:var(--font-display);
  color:var(--ink);
  line-height:1.05;
  margin:0;
  letter-spacing:-0.02em;
}
h2{ font-size:clamp(1.8rem, 3.4vw, 2.6rem); font-weight:600; }
h3{ font-size:1.15rem; font-weight:600; letter-spacing:-0.01em; }
p{ margin:0; color:var(--ink-soft); line-height:1.6; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 16px;
}
.eyebrow-dot{
  width:7px; height:7px; border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 3px rgba(255,90,31,.15);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.55; transform:scale(.82); }
}

.section-sub{
  max-width:520px;
  font-size:1.02rem;
  color:var(--muted);
}
.section-head{
  max-width:640px;
  margin-bottom:48px;
}
.section-head h2{ margin-bottom:14px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:13px 26px;
  border-radius:100px;
  font-weight:600;
  font-size:.95rem;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(.97); }
.btn-primary{
  background:var(--ink);
  color:var(--white);
  box-shadow:0 1px 2px rgba(11,14,20,.08);
}
.btn-primary:hover{
  background:#181C26;
  box-shadow:0 10px 24px -8px rgba(11,14,20,.45);
  transform:translateY(-2px);
}
.btn-ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.btn-ghost:hover{
  border-color:var(--ink);
  transform:translateY(-2px);
}
.btn-large{ padding:15px 30px; font-size:1rem; }
.btn-small{ padding:9px 18px; font-size:.85rem; }

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:14px; padding-bottom:14px;
  gap:20px;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{ display:inline-flex; }
.logo-word{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.15rem;
  letter-spacing:-0.01em;
}
.logo-word em{ font-style:normal; color:var(--orange); }

.header-nav{
  display:none;
  gap:32px;
  font-size:.92rem;
  font-weight:500;
  color:var(--ink-soft);
}
.header-nav a{ transition:color .2s ease; }
.header-nav a:hover{ color:var(--ink); }

@media(min-width:820px){
  .header-nav{ display:flex; }
}
.header-cta{ display:none; }
@media(min-width:600px){
  .header-cta{ display:inline-flex; }
}

/* ---- Mobile nav toggle + drawer ---- */
.mobile-nav-toggle{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:5px;
  width:40px; height:40px; flex-shrink:0;
  background:none; border:1px solid var(--line); border-radius:8px; cursor:pointer;
  padding:0;
}
.mobile-nav-toggle span{
  display:block; width:18px; height:2px; background:var(--ink); border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media(min-width:820px){
  .mobile-nav-toggle{ display:none; }
}

.mobile-nav-overlay{
  display:none;
  position:fixed; inset:0; background:rgba(11,14,20,.45);
  z-index:150; opacity:0; transition:opacity .25s ease;
}
.mobile-nav-overlay.is-visible{ display:block; opacity:1; }

.mobile-nav-drawer{
  position:fixed; top:0; right:0; height:100vh; width:82vw; max-width:320px;
  background:var(--white);
  transform:translateX(100%); transition:transform .28s ease;
  z-index:200; box-shadow:0 0 40px rgba(11,14,20,.15);
  display:flex; flex-direction:column;
  padding:88px 28px 32px;
  overflow-y:auto;
}
.mobile-nav-drawer.is-open{ transform:translateX(0); }
.mobile-nav-drawer-links{
  display:flex; flex-direction:column; gap:4px;
  margin-bottom:32px;
}
.mobile-nav-drawer-links a{
  padding:14px 4px;
  font-size:1.05rem; font-weight:600; color:var(--ink);
  border-bottom:1px solid var(--line-soft);
  text-decoration:none;
}
.mobile-nav-drawer-actions{
  display:flex; flex-direction:column; gap:10px;
  margin-top:auto;
}
.mobile-nav-drawer-actions .btn{ width:100%; text-align:center; }

@media(min-width:820px){
  .mobile-nav-overlay, .mobile-nav-drawer{ display:none; }
}

/* =========================================================
   Hero + orbit field
   ========================================================= */
.hero{
  position:relative;
  padding:96px 0 60px;
  overflow:hidden;
}
.orbit-field{
  position:absolute;
  inset:-10% -10% auto -10%;
  height:1100px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:0;
  pointer-events:none;
}
.orbit{
  position:absolute;
  border:1px solid var(--line);
  border-radius:50%;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
}
.orbit-1{ width:420px; height:420px; animation:spin 40s linear infinite; }
.orbit-2{ width:640px; height:640px; animation:spin 60s linear infinite reverse; border-color:var(--line-soft); }
.orbit-3{ width:860px; height:860px; animation:spin 90s linear infinite; }
.orbit-4{ width:1080px; height:1080px; animation:spin 130s linear infinite reverse; border-color:var(--line-soft); }

@keyframes spin{
  from{ transform:translate(-50%,-50%) rotate(0deg); }
  to{ transform:translate(-50%,-50%) rotate(360deg); }
}

.sat{
  position:absolute;
  width:9px; height:9px;
  border-radius:50%;
  background:var(--ink);
  top:50%; left:100%;
  transform:translate(-50%,-50%);
  box-shadow:0 0 0 5px rgba(11,14,20,.05);
}
.sat-a{ background:var(--orange); box-shadow:0 0 0 5px rgba(255,90,31,.12); }
.sat-b{ width:6px; height:6px; }
.sat-c{ background:var(--blue); box-shadow:0 0 0 5px rgba(43,78,255,.1); }
.sat-d{ width:6px; height:6px; }

.starfield{
  position:absolute; inset:0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(11,14,20,.14) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 18%, rgba(11,14,20,.12) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 55%, rgba(11,14,20,.1) 0, transparent 100%),
    radial-gradient(2px 2px at 12% 70%, rgba(11,14,20,.1) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 45% 82%, rgba(11,14,20,.12) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 40%, rgba(11,14,20,.08) 0, transparent 100%);
}

.hero-inner{
  position:relative; z-index:1;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
}

.hero-title{
  font-size:clamp(2.6rem, 7.4vw, 5.2rem);
  font-weight:700;
  margin:0 0 22px;
}
.accent-text{
  background:linear-gradient(92deg, var(--ink) 0%, var(--blue) 55%, var(--orange) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-sub{
  max-width:560px;
  font-size:1.12rem;
  margin-bottom:36px;
}
.hero-sub time{ font-weight:600; color:var(--ink); }

.hero-bangla{
  font-size:1.15rem;
  font-weight:500;
  color:var(--ink-soft);
  margin-bottom:14px;
}

.hero-actions{
  display:flex; gap:14px; flex-wrap:wrap;
  justify-content:center;
  margin-bottom:64px;
}

/* Countdown — glass panel */
.countdown-panel{
  width:100%;
  max-width:640px;
  background:rgba(255,255,255,.6);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px 24px 26px;
  backdrop-filter:blur(18px) saturate(1.3);
  -webkit-backdrop-filter:blur(18px) saturate(1.3);
  box-shadow:0 24px 60px -30px rgba(11,14,20,.25);
}
.countdown-label{
  font-family:var(--font-mono);
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:18px;
}
.countdown-grid{
  display:flex; align-items:center; justify-content:center;
  gap:10px;
}
.count-card{
  display:flex; flex-direction:column; align-items:center;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:14px 6px;
  min-width:74px;
  flex:1;
  max-width:110px;
}
.count-num{
  font-family:var(--font-mono);
  font-size:clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight:600;
  font-variant-numeric:tabular-nums;
  color:var(--ink);
  line-height:1;
}
.count-unit{
  margin-top:6px;
  font-size:.68rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}
.count-sep{
  font-family:var(--font-mono);
  font-size:1.4rem;
  color:var(--line);
  font-weight:600;
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--surface);
}
.trust-inner{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  padding:32px 24px;
}
@media(min-width:700px){
  .trust-inner{ grid-template-columns:repeat(4,1fr); }
}
.trust-item{
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
  gap:4px;
}
.trust-num{
  font-family:var(--font-display);
  font-size:1.7rem;
  font-weight:700;
}
.trust-label{
  font-size:.78rem;
  color:var(--muted);
  letter-spacing:.01em;
}

/* =========================================================
   Products
   ========================================================= */
.products{ padding:104px 0; }

.product-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media(min-width:640px){
  .product-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(min-width:980px){
  .product-grid{ grid-template-columns:repeat(3,1fr); }
}

.product-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:30px 26px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.product-card:hover{
  transform:translateY(-5px);
  border-color:transparent;
  box-shadow:0 30px 60px -30px rgba(11,14,20,.22);
}
.product-icon{
  width:46px; height:46px;
  margin-bottom:20px;
}
.product-card h3{ margin-bottom:10px; }
.product-card p{ font-size:.94rem; }

/* =========================================================
   Mission band
   ========================================================= */
.mission-band{
  background:var(--ink);
  padding:88px 0;
  text-align:center;
}
.mission-inner h2{
  color:var(--white);
  margin-bottom:16px;
}
.mission-inner p{
  color:rgba(255,255,255,.62);
  max-width:520px;
  margin:0 auto;
}

/* =========================================================
   Contact
   ========================================================= */
.contact{ padding:104px 0; background:var(--surface); }
.contact-inner{
  display:flex;
  flex-direction:column;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:8px;
}
@media(min-width:640px){
  .contact-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(min-width:980px){
  .contact-grid{ grid-template-columns:repeat(4,1fr); }
}
a.contact-card{
  display:flex;
  flex-direction:column;
  gap:4px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:22px 20px;
  text-decoration:none;
  color:inherit;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
a.contact-card:hover,
a.contact-card:focus-visible{
  transform:translateY(-4px);
  border-color:transparent;
  box-shadow:0 24px 50px -28px rgba(11,14,20,.22);
}
.contact-icon{
  display:block;
  width:34px;
  height:34px;
  margin-bottom:12px;
}
.contact-icon svg{ width:100%; height:100%; display:block; }
.contact-label{
  display:block;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
}
.contact-value{
  display:block;
  font-weight:600;
  font-size:.98rem;
  color:var(--ink);
}

/* =========================================================
   Notify form
   ========================================================= */
.notify{ padding:104px 0; }
.notify-inner{ display:flex; justify-content:center; }
.notify-card{
  width:100%;
  max-width:520px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:44px 36px;
  text-align:center;
}
.notify-card .eyebrow{ justify-content:center; }
.notify-card h2{ margin-bottom:12px; }
.notify-card .section-sub{ margin:0 auto 30px; }

.notify-form{
  display:flex; flex-direction:column; gap:16px;
  text-align:left;
}
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{
  font-size:.82rem; font-weight:600; color:var(--ink-soft);
}
.field input{
  font:inherit;
  padding:13px 16px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:var(--white);
  color:var(--ink);
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(43,78,255,.12);
  outline:none;
}
.field input:invalid:not(:placeholder-shown){
  border-color:#E0554A;
}
.notify-submit{ margin-top:6px; width:100%; }
.notify-submit[disabled]{ opacity:.6; cursor:not-allowed; }

.form-status{
  font-size:.86rem;
  min-height:20px;
  margin:0;
}
.form-status.success{ color:#1E8A5F; }
.form-status.error{ color:#C13B2E; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  border-top:1px solid var(--line);
  padding:40px 0;
}
.footer-inner{
  display:flex; flex-direction:column; align-items:center;
  gap:10px; text-align:center;
}
.logo-footer .logo-word{ font-size:1rem; }
.footer-tag{ font-size:.85rem; color:var(--muted); margin:0; }
.footer-tag-bn{ font-size:.82rem; opacity:.85; }
.footer-contact{
  font-size:.85rem;
  color:var(--ink-soft);
  display:flex; align-items:center; gap:8px;
}
.footer-contact a:hover{ color:var(--blue); }
.footer-copy{ font-size:.78rem; color:var(--muted); opacity:.7; }

/* =========================================================
   Scroll reveal
   ========================================================= */
/* Reveal-on-scroll: CSS never hides content by default.
   Only .js-ready (set immediately by script.js) opts elements into the
   hidden starting state, so if JS is blocked/slow/broken, everything
   is simply visible from the start — nothing depends on JS to appear. */
.js-ready [data-reveal]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}
noscript .products,
noscript .contact{ display:block; }
.hero-inner [data-reveal]:nth-child(1){ transition-delay:.05s; }
.hero-inner [data-reveal]:nth-child(2){ transition-delay:.15s; }
.hero-inner [data-reveal]:nth-child(3){ transition-delay:.25s; }
.hero-inner [data-reveal]:nth-child(4){ transition-delay:.35s; }
.hero-inner [data-reveal]:nth-child(5){ transition-delay:.45s; }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .orbit, .eyebrow-dot{ animation:none !important; }
  [data-reveal]{
    opacity:1; transform:none; transition:none;
  }
  .btn, .product-card{ transition:none; }
}

@media(max-width:480px){
  .countdown-grid{ gap:6px; }
  .count-card{ min-width:0; padding:10px 4px; }
  .count-sep{ font-size:1rem; }
}
/* =========================================================
   HostLagbe — Production additions
   Loaded after styles.css. Only new/changed rules live here
   so the base design system file stays untouched.
   ========================================================= */

/* ---------------------------------------------------------
   Loading overlay
   Shows the rocket-H mark with a spinning orbit ring while
   the page paints, then fades out. Purely cosmetic — never
   blocks content if JS fails (see production.js: a 700ms
   hard-timeout removes it regardless).
--------------------------------------------------------- */
.loading-overlay{
  position:fixed;
  inset:0;
  z-index:999;
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .5s var(--ease), visibility .5s var(--ease);
}
.loading-overlay.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.loading-mark{
  position:relative;
  width:64px; height:64px;
  display:flex; align-items:center; justify-content:center;
}
.loading-mark svg{ position:relative; z-index:1; }
.loading-ring{
  position:absolute;
  inset:-14px;
  border:2px solid var(--line);
  border-top-color:var(--orange);
  border-radius:50%;
  animation:loading-spin .9s linear infinite;
}
@keyframes loading-spin{
  to{ transform:rotate(360deg); }
}
@media (prefers-reduced-motion: reduce){
  .loading-ring{ animation:none; border-top-color:var(--line); }
}

/* ---------------------------------------------------------
   Header: login link + actions group
--------------------------------------------------------- */
.header-actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.header-login{
  display:none;
  font-size:.9rem;
  font-weight:500;
  color:var(--ink-soft);
  transition:color .2s ease;
}
.header-login:hover{ color:var(--ink); }
@media(min-width:600px){
  .header-login{ display:inline-flex; }
}

/* ---------------------------------------------------------
   Pricing teaser strip (replaces the countdown panel)
   Reuses the glass-panel + mono-digit language from the
   countdown so the hero keeps its "mission console" feel.
--------------------------------------------------------- */
.pricing-teaser{
  width:100%;
  max-width:720px;
  background:rgba(255,255,255,.6);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px 24px 26px;
  backdrop-filter:blur(18px) saturate(1.3);
  -webkit-backdrop-filter:blur(18px) saturate(1.3);
  box-shadow:0 24px 60px -30px rgba(11,14,20,.25);
}
.pricing-teaser-label{
  font-family:var(--font-mono);
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:18px;
}
.pricing-teaser-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
@media(min-width:560px){
  .pricing-teaser-grid{ grid-template-columns:repeat(4,1fr); }
}
.price-card{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:16px 8px;
  transition:transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover{
  transform:translateY(-3px);
  border-color:transparent;
  box-shadow:0 20px 40px -24px rgba(11,14,20,.3);
}
.price-num{
  font-family:var(--font-mono);
  font-size:1.4rem;
  font-weight:600;
  font-variant-numeric:tabular-nums;
  color:var(--ink);
  line-height:1;
}
.price-currency{
  font-size:.85rem;
  color:var(--orange);
  margin-right:1px;
}
.price-unit{
  font-size:.72rem;
  color:var(--muted);
  text-align:center;
  line-height:1.3;
}

/* ---------------------------------------------------------
   Product cards as links: add a "from ৳X" affordance and
   an arrow micro-interaction on hover
--------------------------------------------------------- */
a.product-card{
  text-decoration:none;
  color:inherit;
  display:flex;
  flex-direction:column;
}
.product-link{
  margin-top:16px;
  font-size:.85rem;
  font-weight:600;
  color:var(--blue);
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.product-link span{
  transition:transform .3s var(--ease);
  display:inline-block;
}
a.product-card:hover .product-link span{
  transform:translateX(4px);
}

/* ---------------------------------------------------------
   Full production footer
--------------------------------------------------------- */
.site-footer{
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  padding-bottom:48px;
}
@media(min-width:700px){
  .footer-grid{ grid-template-columns:1.4fr repeat(4, 1fr); }
}

.footer-brand .logo-footer{ margin-bottom:16px; }
.footer-brand .footer-tag{
  font-size:.9rem;
  color:var(--ink-soft);
  line-height:1.5;
  margin-bottom:8px;
}
.footer-tag-bn{
  font-size:.85rem;
  color:var(--muted);
  margin-bottom:20px;
}
.footer-status{
  display:flex; align-items:center; gap:8px;
  font-size:.82rem;
  color:var(--ink-soft);
}
.footer-status a{ color:var(--ink); font-weight:600; }
.footer-status a:hover{ color:var(--blue); }
.status-dot{
  width:7px; height:7px; border-radius:50%;
  background:#1E8A5F;
  box-shadow:0 0 0 3px rgba(30,138,95,.15);
  flex-shrink:0;
  animation:pulse 2.4s ease-in-out infinite;
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-col h3{
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:600;
  margin-bottom:4px;
}
.footer-col a{
  font-size:.9rem;
  color:var(--ink-soft);
  transition:color .2s ease;
  width:fit-content;
}
.footer-col a:hover{ color:var(--blue); }

.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
  padding:28px 24px;
  border-top:1px solid var(--line);
  text-align:center;
}
@media(min-width:700px){
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
    text-align:left;
  }
}
.footer-copy{ font-size:.8rem; color:var(--muted); margin:0; }
.footer-social{
  display:flex; gap:14px;
}
.footer-social a{
  color:var(--muted);
  transition:color .2s ease, transform .2s ease;
}
.footer-social a:hover{
  color:var(--ink);
  transform:translateY(-2px);
}
.footer-payments{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.footer-payments span{
  font-size:.7rem;
  font-weight:600;
  color:var(--muted);
  border:1px solid var(--line);
  border-radius:6px;
  padding:4px 9px;
}

/* ---------------------------------------------------------
   Extra light-touch animations
--------------------------------------------------------- */
.btn-primary, .price-card, a.product-card, .contact-card{
  will-change:transform;
}

/* Subtle hero entrance parallax on the orbit field for
   pointer-capable devices only — skipped on touch/reduced
   motion so it never costs anything on mobile. */
@media (hover:hover) and (pointer:fine){
  .orbit-field{ transition:transform .4s ease-out; }
}
/* =========================================================
   HostLagbe — Page components
   Shared across product pages, FAQ, about, legal pages.
   Loaded after styles.css + production.css.
   ========================================================= */

/* ---------------------------------------------------------
   Page header (used on every inner page instead of the
   full hero — smaller orbit accent, breadcrumb, title)
--------------------------------------------------------- */
.page-header{
  position:relative;
  padding:64px 0 56px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.page-header .orbit-field{
  height:640px;
  opacity:.6;
}
.page-header-inner{
  position:relative;
  z-index:1;
}
.breadcrumb{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:.82rem;
  color:var(--muted);
  margin-bottom:18px;
}
.breadcrumb a{ color:var(--muted); transition:color .2s ease; }
.breadcrumb a:hover{ color:var(--ink); }
.breadcrumb-sep{ opacity:.5; }
.page-title{
  font-size:clamp(2rem, 5vw, 3.2rem);
  margin-bottom:14px;
}
.page-lede{
  max-width:600px;
  font-size:1.08rem;
}

/* ---------------------------------------------------------
   Plan pricing grid (rendered by data-loader.js, but the
   CSS is static so pages look right even before JS runs)
--------------------------------------------------------- */
.plans-section{ padding:72px 0 96px; }
.plans-mount{
  min-height:200px;
}
.plans-mount:not(.is-loaded)::before{
  content:"Loading plans…";
  display:block;
  text-align:center;
  padding:60px 0;
  font-family:var(--font-mono);
  font-size:.8rem;
  color:var(--muted);
  letter-spacing:.04em;
}

.plan-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  align-items:start;
}
@media(min-width:720px){
  .plan-grid{ grid-template-columns:repeat(3,1fr); }
}
.plan-grid:has(.plan-card:only-child){
  max-width:380px;
  margin:0 auto;
}

/* ---- Datacenter selector (dedicated-server style products) ---- */
.dc-selector{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin-bottom:32px;
}
.dc-chip{
  font-family:var(--font-mono);
  font-size:.82rem;
  padding:8px 18px;
  border:1px solid var(--line);
  border-radius:100px;
  color:var(--ink-soft);
  background:var(--white);
  cursor:pointer;
  transition:border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.dc-chip:hover{
  border-color:var(--ink);
  color:var(--ink);
  background:var(--surface);
}
.dc-chip-active{
  border-color:var(--ink);
  background:var(--ink);
  color:var(--white);
}
.dc-chip-active:hover{
  background:var(--ink);
  color:var(--white);
}
.plan-grid-empty{
  grid-column:1/-1;
  text-align:center;
  padding:48px 0;
  color:var(--muted);
  font-size:.95rem;
}

.plan-card{
  position:relative;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:32px 26px;
  display:flex;
  flex-direction:column;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.plan-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px -30px rgba(11,14,20,.22);
}
.plan-card-recommended{
  border-color:var(--ink);
  box-shadow:0 20px 50px -28px rgba(11,14,20,.28);
}
.plan-badge{
  position:absolute;
  top:-12px; left:26px;
  background:var(--orange);
  color:var(--white);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:5px 12px;
  border-radius:100px;
}
.plan-label{
  font-size:1.1rem;
  margin-bottom:14px;
}
.plan-price{
  display:flex;
  align-items:baseline;
  gap:4px;
  margin-bottom:22px;
}
.plan-price-num{
  font-family:var(--font-mono);
  font-size:2rem;
  font-weight:600;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}
.plan-currency{ font-size:1.1rem; color:var(--orange); }
.plan-cycle{ font-size:.85rem; color:var(--muted); }

.plan-features{
  list-style:none;
  margin:0 0 28px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:11px;
  flex:1;
}
.plan-features li{
  display:flex;
  align-items:flex-start;
  gap:9px;
  font-size:.9rem;
  color:var(--ink-soft);
}
.feature-check{
  color:var(--orange);
  font-weight:700;
  flex-shrink:0;
  line-height:1.4;
}
.plan-cta{ width:100%; }

/* ---------------------------------------------------------
   FAQ accordion
--------------------------------------------------------- */
.faq-section{ padding:72px 0 96px; background:var(--surface); }
.faq-list{
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.faq-item{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  background:none;
  border:none;
  text-align:left;
  font-family:var(--font-body);
  font-size:.98rem;
  font-weight:600;
  color:var(--ink);
  cursor:pointer;
}
.faq-icon{
  flex-shrink:0;
  width:20px; height:20px;
  position:relative;
}
.faq-icon::before, .faq-icon::after{
  content:"";
  position:absolute;
  background:var(--ink);
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-icon::before{ top:9px; left:2px; width:16px; height:1.6px; }
.faq-icon::after{ top:2px; left:9px; width:1.6px; height:16px; }
.faq-item.is-open .faq-icon::after{ transform:rotate(90deg); opacity:0; }

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s var(--ease);
}
.faq-answer-inner{
  padding:0 22px 20px;
  font-size:.92rem;
  color:var(--ink-soft);
  line-height:1.6;
}

/* ---------------------------------------------------------
   Generic content section (About, Terms, Privacy, etc.)
--------------------------------------------------------- */
.content-section{ padding:72px 0 96px; }
.content-prose{
  max-width:760px;
}
.content-prose h2{
  font-size:1.5rem;
  margin:40px 0 14px;
}
.content-prose h2:first-child{ margin-top:0; }
.content-prose p{
  margin-bottom:16px;
  font-size:.98rem;
}
.content-prose ul{
  margin:0 0 16px;
  padding-left:22px;
}
.content-prose li{
  color:var(--ink-soft);
  font-size:.96rem;
  margin-bottom:8px;
  line-height:1.6;
}
.content-updated{
  font-family:var(--font-mono);
  font-size:.76rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:36px;
}

/* ---------------------------------------------------------
   Status page indicator list
--------------------------------------------------------- */
.status-grid{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:700px;
}
.status-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
}
.status-row-label{ font-weight:600; font-size:.94rem; }
.status-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:.8rem;
  font-weight:600;
  color:#1E8A5F;
}
.status-pill .status-dot{ background:#1E8A5F; }

/* ---------------------------------------------------------
   Order page (simple confirmation-style form)
--------------------------------------------------------- */
.order-summary{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  margin-bottom:32px;
}
.order-summary-row{
  display:flex;
  justify-content:space-between;
  font-size:.92rem;
  padding:8px 0;
  border-bottom:1px solid var(--line-soft);
}
.order-summary-row:last-child{ border-bottom:none; }

/* ---------------------------------------------------------
   Domain search bar
--------------------------------------------------------- */
.domain-search{
  display:flex;
  gap:10px;
  max-width:560px;
  margin:0 auto 12px;
  flex-wrap:wrap;
}
.domain-search input{
  flex:1;
  min-width:200px;
  font:inherit;
  padding:14px 18px;
  border-radius:100px;
  border:1px solid var(--line);
  background:var(--white);
}
.domain-search input:focus{
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(43,78,255,.12);
  outline:none;
}
.domain-tld-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  margin-top:20px;
}
.domain-tld-chip{
  font-family:var(--font-mono);
  font-size:.78rem;
  padding:6px 14px;
  border:1px solid var(--line);
  border-radius:100px;
  color:var(--ink-soft);
  background:var(--white);
  cursor:pointer;
  transition:border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.domain-tld-chip:hover{
  border-color:var(--ink);
  color:var(--ink);
  background:var(--surface);
}

/* ---- Register / Transfer tabs ---- */
.domain-mode-tabs{
  display:flex;
  gap:4px;
  max-width:280px;
  margin:0 auto 24px;
  padding:4px;
  background:var(--surface);
  border-radius:100px;
  border:1px solid var(--line);
}
.domain-mode-tab{
  flex:1;
  font:inherit;
  font-size:.88rem;
  font-weight:600;
  padding:10px 16px;
  border-radius:100px;
  border:none;
  background:none;
  color:var(--muted);
  cursor:pointer;
  transition:background .2s var(--ease), color .2s var(--ease);
}
.domain-mode-tab.is-active{
  background:var(--ink);
  color:#fff;
}
.domain-search-hint{
  text-align:center;
  font-size:.82rem;
  color:var(--muted);
  margin:0 0 8px;
}
/* =========================================================
   HostLagbe — Floating contact bubble
   Fixed-position "we're online" bubble with a radial menu of
   real contact channels. Pure CSS animation + minimal JS for
   open/close state. Matches the existing white/orange/blue
   system — no new colors introduced except per-brand icon fills,
   which are contained to the icon glyphs only.
   ========================================================= */

.contact-bubble{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:500;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:14px;
}

/* ---- Trigger button ---- */
.bubble-trigger{
  position:relative;
  width:60px; height:60px;
  border-radius:50%;
  background:var(--ink);
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 34px -12px rgba(11,14,20,.45);
  transition:transform .3s var(--ease), background .3s var(--ease);
}
.bubble-trigger:hover{ transform:translateY(-2px); }
.bubble-trigger:active{ transform:scale(.94); }

.bubble-trigger-icon{
  position:relative;
  width:24px; height:24px;
  display:flex; align-items:center; justify-content:center;
}
.bubble-trigger-icon svg{
  position:absolute;
  transition:opacity .25s var(--ease), transform .3s var(--ease);
}
.icon-chat{ opacity:1; transform:scale(1) rotate(0deg); }
.icon-close{ opacity:0; transform:scale(.5) rotate(-45deg); }
.contact-bubble.is-open .icon-chat{ opacity:0; transform:scale(.5) rotate(45deg); }
.contact-bubble.is-open .icon-close{ opacity:1; transform:scale(1) rotate(0deg); }

/* Pulse ring — signals "we're online" at rest */
.bubble-pulse{
  position:absolute;
  inset:0;
  border-radius:50%;
  border:2px solid var(--orange);
  animation:bubble-pulse 2.6s ease-out infinite;
  pointer-events:none;
}
.contact-bubble.is-open .bubble-pulse{ animation:none; opacity:0; }
@keyframes bubble-pulse{
  0%{ transform:scale(1); opacity:.7; }
  100%{ transform:scale(1.55); opacity:0; }
}

/* Online status dot */
.bubble-status-dot{
  position:absolute;
  top:-2px; right:-2px;
  width:14px; height:14px;
  border-radius:50%;
  background:#1E8A5F;
  border:2.5px solid var(--white);
}

/* "We're online" label — appears on hover, desktop only */
.bubble-label{
  position:absolute;
  right:72px;
  top:50%;
  transform:translateY(-50%) translateX(6px);
  background:var(--ink);
  color:var(--white);
  font-size:.8rem;
  font-weight:600;
  padding:8px 14px;
  border-radius:100px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
@media (hover:hover) and (pointer:fine){
  .bubble-trigger:hover .bubble-label{
    opacity:1;
    transform:translateY(-50%) translateX(0);
  }
}
.contact-bubble.is-open .bubble-label{ opacity:0 !important; }

/* ---- Radial menu ---- */
.bubble-menu{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}
.bubble-item{
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0;
  transform:translateY(14px) scale(.85);
  transition:opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events:none;
}
.contact-bubble.is-open .bubble-item{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}
/* Staggered entrance, bottom item (nearest trigger) appears first */
.contact-bubble.is-open .bubble-item:nth-child(5){ transition-delay:.02s; }
.contact-bubble.is-open .bubble-item:nth-child(4){ transition-delay:.06s; }
.contact-bubble.is-open .bubble-item:nth-child(3){ transition-delay:.10s; }
.contact-bubble.is-open .bubble-item:nth-child(2){ transition-delay:.14s; }
.contact-bubble.is-open .bubble-item:nth-child(1){ transition-delay:.18s; }

.bubble-item-label{
  background:var(--white);
  border:1px solid var(--line);
  color:var(--ink);
  font-size:.82rem;
  font-weight:600;
  padding:7px 14px;
  border-radius:100px;
  box-shadow:0 8px 20px -10px rgba(11,14,20,.2);
  white-space:nowrap;
}
.bubble-item-icon{
  width:48px; height:48px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  box-shadow:0 10px 24px -10px rgba(11,14,20,.35);
  transition:transform .25s var(--ease);
}
.bubble-item:hover .bubble-item-icon{ transform:scale(1.08); }
.bubble-item-icon svg{ width:24px; height:24px; }

/* Per-channel brand colors, scoped to the icon circle only */
.bubble-item-icon.whatsapp{ background:#25D366; }
.bubble-item-icon.messenger{ background:linear-gradient(135deg,#00B2FF,#006AFF); }
.bubble-item-icon.instagram{ background:radial-gradient(circle at 30% 110%, #FDF497 0%, #FD5949 45%, #D6249F 60%, #285AEB 90%); }
.bubble-item-icon.telegram{ background:#26A5E4; }
.bubble-item-icon.ticket{ background:var(--ink); }

@media (prefers-reduced-motion: reduce){
  .bubble-pulse{ animation:none; opacity:.4; }
  .bubble-item, .bubble-trigger-icon svg{ transition:none; }
}

@media(max-width:480px){
  .contact-bubble{ right:14px; bottom:14px; }
  .bubble-trigger{ width:54px; height:54px; }
  .bubble-item-icon{ width:44px; height:44px; }
  .bubble-item-label{ font-size:.78rem; }
}
/* =========================================================
   HostLagbe — Promo popup
   Shown on homepage load per admin config. Visual language
   matches the rest of the site exactly: white card, glass
   backdrop blur, orange accent, --ease curve, radius tokens.
   No new colors or motion patterns introduced.
   ========================================================= */

.popup-overlay{
  position:fixed;
  inset:0;
  z-index:800;
  background:rgba(11,14,20,.45);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s var(--ease), visibility .35s var(--ease);
}
.popup-overlay.is-visible{
  opacity:1;
  visibility:visible;
}

.popup-card{
  position:relative;
  width:100%;
  max-width:420px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:0 40px 90px -30px rgba(11,14,20,.4);
  overflow:hidden;
  transform:translateY(16px) scale(.97);
  transition:transform .4s var(--ease);
}
.popup-overlay.is-visible .popup-card{
  transform:translateY(0) scale(1);
}

.popup-close{
  position:absolute;
  top:12px; right:12px;
  z-index:2;
  width:32px; height:32px;
  border-radius:50%;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.popup-close:hover{ background:var(--white); transform:scale(1.06); }

.popup-track{
  position:relative;
  width:100%;
  overflow:hidden;
}
.popup-slide{
  display:none;
  flex-direction:column;
}
.popup-slide.is-active{
  display:flex;
  animation:popup-slide-in .4s var(--ease);
}
@keyframes popup-slide-in{
  from{ opacity:0; transform:translateX(24px); }
  to{ opacity:1; transform:translateX(0); }
}

.popup-image{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  background:var(--surface);
  display:block;
}

.popup-body{
  padding:26px 24px 24px;
}
.popup-headline{
  font-size:1.25rem;
  margin-bottom:8px;
}
.popup-text{
  font-size:.92rem;
  color:var(--ink-soft);
  margin-bottom:20px;
  line-height:1.55;
}
.popup-cta{
  width:100%;
  text-align:center;
}

.popup-dots{
  display:flex;
  justify-content:center;
  gap:7px;
  padding:0 0 20px;
}
.popup-dot{
  width:7px; height:7px;
  border-radius:50%;
  background:var(--line);
  border:none;
  padding:0;
  cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.popup-dot.is-active{
  background:var(--orange);
  transform:scale(1.3);
}

@media (prefers-reduced-motion: reduce){
  .popup-overlay, .popup-card, .popup-slide{ transition:none; animation:none; }
}
