/* ============================================================
   BROTHER'S HOST — Design System
   Mobile-first, responsive, component-based stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');

:root{
  /* Backgrounds */
  --bg-1:#F8FAFF;
  --bg-2:#FFFFFF;
  --bg-3:#F1F5FC;

  /* Primary */
  --primary-1:#0878E8;
  --primary-2:#168BFF;
  --primary-3:#0757B8;
  --gradient: linear-gradient(135deg, #0066D9, #19A8FF);

  /* Text */
  --text-1:#101522;
  --text-2:#05070B;
  --text-muted:#6B7280;

  /* Border */
  --border-1:#1976E8;
  --border-2:#D9E3F2;

  /* Status / accent */
  --success:#20B45A;
  --accent-purple:#6638E8;
  --accent-yellow:#F5B51B;

  --radius-lg:18px;
  --radius-md:12px;
  --radius-sm:8px;

  --shadow-card: 0 10px 30px rgba(20,60,120,.10);
  --shadow-card-hover: 0 18px 40px rgba(20,60,120,.16);
  --shadow-btn: 0 8px 20px rgba(0,110,230,0.25);

  --container-w: 1180px;
  --header-h: 76px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body{
  margin:0;
  font-family:"Poppins","Noto Sans Bengali",sans-serif;
  color:var(--text-1);
  background:
    radial-gradient(circle at 10% 10%, rgba(0,120,255,.12), transparent 25%),
    radial-gradient(circle at 90% 90%, rgba(0,120,255,.10), transparent 25%),
    var(--bg-1);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; }
section{ position:relative; }

h1,h2,h3,h4,h5,h6{
  margin:0 0 .5em;
  line-height:1.2;
  font-weight:700;
  color:var(--text-2);
  letter-spacing:-0.01em;
}
p{ margin:0 0 1em; color:var(--text-muted); line-height:1.7; }

.container{
  width:100%;
  max-width:var(--container-w);
  margin:0 auto;
  padding:0 20px;
}

/* ---------- Utility ---------- */
.section{ padding:64px 0; }
.section-sm{ padding:40px 0; }
.text-center{ text-align:center; }
.mt-0{margin-top:0} .mb-0{margin-bottom:0}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--primary-1);
  background:rgba(8,120,232,.08);
  border:1px solid rgba(8,120,232,.18);
  padding:7px 16px;
  border-radius:999px;
  margin-bottom:16px;
}
.eyebrow i{ font-size:14px; }

.section-head{
  max-width:640px;
  margin:0 auto 44px;
  text-align:center;
}
.section-head h2{
  font-size:clamp(26px,4.5vw,38px);
  margin-bottom:14px;
}
.section-head p{ font-size:16px; margin:0; }

.grad-text{
  background:var(--gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:var(--radius-md);
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px) scale(.99); }
.btn-primary{
  background:var(--gradient);
  color:#fff;
  box-shadow:var(--shadow-btn);
}
.btn-primary:hover{
  box-shadow:0 12px 28px rgba(0,110,230,0.35);
  transform:translateY(-2px);
}
.btn-white{
  background:#fff;
  color:var(--primary-2);
  box-shadow:0 8px 20px rgba(16,21,34,.12);
}
.btn-white:hover{ transform:translateY(-2px); box-shadow:0 14px 28px rgba(16,21,34,.18); }
.btn-outline{
  background:transparent;
  color:var(--text-1);
  border-color:var(--border-2);
}
.btn-outline:hover{ border-color:var(--primary-2); color:var(--primary-2); background:rgba(8,120,232,.05); }
.btn-ghost-light{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.35);
  backdrop-filter:blur(4px);
}
.btn-ghost-light:hover{ background:rgba(255,255,255,.22); transform:translateY(-2px); }
.btn-sm{ padding:10px 20px; font-size:14px; }
.btn-block{ width:100%; }

