@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap");

:root {
  --bg: #fafafa;
  --ink: #3a47e1;
  --muted: #7a7268;
  --ring: rgb(59 66 225 / 35%);
  --navText: #2b2b2b;
  --navLine: #e4e0db;
  --topbarBg: #fefcf9;
  --navBg: #ffffff;
  --navShadow1: rgba(20, 20, 20, 0.06);
  --navShadow2: rgba(20, 20, 20, 0.12);
  --gold-1: #3897e0;
  --gold-2: #4d87e4;
  --gold-3: #5362e1;
  --card: #ffffff;
  --success: #0fa97d;
  --chipText: #4b4037;
}

/* === Base === */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Alegreya Sans SC;
  color: #2b2b2b; /* charcoal text */
  background: var(--bg); /* warm neutral background */
}

a {
  color: inherit;
  text-decoration: none;
}
/* ===== Desktop dropdown on hover (unchanged behavior) ===== */
@media (min-width: 992px) {
  .menu > li:hover > .dropdown,
  .menu > li:hover > .sub-menu {
    display: flex;
  }
}

/* ===== Mobile layout ===== */
@media (max-width: 991.98px) {
  .navbar {
    padding: 10px 14px;
    gap: 12px;
  }

  /* Show burger, hide desktop menu */
  #drawerBtn { display: grid; }
  .menu {
    position: fixed;
    inset: 0 0 0 auto;             /* right drawer */
    width: min(84vw, 360px);
    background: #ffffff;
    border-left: 1px solid var(--navLine);
    padding: 20px 16px 24px;
    display: block;                 /* switch to block list */
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1100;
    overflow-y: auto;
  }

  /* Backdrop behind drawer */
  .nav-wrap::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(2,8,20,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 1090;
  }

  /* When open */
  .nav-open .menu {
    transform: translateX(0);
  }
  .nav-open .nav-wrap::after {
    opacity: 1;
    pointer-events: auto;
  }

  /* Top-level items in drawer */
  .menu > li {
    border-bottom: 1px solid rgba(15,44,75,.08);
    margin: 0;
  }
  .menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #0f2c4b;
    padding: 14px 6px;
    font-weight: 800;
  }

  /* WordPress submenus (accordion) */
  .menu .sub-menu,
  .menu .dropdown {
    display: none;
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 0;
    background: transparent;
  }
  .menu .sub-menu a {
    display: block;
    padding: 10px 6px 10px 20px;
    font-weight: 700;
    color: #1a3453;
    border-radius: 8px;
  }
  .menu .sub-menu a:hover {
    background: #f2f6fb;
  }

  /* Expanded state */
  .menu li.is-open > .sub-menu,
  .menu li.is-open > .dropdown {
    display: block;
  }

  /* Caret turns down when open (optional) */
  .menu li.is-open > a .caret {
    transform: rotate(225deg);
  }
}

/* ===== Accessibility focus states ===== */
.menu a:focus,
.menu button:focus,
#drawerBtn:focus {
  outline: 2px solid #2e7cf6;
  outline-offset: 2px;
}

/* ===== Ensure burger visible on dark bg ===== */
.right-cta {
  cursor: pointer;
}


/* ================= TOP BAR ================= */
.topbar {
  background: var(--topbarBg);
  color: #0b2a4a;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
}
.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.tb-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-bell {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d8e7ff;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(38, 100, 235, 0.15);
}
.offer-bell svg {
  width: 18px;
  height: 18px;
  color: #2e7cf6;
}
.tb-link {
  color: #2e7cf6;
}
.tb-right {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #0b2a4a;
}
.tb-right .sep {
  opacity: 0.35;
}
.tb-right .icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
}

