@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ───────────────────────────────────────────
   ROOT TOKENS
   ─────────────────────────────────────────── */
:root {
  --c-bg:        #0b0404;
  --c-bg2:       #110606;
  --c-bg3:       #180808;
  --c-bg4:       #1e0b0b;
  --c-maroon:    #6b0f1a;
  --c-red:       #c8102e;
  --c-red-light: #e8192e;
  --c-cream:     #f0e9dc;
  --c-cream2:    #e8dece;
  --c-white:     #ffffff;
  --c-grey:      rgba(240,233,220,0.45);
  --c-grey2:     rgba(240,233,220,0.25);
  --c-line:      rgba(240,233,220,0.08);
  --c-line2:     rgba(200,16,46,0.2);

  --f-head: 'Space Grotesk', sans-serif;
  --f-body: 'Inter', sans-serif;

  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in: cubic-bezier(0.55, 0, 1, 0.45);
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius:   10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --pill:      9999px;
}

/* ───────────────────────────────────────────
   RESET
   ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

/* ───────────────────────────────────────────
   LAYOUT
   ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ───────────────────────────────────────────
   LOADER
   ─────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.loader-logo-wrap img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}
.loader-name {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.2;
}
.loader-name span { color: var(--c-red); }

.loader-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c-maroon), var(--c-red));
  border-radius: 2px;
  animation: loader-anim 1.8s var(--ease) forwards;
}
@keyframes loader-anim { from { width: 0; } to { width: 100%; } }

/* ───────────────────────────────────────────
   NAVBAR
   ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(11,4,4,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-color: var(--c-line);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong {
  display: block;
  font-family: var(--f-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.02em;
}
.nav-logo-text small {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(240,233,220,0.6);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-white); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--c-bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: rgba(240,233,220,0.5);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--c-white); }

/* ───────────────────────────────────────────
   BUTTONS
   ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--pill);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(200,16,46,0.35);
}
.btn-primary:hover {
  background: var(--c-red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid rgba(240,233,220,0.2);
  padding: 13px 28px;
}
.btn-secondary:hover {
  border-color: var(--c-red);
  color: var(--c-red);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--c-white);
  color: var(--c-red);
  padding: 14px 28px;
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
}
.btn-outline-white:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.1);
}

/* Arrow icon inside button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* ───────────────────────────────────────────
   TICKER
   ─────────────────────────────────────────── */
.ticker-bar {
  overflow: hidden;
  background: var(--c-red);
  padding: 10px 0;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 0;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.ticker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ───────────────────────────────────────────
   HERO
   ─────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 40%, rgba(107,15,26,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(200,16,46,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #0b0404 0%, #1a080e 55%, #0d0405 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: var(--pill);
  padding: 6px 16px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-red);
  animation: blink 2.2s ease infinite;
}
@keyframes blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.7); }
  50%       { box-shadow: 0 0 0 7px rgba(200,16,46,0); }
}
.hero-badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red);
}
.hero-headline {
  font-family: var(--f-head);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--c-white);
  max-width: 760px;
  margin-bottom: 28px;
}
.hero-headline .hl-red { color: var(--c-red); }
.hero-subtext {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,233,220,0.6);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.hero-divider {
  width: 100%;
  height: 1px;
  background: var(--c-line);
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: var(--f-head);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--c-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,233,220,0.35);
  margin-top: 5px;
}

/* ───────────────────────────────────────────
   SECTION BASICS
   ─────────────────────────────────────────── */
section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-red);
  border-radius: 2px;
}
.section-title {
  font-family: var(--f-head);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 16px;
}
.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,233,220,0.55);
}
.section-head-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-head-center .section-label {
  justify-content: center;
}
.section-head-center .section-label::before { display: none; }

/* ───────────────────────────────────────────
   REVEAL ANIMATIONS
   ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.from-left  { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.visible    { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ───────────────────────────────────────────
   ABOUT
   ─────────────────────────────────────────── */
#about { background: var(--c-bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro {
  font-family: var(--f-head);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--c-cream);
  margin-bottom: 24px;
}
.about-intro em { font-style: normal; color: var(--c-red); }

