
/* =====================================================================
   HilalDC — Premium Design System v2.0
   Inspired by WiseCP + BurtiNET + Modern SaaS aesthetics
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===================== CSS VARIABLES ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --orange:       #FF6B00;
  --orange-light: #FF8C3A;
  --orange-dark:  #E55A00;
  --orange-glow:  rgba(255,107,0,0.25);
  --orange-pale:  rgba(255,107,0,0.08);

  /* Darks */
  --dark-900: #080b14;
  --dark-800: #0d1121;
  --dark-700: #111827;
  --dark-600: #1a2235;
  --dark-500: #1e2a42;
  --dark-400: #253047;
  --dark-300: #2d3a52;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;

  /* Status */
  --green:  #10b981;
  --blue:   #3b82f6;
  --purple: #8b5cf6;
  --red:    #ef4444;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 25px 80px rgba(0,0,0,.18);
  --shadow-orange: 0 8px 30px rgba(255,107,0,.35);

  /* Typography */
  --font-main:    'Plus Jakarta Sans', 'Poppins', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Poppins', sans-serif;

  /* Spacing */
  --container:   1240px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-full: 999px;

  /* Transitions */
  --t-fast:   all .15s ease;
  --t-normal: all .25s ease;
  --t-slow:   all .4s cubic-bezier(.4, 0, .2, 1);
}

/* ===================== BASE ===================== */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

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

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===================== PROMO BAR ===================== */
.promo-bar {
  background: linear-gradient(90deg, #c84e00 0%, var(--orange) 40%, #ff9a4a 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1100;
  overflow: hidden;
}
.promo-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.promo-bar__inner { display: flex; align-items: center; justify-content: center; gap: 14px; position: relative; }
.promo-bar__badge {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.promo-bar strong { color: #fff5cc; }
.promo-bar a { color: #fff; font-weight: 700; text-decoration: underline; margin-left: 6px; }
.promo-bar a:hover { opacity: 0.85; }
.promo-bar__close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.7);
  cursor: pointer; font-size: 18px; line-height: 1;
  transition: var(--t-fast);
}
.promo-bar__close:hover { color: #fff; }

/* ===================== TOP BAR ===================== */
.header-top {
  background: var(--dark-800);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 8px 0;
  font-size: 12.5px;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-left,
.header-top-right { display: flex; align-items: center; gap: 4px; }
.header-top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-400);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
  font-size: 12.5px;
}
.header-top-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.header-top-link i { font-size: 14px; }
.header-top-account {
  display: flex; align-items: center; gap: 6px;
  color: var(--orange-light); font-weight: 600; font-size: 12.5px;
  padding: 4px 10px;
}
.header-top-register {
  background: var(--orange);
  color: #fff !important;
  border-radius: var(--radius-sm);
  padding: 5px 14px !important;
  font-weight: 600;
  transition: var(--t-normal) !important;
}
.header-top-register:hover { background: var(--orange-dark) !important; }

/* ===================== MAIN HEADER ===================== */
.main-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--t-slow);
}
.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--dark-700);
  letter-spacing: -0.5px;
  transition: var(--t-normal);
}
.logo-text span { color: var(--orange); }
.logo-text:hover { opacity: 0.85; }