/* ================= MAIN NAV ================= */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 16px 0;
}
.navbar {
  max-width: 1120px;
  margin: 0 auto;
  color: #ed9f9f;
  border-radius: 44px;
  padding: 5px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(30 76 207 / 94%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border: 1px solid rgb(56 43 160 / 66%);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: radial-gradient(70% 70% at 30% 30%, #2e7cf6, #133b74);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}
.brand small {
  font-weight: 800;
  color: #5b7aa0;
  margin-left: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.menu > li {
  position: relative;
  list-style: none;
}
.menu > li > a {
  color: #e5edee;
  font-weight: 700;
  opacity: 0.95;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.menu > li > a:hover {
  opacity: 1;
}
.caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
}

/* dropdown */
.dropdown {
  position: absolute;
  left: 0;
  top: 46px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--navLine);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(2, 8, 20, 0.15);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
}
.dropdown a {
  color: #0f2c4b;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 600;
}
.dropdown a:hover {
  background: #f2f6fb;
}

/* cta (right icon) */
.right-cta {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--navLine);
  display: grid;
  place-items: center;
  background: #fff;
}
.right-cta .burger {
  width: 18px;
  height: 2px;
  background: #0f2c4b;
  position: relative;
}
.right-cta .burger:before,
.right-cta .burger:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #0f2c4b;
}
.right-cta .burger:before {
  top: -6px;
}
.right-cta .burger:after {
  top: 6px;
}

/* compact on scroll */
.nav-compact .navbar {
  transform: translateY(-6px);
  padding: 10px 22px;
}

/* ============== HERO (your earlier hero) ============== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 195px 24px 56px;
  isolation: isolate;
  overflow: hidden;
  
}
.container {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: 38px;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.mesh {
  position: absolute;
  inset: -25% -10% auto -10%;
  height: 120svh;
  z-index: 0;
  filter: blur(60px) saturate(140%);
  opacity: 0.55;
  pointer-events: none;
  background: radial-gradient(
      600px 500px at 15% 20%,
      color-mix(in oklab, var(--gold-1), white 12%),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 80% 10%,
      color-mix(in oklab, var(--gold-2), white 8%),
      transparent 62%
    ),
    radial-gradient(
      700px 700px at 65% 90%,
      color-mix(in oklab, var(--gold-3), white 6%),
      transparent 63%
    );
  transform: translate3d(0, 20px, 0) scale(1);
}
.grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px, 36px 36px;
  mask-image: radial-gradient(60% 60% at 50% 40%, black 55%, transparent 100%);
  opacity: 0.22;
  transform: translateZ(0);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 174, 39, 0.12);
  color: #4e68bf;
  border: 1px solid var(--ring);
  font-weight: 600;
  letter-spacing: 0.3px;
  width: max-content;
  backdrop-filter: blur(6px);
}
.kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px 4px rgba(82, 242, 199, 0.35);
}
h1 {
  margin: 12px 0 10px;
  font-weight: 800;
  line-height: 1.02;
  font-size: clamp(34px, 5.6vw, 64px);
  letter-spacing: -0.02em;
}
.grad {
  background: linear-gradient(
    90deg,
    var(--gold-1),
    var(--gold-2),
    var(--gold-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sub {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  max-width: 58ch;
}
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(249, 174, 39, 0.35);
}
.btn.secondary {
  background: rgba(249, 174, 39, 0.1);
  color: var(--ink);
  border-color: rgba(249, 174, 39, 0.35);
  box-shadow: none;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.chip {
  --bd: rgba(249, 174, 39, 0.35);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--bd);
  background: linear-gradient(
    180deg,
    rgba(249, 174, 39, 0.08),
    rgba(249, 174, 39, 0.04)
  );
  color: var(--chipText);
  font-size: 12px;
  letter-spacing: 0.25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip svg {
  width: 14px;
  height: 14px;
}
.rack-wrap {
  position: relative;
  perspective: 1400px;
  width: 100%;
  display: grid;
  place-items: center;
}
.rack {
  width: min(520px, 94%);
  aspect-ratio: 10/11;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 80px rgba(20, 10, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  padding: 22px;
  transform-style: preserve-3d;
}
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
  background: rgba(249, 174, 39, 0.12);
  border: 1px solid rgba(249, 174, 39, 0.6);
  color: var(--ink);
}
.rack .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  transform: translateZ(40px);
}
.unit {
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, #2b1d19, #1e1411);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 82px 1fr 56px;
  gap: 16px;
  align-items: center;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}
.drive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.slot {
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(249, 174, 39, 0.4),
    rgba(255, 255, 255, 0.14)
  );
}
.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(249, 174, 39, 0.18);
  position: relative;
  overflow: hidden;
}
.bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 0 16px rgba(249, 174, 39, 0.45);
}
.signal {
  justify-self: end;
  display: flex;
  gap: 3px;
}
.signal i {
  width: 5px;
  border-radius: 2px;
  background: rgba(249, 174, 39, 0.28);
  height: 6px;
}

/* ============== Search  ============== */
/* ============== DOMAIN SEARCH ============== */
.domain-sec {
  position: relative;
  padding: 36px 16px 24px;
  margin-top: -40px; /* hero এর সাথে টাইট */
  z-index: 3;
}
.domain-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.domain-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.25);
  border-radius: 22px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 22px;
  backdrop-filter: blur(6px);
}