/* ---------- Top bar ---------- */
.topbar{
  background:var(--text-2);
  color:rgba(255,255,255,.75);
  font-size:13px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:9px;
  padding-bottom:9px;
}
.topbar-left{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.topbar a{ color:rgba(255,255,255,.75); transition:color .2s ease; }
.topbar a:hover{ color:#fff; }
.topbar-item{ display:inline-flex; align-items:center; gap:7px; }
.topbar-item i{ color:var(--primary-2); }
.topbar-right{ display:flex; align-items:center; gap:14px; }
.topbar-right .sep{ opacity:.35; }
@media (max-width: 767px){
  .topbar-left .topbar-item:last-child{ display:none; }
}
@media (max-width: 560px){
  .topbar{ font-size:12px; }
  .topbar .container{ padding-top:7px; padding-bottom:7px; }
}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--border-2);
  transition:box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled{
  box-shadow:0 8px 24px rgba(20,60,120,.10);
  background:rgba(255,255,255,.96);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  height:var(--header-h);
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand img{ height:34px; width:auto; }

.nav-desktop{ display:none; }
.nav-desktop > ul{ display:flex; align-items:center; gap:2px; }
.nav-desktop > ul > li{ position:relative; }
.nav-link{
  display:flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  border-radius:10px;
  font-weight:600;
  font-size:14.5px;
  color:var(--text-1);
  transition:color .2s ease, background .2s ease;
}
.nav-link i{ font-size:11px; transition:transform .2s ease; color:var(--text-muted); }
.nav-link:hover, .nav-item.is-open > .nav-link{ color:var(--primary-1); background:rgba(8,120,232,.06); }
.nav-item.is-open > .nav-link i{ transform:rotate(180deg); }
.nav-item.current > .nav-link{ color:var(--primary-1); }

.dropdown{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:230px;
  background:#fff;
  border:1px solid var(--border-2);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-card-hover);
  padding:8px;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-item:hover .dropdown,
.nav-item.is-open .dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.dropdown a{
  display:block;
  padding:10px 14px;
  border-radius:8px;
  font-size:14px;
  font-weight:500;
  color:var(--text-1);
}
.dropdown a:hover{ background:var(--bg-3); color:var(--primary-1); }

.nav-actions{ display:flex; align-items:center; gap:10px; }
.nav-actions .btn-outline{ display:none; }

.nav-toggle{
  width:44px; height:44px;
  border-radius:10px;
  border:1px solid var(--border-2);
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:20px;
  cursor:pointer;
  flex-shrink:0;
}

/* Mobile drawer */
.mobile-drawer{
  position:fixed;
  inset:0 0 0 auto;
  width:min(340px,86vw);
  height:100vh;
  background:#fff;
  z-index:999;
  box-shadow:-16px 0 40px rgba(10,20,40,.18);
  transform:translateX(100%);
  transition:transform .3s ease;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}
.mobile-drawer.is-open{ transform:translateX(0); }
.drawer-overlay{
  position:fixed; inset:0;
  background:rgba(8,14,28,.45);
  z-index:998;
  opacity:0; visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.drawer-overlay.is-open{ opacity:1; visibility:visible; }
.drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 20px;
  border-bottom:1px solid var(--border-2);
}
.drawer-close{
  width:38px;height:38px;border-radius:10px;border:1px solid var(--border-2);
  background:var(--bg-3); display:flex;align-items:center;justify-content:center;font-size:18px;cursor:pointer;
}
.drawer-menu{ padding:10px 12px; flex:1; }
.drawer-menu > li{ border-bottom:1px solid var(--bg-3); }
.drawer-link{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 10px;
  font-weight:600;
  font-size:15px;
  color:var(--text-1);
  cursor:pointer;
}
.drawer-link i{ font-size:13px; color:var(--text-muted); transition:transform .2s ease; }
.drawer-item.is-open > .drawer-link i{ transform:rotate(180deg); }
.drawer-sub{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding-left:14px;
}
.drawer-item.is-open .drawer-sub{ max-height:400px; }
.drawer-sub a{
  display:block;
  padding:11px 10px;
  font-size:14px;
  color:var(--text-muted);
  font-weight:500;
}
.drawer-sub a:hover{ color:var(--primary-1); }
.drawer-foot{
  padding:18px 20px 26px;
  display:flex;
  flex-direction:column;
  gap:10px;
  border-top:1px solid var(--border-2);
}

@media (min-width:1050px){
  .nav-desktop{ display:block; }
  .nav-toggle{ display:none; }
  .nav-actions .btn-outline{ display:inline-flex; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  background:var(--gradient);
  padding:64px 0 110px;
}
.hero::before,.hero::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  pointer-events:none;
}
.hero::before{ width:420px;height:420px; top:-160px; right:-120px; }
.hero::after{ width:280px;height:280px; bottom:-140px; left:-80px; background:rgba(255,255,255,.08); }
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
.hero-badge{
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  font-size:13px; font-weight:700;
  padding:8px 14px;
  border-radius:999px;
  backdrop-filter:blur(6px);
}
.hero-badge b{ color:var(--accent-yellow); font-weight:800; }
.hero h1{
  color:#fff;
  font-size:clamp(30px,5.4vw,50px);
  margin-bottom:18px;
  letter-spacing:-0.02em;
}
.hero-typed{ color:var(--accent-yellow); font-weight:700; }
.hero p.lead{
  color:rgba(255,255,255,.88);
  font-size:17px;
  max-width:520px;
  margin-bottom:28px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }
.hero-stats{ display:flex; flex-wrap:wrap; gap:28px; }
.hero-stats div b{ display:block; color:#fff; font-size:22px; font-weight:800; }
.hero-stats div span{ color:rgba(255,255,255,.75); font-size:13px; }
.hero-media{ position:relative; text-align:center; }
.hero-media .glow{
  position:absolute; inset:0; margin:auto;
  width:80%; height:80%;
  background:rgba(255,255,255,.18);
  filter:blur(50px);
  border-radius:50%;
}
.hero-media img{
  position:relative;
  max-width:380px;
  margin:0 auto;
  filter:drop-shadow(0 30px 40px rgba(3,20,50,.35));
  animation:float 5s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}
.hero-wave{
  position:absolute; left:0; right:0; bottom:-1px; z-index:1;
  line-height:0;
}
.hero-wave svg{ width:100%; height:60px; display:block; }
@media (min-width:940px){
  .hero{ padding:88px 0 130px; }
  .hero-grid{ grid-template-columns:1.05fr .95fr; gap:50px; }
  .hero-media img{ max-width:460px; }
}

/* Simple (no-wave) page hero for inner pages */
.page-hero{
  background:var(--gradient);
  padding:56px 0 84px;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; width:360px;height:360px;border-radius:50%;
  background:rgba(255,255,255,.10); top:-140px; right:-100px;
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero .eyebrow{ background:rgba(255,255,255,.16); color:#fff; border-color:rgba(255,255,255,.35); }
.page-hero h1{ color:#fff; font-size:clamp(28px,4.6vw,42px); margin-bottom:12px; }
.page-hero p{ color:rgba(255,255,255,.85); max-width:620px; font-size:16px; }
.breadcrumb{ display:flex; align-items:center; gap:8px; color:rgba(255,255,255,.7); font-size:13.5px; margin-bottom:18px; font-weight:600;}
.breadcrumb a{ color:#fff; }
.breadcrumb i{ font-size:10px; }
.page-hero-wave{ position:absolute; left:0; right:0; bottom:-1px; line-height:0; z-index:1; }
.page-hero-wave svg{ width:100%; height:44px; display:block; }

/* ---------- Cards ---------- */
.card{
  background:var(--bg-2);
  border:1px solid #E2E8F0;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card-hover:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card-hover); border-color:rgba(8,120,232,.25); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------- Feature strip (grow-your-business) ---------- */
.grow-section{ padding:70px 0; }
.grow-grid{ display:grid; grid-template-columns:1fr; gap:36px; align-items:center; }
.grow-copy h5{ color:var(--primary-1); font-weight:700; font-size:14px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.grow-copy h2{ font-size:clamp(24px,4vw,32px); margin-bottom:16px; }
.feature-mini-grid{ display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width:560px){ .feature-mini-grid{ grid-template-columns:1fr 1fr; } }
.feature-mini{
  display:flex; gap:14px; align-items:flex-start;
  background:#fff; border:1px solid var(--border-2); border-radius:var(--radius-md);
  padding:18px;
  box-shadow:var(--shadow-card);
}
.feature-mini .ico{
  flex-shrink:0; width:44px;height:44px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:var(--gradient); color:#fff; font-size:19px;
}
.feature-mini h6{ margin:0 0 4px; font-size:15px; }
.feature-mini p{ margin:0; font-size:13.5px; }
@media (min-width:940px){ .grow-grid{ grid-template-columns:.95fr 1.15fr; gap:56px; } }

/* ---------- Pricing ---------- */
.pricing-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
.price-card{
  position:relative;
  background:#fff;
  border:1px solid var(--border-2);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:32px 26px;
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.price-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-card-hover); }
.price-card.featured{ border-color:var(--primary-2); box-shadow:0 18px 42px rgba(8,120,232,.20); }
.price-card.featured::before{
  content:"Most Popular";
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--gradient); color:#fff; font-size:12px; font-weight:700;
  padding:6px 16px; border-radius:999px; box-shadow:var(--shadow-btn);
}
.price-top{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:18px; }
.price-plan{ font-size:13px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--primary-1); }
.price-icon{ width:48px;height:48px; }
.price-amount{ display:flex; align-items:baseline; gap:6px; margin-bottom:6px; }
.price-amount .num{ font-size:38px; font-weight:800; color:var(--text-2); }
.price-amount .cur{ font-size:16px; font-weight:700; color:var(--text-muted); }
.price-per{ font-size:13px; color:var(--text-muted); margin-bottom:22px; }
.price-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:26px; flex:1; }
.price-list li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-1); }
.price-list i{ color:var(--success); font-size:15px; margin-top:2px; flex-shrink:0; }
@media (min-width:720px){ .pricing-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .pricing-grid{ grid-template-columns:repeat(3,1fr); } }

/* ---------- Why-choose icon grid ---------- */
.why-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
.why-card{
  display:flex; align-items:center; gap:14px;
  background:#fff; border:1px solid var(--border-2); border-radius:var(--radius-md);
  padding:20px; box-shadow:var(--shadow-card);
}
.why-card .ico{
  flex-shrink:0; width:46px;height:46px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(32,180,90,.12); color:var(--success); font-size:19px;
}
.why-card h6{ margin:0 0 3px; font-size:15px; }
.why-card span{ font-size:13px; color:var(--text-muted); }
@media (min-width:640px){ .why-grid{ grid-template-columns:1fr 1fr; } }
@media (min-width:1000px){ .why-grid{ grid-template-columns:repeat(3,1fr); } }

/* ---------- Apps marquee ---------- */
.apps-band{ padding:60px 0; overflow:hidden; }
.marquee{
  position:relative;
  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;
  width:max-content;
  gap:18px;
  animation:scrollx 32s linear infinite;
}
.marquee:hover .marquee-track{ animation-play-state:paused; }
@keyframes scrollx{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.app-chip{
  width:76px;height:76px;
  background:#fff; border:1px solid var(--border-2); border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-card);
  flex-shrink:0;
}
.app-chip img{ max-width:44px; max-height:44px; }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; max-width:820px; margin:0 auto; }
.faq-item{
  background:#fff; border:1px solid var(--border-2); border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  overflow:hidden;
}
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:18px 20px;
  cursor:pointer;
  font-weight:600;
  font-size:15.5px;
}
.faq-q .qleft{ display:flex; align-items:center; gap:14px; }
.faq-q .qicon{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--bg-3); color:var(--primary-1); font-size:16px;
}
.faq-q .chev{ font-size:13px; color:var(--text-muted); transition:transform .25s ease; flex-shrink:0; }
.faq-item.is-open .chev{ transform:rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item.is-open .faq-a{ max-height:260px; }
.faq-a-in{ padding:0 20px 20px 72px; font-size:14px; color:var(--text-muted); }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:var(--gradient);
  border-radius:24px;
  padding:44px 28px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; width:280px;height:280px;border-radius:50%;
  background:rgba(255,255,255,.10); top:-120px; left:-80px;
}
.cta-banner h3{ color:#fff; font-size:clamp(22px,3.6vw,30px); margin-bottom:10px; position:relative; }
.cta-banner p{ color:rgba(255,255,255,.85); margin-bottom:24px; position:relative; }
.cta-banner .hero-cta{ justify-content:center; position:relative; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--text-2); color:rgba(255,255,255,.68); margin-top:80px; }
.footer-top{ padding:64px 0 40px; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:38px; }
.footer-brand img{ height:32px; margin-bottom:16px; filter:brightness(0) invert(1); }
.footer-brand p{ color:rgba(255,255,255,.55); font-size:14px; max-width:320px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
  color:#fff; font-size:15px;
  transition:background .2s ease, transform .2s ease;
}
.footer-social a:hover{ background:var(--gradient); transform:translateY(-3px); }
.footer-col h6{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px; }
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,.62); transition:color .2s ease; }
.footer-col a:hover{ color:#fff; }
.footer-contact li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(255,255,255,.62); margin-bottom:12px; }
.footer-contact i{ color:var(--primary-2); margin-top:3px; }
.footer-search{ display:flex; gap:8px; margin-top:6px; }
.footer-search input{
  flex:1; padding:11px 14px; border-radius:10px; border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06); color:#fff; font-size:13.5px;
}
.footer-search input::placeholder{ color:rgba(255,255,255,.4); }
.footer-search button{
  width:44px; border-radius:10px; border:none; background:var(--gradient); color:#fff; cursor:pointer; font-size:15px;
}
.footer-bottom{ border-top:1px solid rgba(255,255,255,.09); padding:20px 0; }
.footer-bottom .container{ display:flex; flex-direction:column; gap:10px; align-items:center; justify-content:space-between; font-size:13px; }
.footer-bottom-links{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; }
.footer-bottom-links a{ color:rgba(255,255,255,.55); }
.footer-bottom-links a:hover{ color:#fff; }
@media (min-width:720px){
  .footer-grid{ grid-template-columns:1.2fr .8fr .8fr 1fr; gap:30px; }
  .footer-bottom .container{ flex-direction:row; }
}

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:300;
  width:56px;height:56px;border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:26px;
  box-shadow:0 10px 26px rgba(37,211,102,.45);
  animation:pulse 2.4s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow:0 10px 26px rgba(37,211,102,.45); }
  50%{ box-shadow:0 10px 26px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ---------- Policy / article pages ---------- */
.policy-layout{ display:grid; grid-template-columns:1fr; gap:30px; }
.policy-toc{
  background:#fff; border:1px solid var(--border-2); border-radius:var(--radius-lg);
  padding:22px; box-shadow:var(--shadow-card);
  align-self:start; position:sticky; top:calc(var(--header-h) + 20px);
}
.policy-toc h6{ font-size:13px; text-transform:uppercase; letter-spacing:.05em; color:var(--text-muted); margin-bottom:14px; }
.policy-toc a{ display:block; padding:8px 0; font-size:14px; font-weight:600; color:var(--text-1); border-bottom:1px solid var(--bg-3); }
.policy-toc a:hover{ color:var(--primary-1); }
.policy-toc a:last-child{ border-bottom:none; }
.policy-card{
  background:#fff; border:1px solid var(--border-2); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card); padding:28px;
}
.policy-card + .policy-card{ margin-top:20px; }
.policy-card h3{ display:flex; align-items:center; gap:12px; font-size:19px; margin-bottom:14px; }
.policy-card h3 i{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--bg-3); color:var(--primary-1); font-size:16px;
}
.policy-card p{ font-size:14.5px; }
.policy-list{ display:flex; flex-direction:column; gap:10px; margin-top:6px; }
.policy-list li{ display:flex; gap:10px; font-size:14.5px; color:var(--text-1); align-items:flex-start; }
.policy-list.deny li i{ color:#E0435B; margin-top:3px; }
.policy-list.allow li i{ color:var(--success); margin-top:3px; }
.policy-list.warn li i{ color:var(--accent-yellow); margin-top:3px; }
.callout{
  display:flex; gap:12px; align-items:flex-start;
  background:var(--bg-3); border:1px solid var(--border-2);
  border-radius:var(--radius-md); padding:16px 18px; font-size:14px; color:var(--text-1); margin-top:16px;
}
.callout i{ color:var(--primary-1); margin-top:2px; }
.callout.warn{ background:rgba(245,181,27,.10); border-color:rgba(245,181,27,.35); }
.callout.warn i{ color:var(--accent-yellow); }
@media (min-width:960px){ .policy-layout{ grid-template-columns:260px 1fr; } }

/* ---------- Empty state (offers) ---------- */
.empty-state{
  text-align:center; background:#fff; border:1px dashed var(--border-2);
  border-radius:var(--radius-lg); padding:56px 28px; box-shadow:var(--shadow-card);
  max-width:560px; margin:0 auto;
}
.empty-state .ico{
  width:72px;height:72px;border-radius:50%; margin:0 auto 20px;
  background:var(--gradient); color:#fff; font-size:30px;
  display:flex; align-items:center; justify-content:center;
}
.empty-state h3{ font-size:22px; margin-bottom:10px; }

/* ---------- Domain search ---------- */
.domain-form{
  display:flex; flex-direction:column; gap:10px;
  background:#fff; padding:8px; border-radius:16px;
  box-shadow:0 18px 40px rgba(3,20,50,.20);
}
.domain-form input{
  flex:1; border:none; outline:none; padding:14px 16px; font-size:15px; border-radius:10px; color:var(--text-1);
}
.domain-form button{ border:none; }
.tld-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.tld-chip{
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.32); color:#fff;
  font-size:13px; font-weight:700; padding:7px 14px; border-radius:999px;
}
@media (min-width:560px){ .domain-form{ flex-direction:row; } }

.domain-steps{ display:grid; grid-template-columns:1fr; gap:18px; }
.domain-step{
  background:#fff; border:1px solid var(--border-2); border-radius:var(--radius-lg);
  padding:26px 22px; text-align:center; box-shadow:var(--shadow-card);
}
.domain-step .num{
  width:46px;height:46px;border-radius:50%; margin:0 auto 16px;
  background:var(--gradient); color:#fff; font-weight:800; font-size:17px;
  display:flex;align-items:center;justify-content:center;
}
.domain-step h6{ margin-bottom:6px; font-size:15px; }
.domain-step p{ margin:0; font-size:13.5px; }
@media (min-width:640px){ .domain-steps{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .domain-steps{ grid-template-columns:repeat(4,1fr); } }