/* ===================== NAVIGATION ===================== */
.main-navigation { flex: 1; margin: 0 28px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--t-normal);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-item.active > .nav-link {
  color: var(--orange);
  background: var(--orange-pale);
}
.nav-link i {
  font-size: 14px;
  transition: transform 0.2s ease;
  color: var(--gray-400);
}
.nav-item:hover .nav-link i.ri-arrow-down-s-line { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 290px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  z-index: 999;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  transition: var(--t-fast);
  cursor: pointer;
}
.dropdown-item:hover { background: var(--gray-50); }
.dropdown-item i {
  font-size: 18px;
  color: var(--orange);
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 38px;
  text-align: center;
  line-height: 1;
  transition: var(--t-normal);
}
.dropdown-item:hover i { background: var(--orange); color: #fff; }
.item-title { font-size: 13.5px; font-weight: 700; color: var(--dark-700); display: block; }
.item-desc { font-size: 12px; color: var(--gray-400); display: block; margin-top: 1px; }

/* Megamenu */
.megamenu {
  position: absolute;
  top: calc(100% + 12px);
  left: -180px;
  width: 680px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top center;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  z-index: 999;
}
.nav-item:hover .megamenu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.megamenu-col h4 {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 12px;
  padding: 0 8px;
}
.menu-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--t-fast);
}
.menu-list li a:hover { background: var(--gray-50); color: var(--orange); }
.menu-list li a i { font-size: 15px; color: var(--orange); min-width: 18px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t-normal);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark-700);
  color: #fff;
  border-color: var(--dark-700);
}
.btn-dark:hover { background: var(--dark-600); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn i { font-size: 16px; }

/* ===================== HERO SECTION ===================== */
.hero {
  background: var(--dark-900);
  color: var(--white);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 680px;
}
/* Animated gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 65% 40%, rgba(255,107,0,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(59,130,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 90% 10%, rgba(139,92,246,0.08) 0%, transparent 50%);
  animation: bgShift 8s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0% { opacity: 0.8; }
  100% { opacity: 1.2; }
}
/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.35);
  color: var(--orange-light);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero__title span { color: var(--orange); }
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), #ff8c38);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}
.hero__stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
}
.hero__stat {
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}
.hero__stat-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}
.hero__stat-lbl { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-400);
  font-size: 13px;
  margin-top: 24px;
  cursor: pointer;
  transition: var(--t-fast);
}
.hero__scroll:hover { color: var(--orange-light); }
.hero__scroll-arrow { animation: bounce 1.5s ease infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(255,107,0,0.4), transparent 50%, rgba(59,130,246,0.2));
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  opacity: 0.6;
}
.server-rack {
  width: 100%;
  max-width: 460px;
}
/* Floating badges */
.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-700);
  animation: floatAnim 3.5s ease-in-out infinite;
}
.hero__float--1 { top: 15%; left: -30px; animation-delay: 0s; }
.hero__float--2 { bottom: 20%; right: -30px; animation-delay: 1.8s; }
.hero__float--3 { bottom: 50%; left: -20px; animation-delay: 0.9s; }
.hero__float i { font-size: 20px; color: var(--orange); }
.hero__float .f-green { color: var(--green) !important; }
@keyframes floatAnim {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.hero__divider {
  height: 100px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-600);
}
.trust-bar__item i { font-size: 18px; color: var(--orange); }

/* ===================== DOMAIN SECTION ===================== */
.domain-section {
  background: var(--white);
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}
.domain-section__title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-700);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.domain-section__title span { color: var(--orange); }
.search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s;
  max-width: 800px;
  margin: 0 auto 28px;
}
.search-box:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-pale), var(--shadow-md); }
.search-box > i { padding: 0 18px; color: var(--gray-400); font-size: 20px; }
.domain-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 10px;
  font-size: 15px;
  font-family: var(--font-main);
  color: var(--dark-700);
  background: transparent;
}
.domain-search-input::placeholder { color: var(--gray-400); }
.search-box .btn { margin: 8px; border-radius: var(--radius-md); }

.domain-tlds {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.tld-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  transition: var(--t-normal);
  cursor: pointer;
}
.tld-badge:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tld-badge .price { color: var(--orange); font-weight: 800; }

/* ===================== SECTION HEADER ===================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--dark-700);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-desc {
  font-size: 16.5px;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================== PROMO CARDS ===================== */
.promo-section { background: var(--gray-50); padding: 70px 0; }
.promo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.promo-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t-slow);
  cursor: pointer;
  position: relative;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ff9a4a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.promo-card:hover::before { transform: scaleX(1); }
.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255,107,0,0.3);
}
.promo-card-body { padding: 24px; }
.promo-card-cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}
.promo-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark-700);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.promo-card-price .old {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
}
.promo-card-price .new {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: block;
  margin-top: 2px;
}
.promo-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
  transition: var(--t-fast);
}
.promo-card-btn:hover { gap: 8px; }