.domain-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.domain-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.domain-note {
  color: var(--muted);
  font-size: 14px;
}

.domain-form {
  display: grid;
  grid-template-columns: 1fr 140px 140px;
  gap: 10px;
}
@media (max-width: 860px) {
  .domain-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .domain-form {
    grid-template-columns: 1fr;
  }
}

.domain-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.28);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.domain-input .prefix {
  color: var(--muted);
  opacity: 0.9;
}
.domain-input input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 600;
}
.domain-input:focus-within {
  box-shadow: 0 0 0 3px rgba(249, 174, 39, 0.25);
}

.domain-select,
.domain-btn {
  border-radius: 14px;
  border: 1px solid rgba(249, 174, 39, 0.28);
  background: #1f1512;
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
}
.domain-select {
  appearance: none;
  background-image: linear-gradient(180deg, transparent, transparent);
}
.domain-btn {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
  cursor: pointer;
}
.domain-btn:active {
  transform: translateY(1px);
}

.domain-result {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 860px) {
  .domain-result {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .domain-result {
    grid-template-columns: 1fr;
  }
}

.badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(249, 174, 39, 0.22);
  background: rgba(249, 174, 39, 0.06);
  color: #fce2b0;
  font-weight: 600;
}
.badge .tld {
  font-weight: 800;
  letter-spacing: 0.3px;
}
.badge .ok {
  color: #52f2c7;
}
.badge .no {
  color: #ff9b9b;
}

.badge.loading {
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}
.badge.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 1.2s linear infinite;
}
@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

/* ============== Search  end  ============== */

/* ============== HOSTING FEATURES ============== */
.features-sec {
  position: relative;
  padding: 48px 16px 20px;
  z-index: 2;
}
.features-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.features-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.features-title {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.features-note {
  color: var(--muted);
  font-size: 14px;
}

.features-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 16px 16px 14px;
  display: grid;
  gap: 10px;
  min-height: 132px;
  transform: translateZ(0);
  backdrop-filter: blur(6px);
}
.fc-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  display: grid;
  place-items: center;
  color: #35231f;
  box-shadow: 0 8px 20px rgba(249, 174, 39, 0.35);
}
.fc-ico svg {
  width: 20px;
  height: 20px;
}
.fc-title {
  font-weight: 800;
}
.fc-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.fc-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(249, 174, 39, 0.12);
  color: var(--ink);
  border: 1px solid rgba(249, 174, 39, 0.35);
}

.features-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .features-row {
    grid-template-columns: 1fr;
  }
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

.benefit {
  border-radius: 16px;
  padding: 14px;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.22);
  display: grid;
  gap: 6px;
}
.benefit strong {
  color: #fce2b0;
}
.benefit small {
  color: var(--muted);
}

.kpis {
  display: grid;
  gap: 10px;
}
.kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(249, 174, 39, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(249, 174, 39, 0.06);
}
.kpi span {
  color: var(--muted);
}
.kpi b {
  font-size: 22px;
  letter-spacing: 0.3px;
}

/* ============== PROVIDE SERVICE SECTION ============== */
.provide-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.provide-wrap {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.provide-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
}
.provide-head p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 38px;
}

.provide-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 820px) {
  .provide-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .provide-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 46px rgba(249, 174, 39, 0.35);
}

.s-ico {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  display: grid;
  place-items: center;
  color: #35231f;
  box-shadow: 0 8px 20px rgba(249, 174, 39, 0.35);
}
.s-ico svg {
  width: 28px;
  height: 28px;
}