.about-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(240,233,220,0.55);
  margin-bottom: 16px;
}
.about-pillars {
  margin-top: 32px;
  border-top: 1px solid var(--c-line);
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
  transition: padding-left 0.3s var(--ease);
}
.pillar:hover { padding-left: 10px; }
.pillar-num {
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-red);
  padding-top: 2px;
  min-width: 24px;
}
.pillar-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 3px;
}
.pillar-info p {
  font-size: 0.78rem;
  color: rgba(240,233,220,0.42);
  line-height: 1.55;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-card {
  padding: 28px 24px;
  background: rgba(240,233,220,0.03);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.about-card:hover { transform: translateY(-5px); background: rgba(200,16,46,0.06); border-color: var(--c-line2); }
.about-card:hover::before { transform: scaleX(1); }
.about-card-icon { font-size: 1.6rem; margin-bottom: 14px; }
.about-card h4 { font-family: var(--f-head); font-size: 0.88rem; font-weight: 600; color: var(--c-white); margin-bottom: 6px; }
.about-card p  { font-size: 0.76rem; color: rgba(240,233,220,0.42); line-height: 1.6; }

/* ───────────────────────────────────────────
   SERVICES
   ─────────────────────────────────────────── */

#services {
  background: var(--c-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-items: start;
  grid-auto-rows: auto;
}

.service-cell {
  position: relative;
  padding: 24px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  transition: background 0.3s var(--ease);
  height: auto;
  min-height: 220px; /* adjust if needed */
}

.service-cell:nth-child(3n) {
  border-right: none;
}

.service-cell:nth-last-child(-n + 3) {
  border-bottom: none;
}

.service-cell:hover {
  background: rgba(200, 16, 46, 0.05);
}

.service-cell-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}

.service-cell:hover .service-cell-icon {
  background: rgba(200, 16, 46, 0.2);
}

.service-cell h3 {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-white);
  margin: 0 0 10px;
  line-height: 1.3;
}

.service-cell p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(240, 233, 220, 0.65);
  line-height: 1.6;
}

.service-cell-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--c-red);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
}

.service-cell:hover .service-cell-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Tablet */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cell:nth-child(3n) {
    border-right: 1px solid var(--c-line);
  }

  .service-cell:nth-child(2n) {
    border-right: none;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-cell {
    border-right: none;
    min-height: auto;
  }

  .service-cell:last-child {
    border-bottom: none;
  }
}

/* ───────────────────────────────────────────
   PRICING
   ─────────────────────────────────────────── */
#pricing { background: var(--c-bg2); }

.pricing-tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 52px;
  background: rgba(240,233,220,0.04);
  border: 1px solid var(--c-line);
  border-radius: var(--pill);
  padding: 5px;
  width: fit-content;
  margin-inline: auto;
}
.tab-btn {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 9px 22px;
  border-radius: var(--pill);
  color: rgba(240,233,220,0.45);
  transition: all 0.3s var(--ease);
}
.tab-btn:hover { color: var(--c-cream); }
.tab-btn.active {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: 0 2px 12px rgba(200,16,46,0.4);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* website packages */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pkg-card {
  padding: 32px 28px;
  background: rgba(240,233,220,0.03);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  position: relative;
}
.pkg-card:hover { transform: translateY(-6px); border-color: var(--c-line2); background: rgba(107,15,26,0.18); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.pkg-card.is-featured {
  background: rgba(107,15,26,0.35);
  border-color: var(--c-red);
  box-shadow: 0 0 0 1px var(--c-red), 0 20px 60px rgba(200,16,46,0.15);
}
.pkg-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-red);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
}
.pkg-emoji { font-size: 1.8rem; margin-bottom: 16px; }
.pkg-name {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,233,220,0.38);
  margin-bottom: 6px;
}
.pkg-price {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-price sup { font-size: 0.85rem; color: rgba(240,233,220,0.35); }
.pkg-desc {
  font-size: 0.7rem;
  color: rgba(240,233,220,0.32);
  margin-bottom: 24px;
}
.pkg-rule { height: 1px; background: var(--c-line); margin-bottom: 20px; }
.pkg-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(240,233,220,0.72);
}
.pkg-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: rgba(200,16,46,0.12);
  border: 1.5px solid rgba(200,16,46,0.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 2.5' stroke='%23c8102e' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

/* domains */
.domain-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.domain-card {
  padding: 28px 24px;
  background: rgba(240,233,220,0.03);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s var(--ease);
}
.domain-card:hover { border-color: var(--c-line2); background: rgba(200,16,46,0.06); }
.domain-ext { font-family: var(--f-head); font-size: 1.5rem; font-weight: 700; color: var(--c-red); margin-bottom: 6px; }
.domain-price { font-family: var(--f-head); font-size: 1.15rem; font-weight: 700; color: var(--c-white); }
.domain-per { font-size: 0.68rem; color: rgba(240,233,220,0.3); margin-top: 3px; }

/* addons */
.addons-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
  transition: background 0.25s;
  gap: 16px;
}
.addon-row:nth-child(even) { border-right: none; }
.addon-row:nth-last-child(-n+2) { border-bottom: none; }
.addon-row:hover { background: rgba(200,16,46,0.05); }
.addon-name { font-size: 0.85rem; font-weight: 500; color: var(--c-cream); }
.addon-price { font-family: var(--f-head); font-size: 0.85rem; font-weight: 700; color: var(--c-red); white-space: nowrap; }