/* ===================== FEATURES ===================== */
.features-section { background: var(--white); padding: 90px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-pale), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), #ff8c38);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 8px 20px rgba(255,107,0,0.3);
}
.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  background: linear-gradient(135deg, rgba(255,107,0,0.3), transparent);
  z-index: -1;
}
.feature-icon i { color: #fff; font-size: 24px; }
.feature-title { font-size: 16px; font-weight: 800; color: var(--dark-700); margin-bottom: 10px; letter-spacing: -0.2px; }
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===================== PACKAGE TABS & CARDS ===================== */
.packages-section { background: var(--gray-50); padding: 90px 0; }
.tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--gray-500);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--t-normal);
  font-family: var(--font-main);
  white-space: nowrap;
}
.tab-btn.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,107,0,0.35);
}
.tab-btn:not(.active):hover {
  color: var(--orange);
  background: var(--orange-pale);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pkg-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 30px 30px;
  transition: var(--t-slow);
  position: relative;
  overflow: hidden;
}
.pkg-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ff9a4a);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.pkg-card:hover::after { transform: scaleX(1); }
.pkg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,0,0.25);
  box-shadow: 0 30px 80px rgba(255,107,0,0.12);
}
.pkg-card.featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, #fffaf6 0%, var(--white) 100%);
  box-shadow: 0 16px 60px rgba(255,107,0,0.15);
}
.pkg-card.featured:hover { box-shadow: 0 30px 80px rgba(255,107,0,0.2); }
.pkg-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}
.pkg-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-700);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.pkg-tagline { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.pkg-price {
  margin: 20px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.pkg-price .currency { font-size: 22px; font-weight: 800; color: var(--orange); vertical-align: top; margin-top: 6px; display: inline-block; }
.pkg-price .amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
}
.pkg-price .period { font-size: 14px; color: var(--gray-400); margin-left: 4px; font-weight: 500; }
.pkg-price .original { font-size: 14px; color: var(--gray-300); text-decoration: line-through; display: block; margin-top: 4px; }
.pkg-features {
  margin-bottom: 26px;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li i { color: var(--green); font-size: 17px; min-width: 17px; margin-top: 1px; flex-shrink: 0; }
.pkg-features li i.ri-close-circle-line { color: var(--gray-300); }
.pkg-features li strong { color: var(--dark-700); }
.pkg-card .btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px 22px; }

/* ===================== STATS SECTION ===================== */
.stats-section {
  background: var(--dark-800);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 80% 50%, rgba(59,130,246,0.08) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: var(--t-normal);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: var(--gray-400); font-weight: 600; }
.stat-icon { font-size: 28px; color: rgba(255,107,0,0.3); margin-bottom: 12px; }

/* ===================== PAGE HERO (Sub-pages) ===================== */
.page-hero {
  background: var(--dark-800);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 60%, rgba(255,107,0,0.18) 0%, transparent 70%),
    linear-gradient(180deg, transparent 60%, rgba(255,107,0,0.05) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero__content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--orange-light); font-weight: 600; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  line-height: 1.15;
}
.page-hero h1 span { color: var(--orange); }
.page-hero p {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* ===================== SEO CONTENT ===================== */
.seo-content { background: var(--white); padding: 90px 0; }
.seo-content__inner { max-width: 880px; margin: 0 auto; }
.seo-content h1 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  color: var(--dark-700);
  margin-bottom: 22px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.seo-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-700);
  margin: 36px 0 14px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  letter-spacing: -0.3px;
}
.seo-content p {
  font-size: 15.5px;
  color: var(--gray-500);
  line-height: 1.95;
  margin-bottom: 18px;
}
.seo-content p strong { color: var(--dark-700); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark-900);
  color: var(--gray-400);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .logo-text { font-size: 24px; font-weight: 900; color: var(--white); margin-bottom: 18px; display: block; }
.footer-brand .logo-text span { color: var(--orange); }
.footer-brand p { font-size: 14px; line-height: 1.9; margin-bottom: 24px; color: var(--gray-500); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  transition: var(--t-normal);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,0,0.4);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray-500);
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a i { font-size: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--orange-light); font-weight: 600; }
.footer-bottom a:hover { color: var(--orange); }
.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.bg-gray { background: var(--gray-50); }
.bg-dark { background: var(--dark-800); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.badge-hot { display: inline-block; background: #ef4444; color: #fff; font-size: 10.5px; font-weight: 800; padding: 2px 10px; border-radius: var(--radius-full); margin-left: 8px; vertical-align: middle; letter-spacing: 0.3px; }
.badge-new { display: inline-block; background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 800; padding: 2px 10px; border-radius: var(--radius-full); margin-left: 8px; vertical-align: middle; }
.badge-popular { display: inline-block; background: var(--green); color: #fff; font-size: 10.5px; font-weight: 800; padding: 2px 10px; border-radius: var(--radius-full); margin-left: 8px; vertical-align: middle; }

/* Mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--t-fast);
}
.mobile-menu-toggle:hover { background: var(--gray-100); }
.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--dark-700);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--t-normal);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero__title { font-size: 42px; }
  .section-title { font-size: 32px; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { display: none; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .main-navigation { display: none; }
  .mobile-menu-toggle { display: block; }
  .header-top-left { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 0 0; min-height: auto; }
  .hero__title { font-size: 32px; letter-spacing: -0.5px; }
  .hero__desc { font-size: 15px; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .page-hero h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .tabs { border-radius: var(--radius-md); }
}
@media (max-width: 400px) {
  .promo-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 16px; align-items: flex-start; }
}