.s-title {
  font-weight: 800;
  margin-bottom: 8px;
}
.s-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ============== PRICING (Choose Awesome Plans) ============== */
.pricing-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.pricing-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-head {
  text-align: center;
  margin-bottom: 22px;
}
.pricing-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}
.pricing-head p {
  color: var(--muted);
  margin-top: 8px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 24px;
}
.bt-wrap {
  position: relative;
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.25);
}
.bt-wrap button {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.bt-wrap .knob {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  border-radius: 999px;
  z-index: 0;
  transition: 0.25s ease;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}
.bt-wrap[data-mode="monthly"] .knob {
  left: 6px;
}
.bt-wrap[data-mode="yearly"] .knob {
  left: calc(50% + 6px);
}
.bt-wrap .opt {
  position: relative;
  z-index: 1;
  color: #fce2b0;
}
.tag-save {
  font-size: 12px;
  color: #35231f;
  background: var(--gold-2);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 800;
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.plan {
  position: relative;
  border-radius: 20px;
  padding: 20px 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}
.plan.popular {
  border-color: var(--gold-1);
  box-shadow: 0 14px 46px rgba(249, 174, 39, 0.35);
}
.ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}
.plan-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.plan-sub {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}

.price {
  margin: 14px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.price b {
  font-size: 34px;
  letter-spacing: 0.3px;
}
.price small {
  color: var(--muted);
}
.strike {
  text-decoration: line-through;
  color: #fddfa7;
  opacity: 0.7;
  font-size: 14px;
}

.ul {
  margin: 12px 0 14px;
  display: grid;
  gap: 8px;
}
.li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #1f1512;
  font-size: 14px;
}
.li i {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  display: inline-block;
  flex: 0 0 18px;
}

.plan-cta {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}
.plan-cta:active {
  transform: translateY(1px);
}

.plan-foot {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* ============== VPS & CLOUD SERVER PLANS ============== */
.server-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.server-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.server-head {
  text-align: center;
  margin-bottom: 18px;
}
.server-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}
.server-head p {
  color: var(--muted);
  margin-top: 8px;
}

/* tabs */
.server-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 20px;
}
.tab-wrap {
  position: relative;
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.25);
}
.tab-wrap .tab {
  border: 0;
  background: transparent;
  color: #fce2b0;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.tab-wrap .knob {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
  transition: 0.25s ease;
}
.tab-wrap[data-tab="vps"] .knob {
  left: 6px;
}
.tab-wrap[data-tab="cloud"] .knob {
  left: calc(50% + 6px);
}

/* billing toggle inside section */
.bill-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 6px 0 18px;
}
.bill {
  position: relative;
  display: inline-flex;
  padding: 6px;
  border-radius: 999px;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.25);
}
.bill .opt {
  border: 0;
  background: transparent;
  color: #fce2b0;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.bill .knob {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
  transition: 0.25s ease;
}
.bill[data-mode="monthly"] .knob {
  left: 6px;
}
.bill[data-mode="yearly"] .knob {
  left: calc(50% + 6px);
}

/* grid/cards */
.server-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .server-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .server-grid {
    grid-template-columns: 1fr;
  }
}

.srv-plan {
  position: relative;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}
.srv-plan.popular {
  border-color: var(--gold-1);
  box-shadow: 0 14px 46px rgba(249, 174, 39, 0.35);
}
.srv-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}
.srv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.srv-name {
  font-weight: 900;
  letter-spacing: 0.2px;
}
.srv-note {
  color: var(--muted);
  font-size: 12px;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 10px;
}
.chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(249, 174, 39, 0.28);
  color: #3138cf;
  background: rgba(249, 174, 39, 0.06);
}
.kpi b {
  color: #1f1512 !important;
}
.srv-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 8px 0 10px;
}
.srv-price b {
  font-size: 30px;
  letter-spacing: 0.3px;
}
.srv-price small {
  color: var(--muted);
}
.srv-strike {
  text-decoration: line-through;
  color: #fddfa7;
  opacity: 0.7;
  font-size: 13px;
  display: none;
}

.srv-cta {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}
.srv-foot {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

/* hide groups */
.server-group {
  display: none;
}
.server-group.active {
  display: block;
}

/* ============== THE LATEST WEB HOSTING SERVER SERVICE ============== */
.latest-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.latest-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.latest-head {
  text-align: center;
  margin-bottom: 18px;
}
.latest-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}
.latest-head p {
  color: var(--muted);
  margin-top: 8px;
}

/* filter chips */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 18px;
}
.fchip {
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  border: 1px solid rgba(249, 174, 39, 0.28);
  color: #fce2b0;
  background: #1f1512;
}
.fchip.active {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}

.latest-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .latest-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .latest-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card-latest {
  position: relative;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 10px;
}
.svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.svc-title {
  font-weight: 900;
  letter-spacing: 0.2px;
}
.badges {
  display: flex;
  gap: 6px;
}
.badge-new,
.badge-upd {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(249, 174, 39, 0.35);
}
.badge-new {
  background: rgba(249, 174, 39, 0.15);
  color: var(--ink);
}
.badge-upd {
  background: rgba(255, 255, 255, 0.08);
  color: #fce2b0;
}