/* ───────────────────────────────────────────
   PROCESS
   ─────────────────────────────────────────── */
#process { background: var(--c-bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line2) 20%, var(--c-line2) 80%, transparent);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
}
.step-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1.5px solid var(--c-line2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-red);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.35s var(--ease);
}
.process-step:hover .step-num {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
  box-shadow: 0 0 0 8px rgba(200,16,46,0.1);
}
.process-step h3 {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.78rem;
  color: rgba(240,233,220,0.4);
  line-height: 1.65;
}

/* ───────────────────────────────────────────
   TESTIMONIALS
   ─────────────────────────────────────────── */
#testimonials { background: var(--c-bg2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi-card {
  padding: 32px 28px;
  background: rgba(240,233,220,0.025);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  position: relative;
}
.testi-card::after {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(200,16,46,0.1);
  pointer-events: none;
}
.testi-card:hover { transform: translateY(-5px); border-color: var(--c-line2); background: rgba(200,16,46,0.05); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { color: var(--c-red); font-size: 0.78rem; }
.testi-quote {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(240,233,220,0.65);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}
.testi-meta strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--c-white); }
.testi-meta span   { font-size: 0.7rem; color: rgba(240,233,220,0.3); }

/* ───────────────────────────────────────────
   FAQ
   ─────────────────────────────────────────── */
#faq { background: var(--c-bg); }

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
  transition: border-color 0.25s;
}
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-item.open { border-color: var(--c-line2); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
}
.faq-q-text {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-cream);
  transition: color 0.2s;
}
.faq-item.open .faq-q-text { color: var(--c-white); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-white);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-ans {
  padding-bottom: 22px;
  font-size: 0.85rem;
  color: rgba(240,233,220,0.5);
  line-height: 1.8;
}
.faq-item.open .faq-body { max-height: 280px; }

/* ───────────────────────────────────────────
   CTA BAND
   ─────────────────────────────────────────── */
#cta-band {
  background: var(--c-maroon);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.45) 0%, transparent 55%);
}
#cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Crect width='64' height='64' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3C/svg%3E");
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-band-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 18px;
}
.cta-band-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-band-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ───────────────────────────────────────────
   CONTACT
   ─────────────────────────────────────────── */
#contact { background: var(--c-bg2); }

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info-items { margin-top: 28px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius);
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.contact-detail strong { display: block; font-size: 0.78rem; font-weight: 600; color: var(--c-white); margin-bottom: 2px; }
.contact-detail span { font-size: 0.78rem; color: rgba(240,233,220,0.38); }

.contact-form { display: grid; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,233,220,0.38);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(240,233,220,0.04);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--c-cream);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(240,233,220,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: #1a0808; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c-red); background: rgba(200,16,46,0.05); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,233,220,0.18); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ───────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────── */
footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.footer-brand-logo strong { font-family: var(--f-head); font-size: 0.9rem; font-weight: 700; color: var(--c-white); }
.footer-desc {
  font-size: 0.8rem;
  color: rgba(240,233,220,0.35);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 8px; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(240,233,220,0.05);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(240,233,220,0.38);
  transition: all 0.3s var(--ease);
}
.social-link:hover { background: rgba(200,16,46,0.18); border-color: var(--c-line2); color: var(--c-red); transform: translateY(-2px); }
.footer-col h5 {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(240,233,220,0.35); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--c-red); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.72rem; color: rgba(240,233,220,0.25); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.72rem; color: rgba(240,233,220,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: var(--c-red); }

/* ───────────────────────────────────────────
   FLOATING
   ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

.back-to-top {
  position: fixed;
  bottom: 94px; right: 28px;
  z-index: 500;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(200,16,46,0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--c-red); transform: translateY(-3px); }

/* ───────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-cell:nth-child(3n)   { border-right: 1px solid var(--c-line); }
  .services-grid .service-cell:nth-child(2n)   { border-right: none; }
  .services-grid .service-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--c-line); }
  .services-grid .service-cell:nth-last-child(-n+2) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .domain-cards { grid-template-columns: 1fr 1fr; }
  .addons-table { grid-template-columns: 1fr; }
  .addon-row { border-right: none !important; }
  .addon-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .addon-row:last-child { border-bottom: none; }
  .about-right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-cell { border-right: none !important; }
  .hero-stats { gap: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .about-right { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