.svc-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.svc-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.svc-price b {
  font-size: 28px;
  letter-spacing: 0.3px;
}
.svc-price small {
  color: var(--muted);
}

.svc-cta {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}

/* ============== 24/7 HOSTING SUPPORT ============== */
.support-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.support-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.support-head {
  text-align: center;
  margin-bottom: 22px;
}
.support-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}
.support-head p {
  color: var(--muted);
  margin-top: 8px;
}

/* grid */
.support-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* left: cards */
.s-card {
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  padding: 18px;
}
.s-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 760px) {
  .s-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .s-row {
    grid-template-columns: 1fr;
  }
}

.s-item {
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(249, 174, 39, 0.22);
  background: #1f1512;
  display: grid;
  gap: 8px;
  min-height: 120px;
}
.s-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  display: grid;
  place-items: center;
  color: #35231f;
  box-shadow: 0 8px 20px rgba(249, 174, 39, 0.35);
}
.s-ico svg {
  width: 20px;
  height: 20px;
}
.s-title {
  font-weight: 800;
}
.s-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* right: big card */
.s-big {
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(249, 174, 39, 0.25);
  box-shadow: 0 12px 46px rgba(249, 174, 39, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.s-big h3 {
  margin: 0 0 6px;
  font-weight: 900;
}
.s-big p {
  color: var(--muted);
  margin: 0 0 12px;
}
.s-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.s-cta a {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(249, 174, 39, 0.25);
  color: #fce2b0;
  background: #1f1512;
  font-weight: 800;
  text-decoration: none;
}
.s-cta a.primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}

/* ============== FLOATING LIVE CHAT ============== */
.chat-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  box-shadow: 0 12px 34px rgba(249, 174, 39, 0.4);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(249, 174, 39, 0.35);
}
.chat-fab svg {
  width: 26px;
  height: 26px;
  color: #35231f;
}
.chat-fab .pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(249, 174, 39, 0.35);
  pointer-events: none;
}

/* popup */
.chat-popup {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 2000;
  width: min(360px, 92vw);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  display: none;
  overflow: hidden;
}
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(249, 174, 39, 0.15);
}
.chat-title {
  font-weight: 900;
}
.chat-close {
  background: transparent;
  border: 0;
  color: #fce2b0;
  font-weight: 900;
  cursor: pointer;
}

.chat-body {
  max-height: 52vh;
  overflow: auto;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.msg {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.msg .bubble {
  padding: 10px 12px;
  border-radius: 12px;
  max-width: 80%;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.2);
  color: #fce2b0;
}
.msg.you {
  justify-content: flex-end;
}
.msg.you .bubble {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  border-color: transparent;
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(249, 174, 39, 0.15);
}
.chat-input input {
  flex: 1;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.22);
  border-radius: 12px;
  outline: 0;
  color: #fff;
  padding: 10px 12px;
  font-weight: 600;
}
.chat-input button {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}
/* ============== OUR DATA CENTER LOCATIONS ============== */
.dc-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.dc-wrap {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.dc-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}
.dc-head p {
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 28px;
}

/* map container */
.dc-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1f1512;
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-height: 420px;
}
.dc-map svg {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9) contrast(1.1);
}

/* markers */
.marker {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  border: 1px solid rgba(249, 174, 39, 0.4);
  box-shadow: 0 0 12px rgba(249, 174, 39, 0.6);
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.marker::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(249, 174, 39, 0.35);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 174, 39, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(249, 174, 39, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 174, 39, 0);
  }
}

/* location cards */
.dc-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}
@media (max-width: 900px) {
  .dc-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .dc-cards {
    grid-template-columns: 1fr;
  }
}

.dc-card {
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: grid;
  gap: 6px;
}
.dc-card strong {
  font-weight: 900;
}
.dc-card small {
  color: var(--muted);
}
/* ============== CUSTOMERS REVIEW ============== */
.reviews-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.reviews-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.rev-head {
  text-align: center;
  margin-bottom: 18px;
}
.rev-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}
.rev-sub {
  color: var(--muted);
  margin-top: 8px;
}

/* average rating bar */
.rev-summary {
  margin: 16px auto 20px;
  max-width: 720px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  backdrop-filter: blur(6px);
}
.rev-score b {
  font-size: 32px;
  letter-spacing: 0.2px;
}
.rev-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}
.star {
  width: 18px;
  height: 18px;
  display: inline-block;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2l3.2 6.5 7.3 1.1-5.3 5.1 1.3 7.3L12 18.9 5.5 22l1.3-7.3L1.5 9.6l7.3-1.1L12 2z"/></svg>')
    center/contain no-repeat;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
}
.rev-count {
  color: var(--muted);
}

/* carousel */
.rev-rail {
  position: relative;
  margin-top: 10px;
}
.rev-track {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  grid-auto-columns: minmax(280px, 1fr);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.rev-track::-webkit-scrollbar {
  height: 8px;
}
.rev-track::-webkit-scrollbar-thumb {
  background: rgba(249, 174, 39, 0.25);
  border-radius: 999px;
}
.rev-card {
  scroll-snap-align: start;
  border-radius: 18px;
  padding: 16px;
  min-height: 200px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 8px;
}
.rev-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.rev-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(249, 174, 39, 0.35);
}
.rev-name {
  font-weight: 800;
}
.rev-badge {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 174, 39, 0.12);
  color: var(--ink);
  border: 1px solid rgba(249, 174, 39, 0.35);
}
.rev-text {
  color: #fce2b0;
  line-height: 1.55;
  font-size: 14px;
}
.rev-meta {
  color: var(--muted);
  font-size: 12px;
}

.rev-ctrl {
  position: absolute;
  inset: auto 0 -20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.rev-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(249, 174, 39, 0.25);
  background: #1f1512;
  color: #fce2b0;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.rev-btn:hover {
  box-shadow: 0 8px 20px rgba(249, 174, 39, 0.25);
}
/* ============== OUR LATEST NEWS & BLOG ============== */
.blog-sec {
  position: relative;
  padding: 64px 16px;
  z-index: 2;
}
.blog-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.blog-head {
  text-align: center;
  margin-bottom: 16px;
}
.blog-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}
.blog-sub {
  color: var(--muted);
  margin-top: 8px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 18px;
}
.bchip {
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  border: 1px solid rgba(249, 174, 39, 0.28);
  color: #fce2b0;
  background: #1f1512;
}
.bchip.active {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}

.blog-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.post {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(249, 174, 39, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-rows: 160px auto;
  transition: 0.25s;
  backdrop-filter: blur(6px);
}
.post:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 46px rgba(249, 174, 39, 0.35);
}

.post-img {
  position: relative;
  overflow: hidden;
}
.post-img .thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.post-img::after {
  /* subtle shine */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}

.post-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}
.p-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.p-tag {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(249, 174, 39, 0.35);
  color: var(--ink);
  background: rgba(249, 174, 39, 0.12);
}
.p-title {
  font-weight: 900;
  line-height: 1.35;
}
.p-exc {
  color: #1f1512;
  font-size: 14px;
  line-height: 1.55;
}
.p-meta {
  color: var(--muted);
  font-size: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.p-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(249, 174, 39, 0.35);
}

/* Load more */
.blog-more {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.blog-btn {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(249, 174, 39, 0.35);
}

/* skeleton during load */
.skel {
  animation: shimmer 1.2s linear infinite;
  position: relative;
  overflow: hidden;
}
.skel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 1.2s linear infinite;
}
@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}
/* ============== FOOTER ============== */
.footer {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  background: #1f1512;
  border-top: 1px solid rgba(249, 174, 39, 0.22);
  color: #fce2b0;
}
.footer-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 16px 28px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 3fr;
}
@media (max-width: 820px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

.f-brand {
  display: grid;
  gap: 12px;
}
.f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
}
.f-logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-1));
  color: #35231f;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(249, 174, 39, 0.35);
}
.f-tagline {
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
}

.f-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 620px) {
  .f-cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  .f-cols {
    grid-template-columns: 1fr;
  }
}

.f-col h4 {
  font-weight: 900;
  margin-bottom: 12px;
  font-size: 15px;
}
.f-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.f-col a {
  color: #fce2b0;
  font-size: 14px;
  opacity: 0.85;
}
.f-col a:hover {
  opacity: 1;
  color: var(--ink);
}

.f-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.f-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-1));
  color: #35231f;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(249, 174, 39, 0.35);
}

/* bottom bar */
.f-bottom {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 14px;
  border-top: 1px solid rgba(249, 174, 39, 0.15);
}
