/* ── Reset & variables ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --bg:          #080c14;
  --bg-dark:     #05080f;
  --bg-card:     #0d1421;
  --bg-card-hov: #121a2e;
  --bg-surface:  #111827;
  --border:      rgba(255,255,255,0.07);
  --border-hov:  rgba(255,255,255,0.14);

  /* Brand */
  --orange:      #e8531a;
  --orange-hov:  #d44714;
  --orange-dim:  rgba(232,83,26,0.12);
  --orange-glow: rgba(232,83,26,0.25);

  /* Text */
  --text:        #eef2ff;
  --text-muted:  #6b7a99;
  --text-dim:    #3d4a66;
  --white:       #ffffff;

  /* Semantic */
  --green:       #22c55e;
  --green-dim:   rgba(34,197,94,0.12);

  /* Shape */
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  /* Shadow */
  --shadow:      0 4px 32px rgba(0,0,0,0.6);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 0 1px rgba(232,83,26,0.2), 0 8px 40px rgba(232,83,26,0.15);

  /* Motion */
  --transition:  0.2s ease;
  --transition-slow: 0.4s ease;

  /* Type */
  --font:        'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w:       1160px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-hov); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.accent      { color: var(--orange); }
.text-center { text-align: center; }
.mt-1        { margin-top: 1rem; }
.mt-2        { margin-top: 2rem; }

.section      { padding: 96px 0; }
.section-dark { background: var(--bg-dark); padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 2.25rem; font-weight: 800;
  margin-bottom: 14px; letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

/* ── Gradient text utility ──────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(130deg, var(--orange) 0%, #ff7c45 45%, #ffaa70 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all var(--transition); border: 1.5px solid transparent;
  font-family: var(--font); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-lg  { padding: 13px 30px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm  { padding: 7px 16px; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 20px rgba(232,83,26,0.3);
}
.btn-primary:hover {
  background: var(--orange-hov);
  color: #fff;
  box-shadow: 0 4px 28px rgba(232,83,26,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hov);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: rgba(232,83,26,0.5);
  color: var(--orange);
  background: var(--orange-dim);
}

.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.btn-icon { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1rem; padding: 4px 8px; transition: color var(--transition); }
.btn-icon:hover { color: var(--orange); }

/* ── Alerts ─────────────────────────────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 24px; font-weight: 500; font-size: 0.9rem; }
.alert-success { background: var(--green-dim); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #f87171; }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* subtle ambient bg so the pill doesn't float on a void */
  background: rgba(5,8,15,0.5);
  backdrop-filter: blur(6px);
  padding: 10px 24px;
}
/* The nav IS the floating pill (it also carries .container for max-width) */
.nav {
  display: flex; align-items: center; gap: 20px;
  height: 54px;
  background: rgba(10,15,26,0.90);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 0 10px 0 22px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 34px; display: block; }

.nav-links {
  display: flex; gap: 1px; flex: 1; align-items: center;
}
.nav-links > li > a {
  color: var(--text-muted); padding: 7px 12px; border-radius: 8px;
  font-weight: 500; font-size: 0.875rem;
  transition: all var(--transition); white-space: nowrap; display: inline-flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* Dropdown trigger chevron */
.has-dropdown { position: relative; }
.caret {
  display: inline-block; line-height: 1;
  transition: transform var(--transition);
  opacity: 0.4; margin-left: 1px;
  /* Use a proper chevron SVG via mask */
  width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  flex-shrink: 0;
}
.has-dropdown:hover > a .caret { transform: rotate(180deg); opacity: 0.8; }

/* Gap bridge so cursor can travel into the menu */
.has-dropdown::before {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 10px; display: none;
}
.has-dropdown:hover::before { display: block; }

/* ── Dropdown panel ─────────────────────────────────────────────────────── */
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  background: rgba(9,13,22,0.97);
  backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 8px;
  min-width: 260px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04) inset;
  z-index: 200; flex-direction: column; gap: 2px;
}
.nav-dropdown-right { left: auto; right: 0; }
.has-dropdown:hover .nav-dropdown { display: flex; }

/* ── Dropdown items with icon + title + desc ────────────────────────────── */
.nav-dd-item {
  display: flex; align-items: center; gap: 13px;
  padding: 10px 12px; border-radius: 14px;
  transition: background var(--transition);
  text-decoration: none;
}
.nav-dd-item:hover { background: rgba(255,255,255,0.05); }
.nav-dd-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--orange-dim); border: 1px solid rgba(232,83,26,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.nav-dd-icon svg { width: 17px; height: 17px; }
.nav-dd-icon.icon-mail { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.2); color: #818cf8; }
.nav-dd-icon.icon-info { background: rgba(34,197,94,0.10); border-color: rgba(34,197,94,0.2); color: var(--green); }
.nav-dd-icon.icon-book { background: rgba(251,191,36,0.10); border-color: rgba(251,191,36,0.2); color: #fbbf24; }
.nav-dd-icon.icon-doc  { background: rgba(156,163,175,0.10); border-color: rgba(156,163,175,0.15); color: #9ca3af; }
.nav-dd-icon.icon-kb   { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.2); color: #818cf8; }
.nav-dd-icon.icon-chat { background: var(--orange-dim); border-color: rgba(232,83,26,0.18); color: var(--orange); }
.nav-dd-content { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-dd-title { font-size: 0.875rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.nav-dd-desc  { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }

/* Dropdown divider */
.nav-dd-divider { height: 1px; background: var(--border); margin: 6px 4px; }

/* Dropdown footer link */
.nav-dd-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 4px; font-size: 0.76rem; color: var(--text-muted);
  font-weight: 500;
}
.nav-dd-footer a { color: var(--orange); font-weight: 600; font-size: 0.76rem; }
.nav-dd-footer a:hover { color: var(--orange-hov); }

/* ── Mobile menu items ───────────────────────────────────────────────────── */

/* Top-level parent row */
.mobile-parent-row {
  display: flex; align-items: center;
  border-radius: 10px; transition: background var(--transition);
}
.mobile-parent-row:hover { background: rgba(255,255,255,0.04); }
.mobile-parent-row > a {
  flex: 1; padding: 10px 14px;
  color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
  transition: color var(--transition);
}
.mobile-parent-row:hover > a { color: var(--text); }

/* Chevron button */
.mobile-expand-btn {
  background: none; border: none; cursor: pointer;
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); margin-right: 4px;
  transition: background var(--transition), color var(--transition);
}
.mobile-expand-btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.mobile-expand-btn.open { background: rgba(255,255,255,0.05); color: var(--text); }
.mobile-expand-btn.open svg { transform: rotate(180deg); }

/* Standalone link (Students) */
.mobile-solo-link {
  display: flex; align-items: center;
  padding: 10px 14px; border-radius: 10px;
  color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
  transition: all var(--transition);
}
.mobile-solo-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }

/* Thin divider between groups */
.mobile-divider { height: 1px; background: var(--border); margin: 4px 4px; }

/* Sub-items use the same nav-dd-item layout as desktop */
.mobile-children { display: none; flex-direction: column; gap: 2px; padding: 4px 0 6px; }
.mobile-children.open { display: flex; }

/* Scale icons down slightly vs desktop dropdown */
.mobile-children .nav-dd-item { padding: 8px 10px; border-radius: 12px; }
.mobile-children .nav-dd-icon { width: 34px; height: 34px; border-radius: 9px; }
.mobile-children .nav-dd-icon svg { width: 15px; height: 15px; }
.mobile-children .nav-dd-title { font-size: 0.85rem; }
.mobile-children .nav-dd-desc  { font-size: 0.72rem; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--orange); color: #fff;
  font-size: 0.7rem; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 10px;
  margin-left: auto; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(9,13,22,0.97);
  backdrop-filter: blur(28px);
  /* sits below the pill, inset from screen edges to match pill width */
  margin: 8px 24px 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  padding: 14px 16px 18px;
}
.mobile-menu.open { display: flex; }
.mobile-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.mobile-actions {
  display: flex; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.mobile-actions .btn { flex: 1; justify-content: center; }

/* ── Hero — 21st.dev style ──────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 130px 0 110px;
  background: var(--bg-dark);
  min-height: 92vh;
  display: flex; align-items: center;
}

/* Background layers */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* Dot-grid pattern */
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

/* Central spotlight beam */
.hero-spotlight {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: conic-gradient(from 180deg at 50% 30%,
    transparent 60deg,
    rgba(232,83,26,0.10) 90deg,
    rgba(232,83,26,0.06) 120deg,
    transparent 180deg);
  filter: blur(1px);
}

/* Ambient glows */
.hero-glow-center {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(232,83,26,0.13) 0%, transparent 65%);
}
.hero-glow-left {
  position: absolute; top: 30%; left: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.06) 0%, transparent 70%);
}
.hero-glow-right {
  position: absolute; top: 20%; right: -8%;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(232,83,26,0.07) 0%, transparent 70%);
}

/* Divider line with glow */
.hero-line {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-glow), transparent);
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  max-width: 900px; margin: 0 auto;
}

/* Announcement pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), color var(--transition);
}
.hero-pill:hover { border-color: rgba(232,83,26,0.35); color: var(--text); }
.hero-pill-badge {
  background: var(--orange); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 10px; border-radius: 100px;
}
.hero-pill svg { width: 14px; height: 14px; opacity: 0.6; flex-shrink: 0; }

/* Headline */
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-gradient-text {
  background: linear-gradient(130deg, var(--orange) 0%, #ff7c45 40%, #ffb57a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Sub-headline */
.hero-sub {
  font-size: 1.2rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.75;
  margin-bottom: 40px;
}

/* CTA group */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }

/* Social proof stats */
.hero-social-proof {
  display: flex; align-items: center; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}
.proof-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.proof-num { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.proof-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* Dashboard mockup */
.hero-mockup {
  margin-top: 72px; width: 100%; max-width: 860px;
  position: relative;
}
.hero-mockup-window {
  background: rgba(13,20,33,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 100px rgba(0,0,0,0.8),
    0 0 80px rgba(232,83,26,0.08);
}
.hero-mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot-r { background: #ff5f57; }
.mockup-dot-y { background: #febe2d; }
.mockup-dot-g { background: #28c840; }
.mockup-url-bar {
  flex: 1; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 5px 14px; font-size: 0.78rem; color: var(--text-muted);
  max-width: 280px; margin: 0 auto; text-align: center;
}
.hero-mockup-body {
  padding: 28px; display: grid;
  grid-template-columns: 200px 1fr; gap: 20px;
  min-height: 240px;
}
.mockup-sidebar {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.mockup-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
}
.mockup-nav-item.active { background: var(--orange-dim); color: var(--orange); }
.mockup-nav-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}
.mockup-content { display: flex; flex-direction: column; gap: 14px; }
.mockup-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mockup-stat {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; font-size: 0.75rem;
}
.mockup-stat-val {
  font-size: 1.3rem; font-weight: 800; color: var(--white);
  margin-bottom: 4px; display: block;
}
.mockup-stat-lbl { color: var(--text-muted); font-size: 0.72rem; }
.mockup-uptime { color: var(--green); }
.mockup-bar-chart { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.mockup-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.mockup-bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--orange-dim); min-width: 0; transition: background var(--transition); }
.mockup-bar:hover { background: rgba(232,83,26,0.3); }
.mockup-bar-label { color: var(--text-muted); font-size: 0.7rem; margin-top: 8px; display: flex; justify-content: space-between; }

/* Floating cards on mockup */
.hero-badge {
  position: absolute;
  background: rgba(13,20,33,0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg);
  padding: 12px 18px; font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  white-space: nowrap; color: var(--text);
  z-index: 2;
}
.hero-badge-icon { font-size: 1.1rem; }
.hero-badge-icon.green { color: var(--green); }
.hero-badge-icon.orange { color: var(--orange); }
.hero-badge-sub { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; display: block; }
.badge-left  { bottom: -18px; left: -18px; }
.badge-right { top: -18px; right: -18px; }

/* ── Bento features grid ─────────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.bento-card:hover {
  border-color: var(--border-hov);
  transform: translateY(-2px);
}
.bento-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(232,83,26,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Bento card spans */
.bento-col-8  { grid-column: span 8; }
.bento-col-4  { grid-column: span 4; }
.bento-col-6  { grid-column: span 6; }
.bento-col-5  { grid-column: span 5; }
.bento-col-7  { grid-column: span 7; }
.bento-col-12 { grid-column: span 12; }

.bento-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange-dim); border: 1px solid rgba(232,83,26,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem; color: var(--orange);
}
.bento-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.bento-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* Large bento card (speed/perf card) */
.bento-card-lg .bento-card-icon { width: 56px; height: 56px; border-radius: 18px; font-size: 1.6rem; }
.bento-card-lg h3 { font-size: 1.35rem; }

/* Speed meter visual */
.bento-meter {
  margin-top: 24px; display: flex; flex-direction: column; gap: 10px;
}
.bento-meter-row { display: flex; align-items: center; gap: 12px; }
.bento-meter-label { font-size: 0.8rem; color: var(--text-muted); width: 90px; flex-shrink: 0; }
.bento-meter-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.bento-meter-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--orange), #ff9f6b); }
.bento-meter-val { font-size: 0.78rem; font-weight: 700; color: var(--orange); width: 45px; text-align: right; }

/* Uptime ring visual */
.bento-uptime {
  margin-top: 20px; display: flex; align-items: center; gap: 20px;
}
.bento-ring {
  width: 80px; height: 80px; border-radius: 50%;
  background: conic-gradient(var(--green) 0% 99.9%, rgba(255,255,255,0.06) 99.9%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.bento-ring::before {
  content: ''; width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-card); position: absolute;
}
.bento-ring-label {
  position: relative; z-index: 1;
  font-size: 0.78rem; font-weight: 800; color: var(--green);
}
.bento-uptime-text p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }
.bento-uptime-text strong { color: var(--text); font-size: 0.9rem; }

/* Support card visual */
.bento-support-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.bento-tag {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
}
.bento-tag.active { background: var(--orange-dim); border-color: rgba(232,83,26,0.25); color: var(--orange); }

/* NVMe visual */
.bento-storage-visual {
  margin-top: 20px; display: flex; gap: 8px; align-items: flex-end;
  height: 60px;
}
.bento-storage-bar {
  flex: 1; border-radius: 4px;
  background: linear-gradient(to top, var(--orange), rgba(232,83,26,0.3));
}

/* SSL card checklist */
.bento-checklist { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.bento-check-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.bento-check-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--green-dim); border: 1px solid rgba(34,197,94,0.3); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--green); }

/* ── Terminal color helpers ──────────────────────────────────────────────── */
.t-dim    { color: var(--text-dim); }
.t-green  { color: var(--green); }
.t-orange { color: var(--orange); }

/* ── Plan cards ──────────────────────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plans-grid-full .plan-card { align-self: stretch; }

.plan-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  position: relative; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; min-width: 0;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border-hov); }
.plan-featured {
  border-color: rgba(232,83,26,0.4);
  background: linear-gradient(160deg, rgba(232,83,26,0.07) 0%, var(--bg-card) 55%);
  box-shadow: 0 0 0 1px rgba(232,83,26,0.15), 0 20px 60px rgba(0,0,0,0.4);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; padding: 4px 18px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232,83,26,0.4);
}
.plan-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.plan-currency { font-size: 1.2rem; font-weight: 600; color: var(--text-muted); }
.plan-amount { font-size: 2.8rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.plan-period { color: var(--text-muted); font-size: 0.9rem; }
.plan-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.plan-features { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.plan-features-full li { font-size: 0.9rem; }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--text-dim); }

/* Billing toggle */
.billing-toggle { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; width: fit-content; margin: 0 auto 48px; background: rgba(255,255,255,0.02); }
.toggle-btn { background: none; border: none; color: var(--text-muted); padding: 10px 24px; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: 0.9rem; transition: all var(--transition); }
.toggle-btn.active { background: var(--orange); color: #fff; }
.save-badge { background: var(--green-dim); color: var(--green); padding: 2px 8px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; margin-left: 6px; border: 1px solid rgba(34,197,94,0.2); }

/* ── Why grid ────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 24px;
  transition: all var(--transition);
}
.why-card:hover { border-color: rgba(232,83,26,0.25); transform: translateY(-3px); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-dim); border: 1px solid rgba(232,83,26,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange); margin-bottom: 18px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: -10px; right: 20px;
  font-size: 8rem; color: rgba(232,83,26,0.06); font-weight: 800;
  line-height: 1; pointer-events: none;
}
.testimonial-card:hover { border-color: rgba(232,83,26,0.3); transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.8;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.78rem; }

/* ── Testimonials carousel ───────────────────────────────────────────────── */

/* Outer flex row: [←] [carousel] [→] */
.testimonials-area {
  display: flex; align-items: center; gap: 20px;
}

/* The clipping viewport — flex-grows to fill space between arrows */
.testimonials-carousel {
  flex: 1; min-width: 0;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  /* transition applied by JS so we can disable it on snap */
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  display: flex; justify-content: center;
  padding: 4px 0 8px;
}

/* Card inside carousel */
.testimonial-slide .testimonial-card {
  max-width: 720px; width: 100%;
  padding: 40px 48px;
  background: var(--bg-card);
  border-color: rgba(255,255,255,0.09);
}
.testimonial-slide .testimonial-card:hover { transform: none; }
.testimonial-slide .testimonial-text { font-size: 1.05rem; line-height: 1.85; }

/* Dots row — sits below the flex row */
.testimonials-controls {
  display: flex; justify-content: center;
  margin-top: 28px;
}

/* Side arrow buttons */
.tc-btn {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.tc-btn:hover {
  border-color: rgba(232,83,26,0.4);
  color: var(--orange);
  background: var(--orange-dim);
}
.tc-btn svg { width: 18px; height: 18px; }

/* Infinite-scroll dot indicators */
.tc-dots-viewport {
  overflow: hidden;
  /* 5 × 6px dots + 4 × 8px gaps = 62px */
  width: 62px; height: 20px;
  display: flex; align-items: center;
}
.tc-dots-track {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.tc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0; border: none; padding: 0; cursor: default;
  pointer-events: none;
}
/* Fixed positional styling — the active one is always the centre */
.tc-dots-track .tc-dot:nth-child(1) { opacity: 0.18; }
.tc-dots-track .tc-dot:nth-child(2) { opacity: 0.45; }
.tc-dots-track .tc-dot:nth-child(3) { background: var(--orange); opacity: 1; transform: scale(1.4); }
.tc-dots-track .tc-dot:nth-child(4) { opacity: 0.45; }
.tc-dots-track .tc-dot:nth-child(5) { opacity: 0.18; }


/* ── CTA banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  padding: 96px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(232,83,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 100%);
}
.cta-inner  {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-size: 2.5rem; font-weight: 800; color: var(--white);
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.cta-inner p  { color: var(--text-muted); margin-bottom: 36px; font-size: 1.1rem; }
.cta-inner .btn-primary { box-shadow: 0 4px 28px rgba(232,83,26,0.4); }

/* ── Page hero ───────────────────────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--bg-dark);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 0% 50%, rgba(232,83,26,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-sm { padding: 56px 0 44px; }
.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.page-hero p  { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin-top: 12px; }

.breadcrumb { color: var(--text-muted); font-size: 0.88rem; display: inline-block; margin-bottom: 14px; }
.breadcrumb:hover { color: var(--text); }

/* ── Domain page ─────────────────────────────────────────────────────────── */
.domain-search-box { max-width: 680px; margin: 0 auto 56px; }
.domain-form { width: 100%; }
.domain-input-wrap { display: flex; gap: 0; }
.domain-input {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); padding: 14px 20px;
  border-radius: var(--radius) 0 0 var(--radius); font-size: 1rem;
  font-family: var(--font); outline: none; transition: border-color var(--transition);
}
.domain-input:focus { border-color: var(--orange); }
.domain-input-wrap .btn { border-radius: 0 var(--radius) var(--radius) 0; }

.tld-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-bottom: 48px; }
.tld-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 14px; text-align: center;
  transition: all var(--transition);
}
.tld-card:hover { border-color: rgba(232,83,26,0.35); transform: translateY(-3px); }
.tld { display: block; font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.tld-price { color: var(--text-muted); font-size: 0.82rem; }

.domain-features { display: flex; flex-direction: column; gap: 20px; max-width: 640px; margin: 0 auto; }
.domain-feature { display: flex; gap: 20px; align-items: flex-start; }
.domain-feature > span { font-size: 1.6rem; }
.domain-feature h4 { font-weight: 600; margin-bottom: 4px; }
.domain-feature p  { color: var(--text-muted); font-size: 0.9rem; }

/* ── KB search ───────────────────────────────────────────────────────────── */
.kb-search-form { margin-top: 28px; }
.kb-search-wrap { display: flex; gap: 0; max-width: 520px; }
.kb-search-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 12px 18px;
  border-radius: var(--radius) 0 0 var(--radius); font-size: 1rem; font-family: var(--font); outline: none;
}
.kb-search-input::placeholder { color: rgba(255,255,255,0.35); }
.kb-search-wrap .btn { border-radius: 0 var(--radius) var(--radius) 0; }
.search-summary { color: var(--text-muted); margin-bottom: 32px; }

.kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kb-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  transition: all var(--transition); display: flex; flex-direction: column; gap: 10px;
  color: var(--text);
}
.kb-card:hover { border-color: rgba(232,83,26,0.3); transform: translateY(-3px); color: var(--text); }
.kb-category { font-size: 0.75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; }
.kb-card h3 { font-size: 1rem; font-weight: 600; }
.kb-card p  { color: var(--text-muted); font-size: 0.88rem; flex: 1; }
.kb-cta { text-align: center; margin-top: 56px; }
.kb-cta p { color: var(--text-muted); margin-bottom: 16px; }
.empty-state { text-align: center; padding: 60px 0; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Blog ────────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  color: var(--text); transition: all var(--transition);
}
.blog-card:hover { border-color: rgba(232,83,26,0.3); transform: translateY(-3px); color: var(--text); }
.blog-card-meta { display: flex; gap: 12px; align-items: center; }
.blog-category { font-size: 0.75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-date { color: var(--text-dim); font-size: 0.82rem; }
.blog-card h2 { font-size: 1.15rem; font-weight: 700; }
.blog-card p  { color: var(--text-muted); font-size: 0.9rem; flex: 1; }

/* ── Article ─────────────────────────────────────────────────────────────── */
.article-layout, .blog-post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; }
.article-body { min-width: 0; }
.article-excerpt { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.article-content { color: var(--text); line-height: 1.8; }
.article-content h2, .article-content h3 { margin: 28px 0 12px; }
.article-content p  { margin-bottom: 16px; }
.article-content ul { list-style: disc; padding-left: 24px; }
.article-content ul li { margin-bottom: 8px; }
.article-sidebar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  height: fit-content; position: sticky; top: 90px;
}
.article-sidebar h4 { font-weight: 600; margin-bottom: 14px; }
.article-sidebar hr { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.helpful-btns { display: flex; gap: 10px; margin-bottom: 6px; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.contact-form-wrap { min-width: 0; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
}
.contact-icon { font-size: 1.4rem; display: block; margin-bottom: 8px; }
.contact-card h4 { font-weight: 600; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.9rem; }
.contact-note { color: var(--text-muted); font-size: 0.85rem; padding: 16px; border-left: 3px solid var(--orange); background: var(--orange-dim); border-radius: 0 var(--radius) var(--radius) 0; }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 500; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text); padding: 12px 16px;
  border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font);
  outline: none; transition: border-color var(--transition); resize: vertical;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
.form-group select option { background: var(--bg-card); color: var(--text); }

/* ── About ───────────────────────────────────────────────────────────────── */
.about-content { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }
.about-text h2 { font-size: 1.6rem; font-weight: 700; margin: 0 0 16px; letter-spacing: -0.01em; }
.about-text p  { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.values-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.value h4 { font-weight: 600; margin-bottom: 4px; }
.value p  { color: var(--text-muted); font-size: 0.9rem; }
.about-stats { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; text-align: center; }
.stat-num   { display: block; font-size: 2.4rem; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ── Cart ────────────────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 16px; color: var(--text-muted); font-size: 0.82rem; font-weight: 600; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.06em; }
.cart-table td { padding: 18px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-name { font-weight: 600; }
.cart-period { color: var(--text-muted); font-size: 0.9rem; }
.qty-input { width: 60px; background: var(--bg-card); border: 1px solid var(--border); color: var(--text); padding: 6px 10px; border-radius: 6px; font-family: var(--font); text-align: center; }
.qty-form { display: inline; }
.cart-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  position: sticky; top: 90px;
}
.cart-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.summary-total { font-weight: 700; font-size: 1.05rem; border-bottom: none; padding-top: 14px; color: var(--text); }
.summary-note { color: var(--text-muted); font-size: 0.78rem; margin: 12px 0 20px; }

/* ── Legal ───────────────────────────────────────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 600; margin: 24px 0 8px; color: var(--text); }
.legal-content p  { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--orange); }

.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.legal-table th { text-align: left; padding: 10px 16px; background: rgba(255,255,255,0.04); color: var(--text); font-weight: 600; border-bottom: 2px solid var(--border); }
.legal-table td { padding: 10px 16px; color: var(--text-muted); border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-table tr:last-child td { border-bottom: none; }

.legal-formula {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius); padding: 24px 28px; margin: 20px 0 28px; overflow-x: auto;
}
.formula-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.95rem; }
.formula-var  { color: var(--text); font-style: italic; white-space: nowrap; }
.formula-eq   { color: var(--text-muted); font-weight: 600; font-size: 1.1rem; }
.formula-times { color: var(--text-muted); font-weight: 600; margin: 0 4px; }
.formula-paren { color: var(--text-dim); font-size: 1.6rem; line-height: 1; }
.formula-frac-wrap { display: flex; align-items: center; gap: 6px; }
.formula-frac { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
.formula-num  { color: var(--text); font-style: italic; white-space: nowrap; font-size: 0.88rem; padding-bottom: 4px; }
.formula-bar  { width: 100%; height: 1px; background: var(--text-muted); }
.formula-den  { color: var(--text); font-style: italic; white-space: nowrap; font-size: 0.88rem; padding-top: 4px; }

/* ── Icon normalisation ──────────────────────────────────────────────────── */
.included-icon i, .why-icon i, .feature-icon i, .service-icon i,
.policy-icon i, .eligibility-icon i, .addon-icon i, .managed-addon-icon i,
.retention-icon i, .contact-icon i { line-height: 1; }

/* ── Hosting included grid ───────────────────────────────────────────────── */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.included-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; transition: all var(--transition); }
.included-item:hover { border-color: var(--border-hov); }
.included-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.included-item h4 { font-weight: 700; margin-bottom: 8px; }
.included-item p  { color: var(--text-muted); font-size: 0.9rem; }

/* ── Error page ──────────────────────────────────────────────────────────── */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-code { font-size: 7rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px; margin-bottom: 56px;
}
.footer-brand img { margin-bottom: 16px; opacity: 0.9; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; max-width: 240px; }
.footer-tagline {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; margin-top: 14px; text-transform: uppercase;
}
.footer-col h4 {
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }

/* ── Misc ────────────────────────────────────────────────────────────────── */
.link-arrow { color: var(--orange); font-size: 0.9rem; font-weight: 600; }
.plan-price[data-period] { display: none; }
.plan-price[data-period="month"] { display: flex; }

/* ── Hosting Services ────────────────────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 14px;
  color: var(--text); transition: all var(--transition);
}
.service-card:hover { border-color: rgba(232,83,26,0.3); transform: translateY(-5px); color: var(--text); box-shadow: var(--shadow); }
.service-icon { font-size: 2.4rem; display: block; }
.service-card h2 { font-size: 1.35rem; font-weight: 700; }
.service-card p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; flex: 1; }

/* ── Policies ────────────────────────────────────────────────────────────── */
.policies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.policy-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--text); transition: all var(--transition);
}
.policy-card:hover { border-color: rgba(232,83,26,0.3); transform: translateY(-3px); color: var(--text); }
.policy-icon { font-size: 1.8rem; display: block; }
.policy-card h3 { font-size: 1.05rem; font-weight: 700; }
.policy-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; flex: 1; }

/* ── SivdaMail ───────────────────────────────────────────────────────────── */
.plans-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 18px; }
.feature-tag  {
  background: var(--orange-dim); color: var(--orange);
  border: 1px solid rgba(232,83,26,0.2);
  border-radius: 100px; padding: 3px 12px;
  font-size: 0.75rem; font-weight: 600;
}
.student-note {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--orange); font-weight: 600;
  margin-top: 2px; margin-bottom: 14px;
}
.student-note a { font-weight: 600; color: var(--orange); text-decoration: underline; }
.student-note a:hover { color: var(--orange-hov); }

.custom-plan-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  max-width: 860px; margin: 0 auto;
}
.custom-plan-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.custom-plan-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-top: 8px;
}
.custom-plan-footer .student-note { margin: 0; }

.component-table { width: 100%; border-collapse: collapse; margin: 24px 0 20px; font-size: 0.9rem; }
.component-table th {
  text-align: left; padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted); font-weight: 600;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.component-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }
.component-table td:first-child { color: var(--text); }
.component-table td:nth-child(2) { color: var(--text); font-weight: 700; white-space: nowrap; }
.component-table tr:last-child td { border-bottom: none; }

.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.addon-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.addon-card-featured {
  border-color: rgba(232,83,26,0.35);
  background: linear-gradient(160deg, rgba(232,83,26,0.07) 0%, var(--bg-card) 60%);
}
.addon-icon { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.addon-card h4 { font-size: 1rem; font-weight: 700; }
.addon-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.addon-direction { color: var(--text-muted); font-size: 0.8rem; margin-top: -4px; }
.addon-price-big { font-size: 2.2rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.addon-price-big .plan-period { font-size: 0.85rem; font-weight: 400; }

/* Calculator */
.calculator-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.calculator-body { display: grid; grid-template-columns: 1fr 280px; }
.calc-controls { padding: 0; }
.calc-row {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 32px; border-bottom: 1px solid var(--border);
}
.calc-row-last { border-bottom: none; }
.calc-label { flex: 1; min-width: 0; }
.calc-label strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.calc-label span   { color: var(--text-muted); font-size: 0.82rem; }
.calc-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.calc-price { font-weight: 700; font-size: 0.9rem; color: var(--text); white-space: nowrap; min-width: 72px; text-align: right; }
.calc-addon-price { color: var(--text-muted); }
.calc-included-badge {
  font-size: 0.75rem; font-weight: 600; color: var(--green);
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.2);
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.storage-control { display: flex; flex-direction: column; gap: 8px; min-width: 150px; }
.calc-slider {
  width: 100%; accent-color: var(--orange); cursor: pointer;
  height: 4px; appearance: none; -webkit-appearance: none;
  background: var(--border); border-radius: 2px; outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange); cursor: pointer; box-shadow: 0 0 0 3px rgba(232,83,26,0.2);
}
.calc-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--orange); cursor: pointer; border: none; }
.storage-gb { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.85rem; }
.calc-number-input {
  width: 58px; background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 5px 8px;
  border-radius: 6px; font-family: var(--font); font-size: 0.88rem;
  text-align: center; outline: none; transition: border-color var(--transition);
}
.calc-number-input:focus { border-color: var(--orange); }
.toggle-switch { display: inline-flex; cursor: pointer; flex-shrink: 0; }
.toggle-switch input { display: none; }
.toggle-track {
  width: 46px; height: 26px; background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: 13px; position: relative; transition: background var(--transition), border-color var(--transition);
}
.toggle-track::after {
  content: ''; position: absolute; top: 4px; left: 4px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--text-dim);
  transition: transform var(--transition), background var(--transition);
}
.toggle-switch input:checked + .toggle-track { background: var(--orange); border-color: var(--orange); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(20px); background: #fff; }
.calc-summary {
  padding: 32px 28px; background: rgba(255,255,255,0.02);
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
}
.calc-total-label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.calc-total { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--text); margin-bottom: 6px; letter-spacing: -0.03em; }
.calc-total-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 24px; }
.calc-breakdown { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.calc-breakdown-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.calc-breakdown-row span:last-child { font-weight: 600; color: var(--text); }

.retention-note {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin-top: 28px;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}
.retention-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.retention-note strong { color: var(--text); }

/* ── Managed hosting add-on ──────────────────────────────────────────────── */
.managed-addon-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.managed-addon-info { display: flex; align-items: flex-start; gap: 20px; flex: 1; min-width: 0; }
.managed-addon-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.managed-addon-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.managed-addon-info p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.managed-addon-pricing { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.managed-addon-price { display: flex; align-items: baseline; gap: 1px; font-size: 2.2rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.managed-addon-alt { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 6px; }

/* ── Affiliates / Student CTA card ──────────────────────────────────────── */
.affiliate-intro { max-width: 680px; color: var(--text-muted); line-height: 1.8; font-size: 1rem; }
.affiliate-cta-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; max-width: 860px; margin: 48px auto 0;
}
.affiliate-cta-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.affiliate-cta-card p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; max-width: 460px; }

/* ── Student page ────────────────────────────────────────────────────────── */
.nav-student { color: var(--orange) !important; font-weight: 600 !important; }
.student-hero { padding: 70px 0; }
.student-hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.student-hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin: 12px 0 16px; letter-spacing: -0.02em; }
.student-hero p  { color: var(--text-muted); font-size: 1.1rem; max-width: 520px; margin-bottom: 28px; }
.student-badges { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.discount-badge {
  background: linear-gradient(135deg, var(--orange) 0%, #c43e10 100%);
  border-radius: var(--radius-xl); padding: 24px 32px; text-align: center;
  min-width: 140px; box-shadow: 0 8px 40px rgba(232,83,26,0.35);
}
.discount-badge-sm { background: linear-gradient(135deg, #1a2235 0%, #0d1421 100%); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.discount-pct   { display: block; font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
.discount-label { display: block; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-top: 4px; }
.eligibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.eligibility-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 20px; text-align: center;
}
.eligibility-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.eligibility-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.eligibility-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.student-price-block { margin-bottom: 4px; }
.orig-price { color: var(--text-dim); font-size: 0.85rem; text-decoration: line-through; margin-top: -8px; margin-bottom: 12px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 20px; text-align: center;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(232,83,26,0.35);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.student-form-wrap { max-width: 760px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint  { color: var(--text-dim); font-size: 0.82rem; margin-top: 6px; }
.required   { color: var(--orange); }
.optional   { color: var(--text-dim); font-size: 0.82rem; font-weight: 400; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); flex-shrink: 0; cursor: pointer; }
.form-check label { color: var(--text-muted); font-size: 0.9rem; cursor: pointer; }

/* ── About hero / Hosting hero ───────────────────────────────────────────── */
.about-hero-img-wrap {
  width: 100%; height: 280px; overflow: hidden; position: relative;
  border-radius: var(--radius-xl); border: 1px solid var(--border); margin-bottom: 48px;
}
.about-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.65) saturate(0.85); }
.about-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,15,0.80) 0%, rgba(5,8,15,0.20) 60%); }
.about-hero-img-text { position: absolute; bottom: 32px; left: 36px; }
.about-hero-img-text h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.about-hero-img-text p  { color: rgba(255,255,255,0.75); font-size: 1rem; }
.hosting-hero-img-wrap { width: 100%; height: 220px; overflow: hidden; position: relative; border-radius: var(--radius-xl); border: 1px solid var(--border); margin-top: 40px; }
.hosting-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.5) saturate(0.8); }
.hosting-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,8,15,0.90) 0%, rgba(5,8,15,0.15) 70%); }
.hosting-hero-img-text { position: absolute; top: 83%; left: 36px; transform: translateY(-50%); display: flex; align-items: center; gap: 16px; }
.hosting-hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.hosting-hero-chip { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(232,83,26,0.3); border-radius: 100px; padding: 5px 16px; font-size: 0.82rem; font-weight: 600; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento-col-8 { grid-column: span 12; }
  .bento-col-4 { grid-column: span 12; }
  .bento-col-6 { grid-column: span 12; }
  .bento-col-5 { grid-column: span 12; }
  .bento-col-7 { grid-column: span 12; }
  .eligibility-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid       { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
  .tld-grid         { grid-template-columns: repeat(3, 1fr); }
  .plans-grid       { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hero-mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar   { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  /* Tighten mobile menu pill margin on narrow screens */
  .mobile-menu { margin: 6px 12px 0; }

  .service-grid    { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plans-grid-2    { grid-template-columns: 1fr; max-width: 100%; }
  .addons-grid     { grid-template-columns: 1fr; }
  .policies-grid   { grid-template-columns: 1fr 1fr; }
  .custom-plan-card { padding: 28px 20px; }
  .custom-plan-footer { flex-direction: column; align-items: flex-start; }
  .calculator-body { grid-template-columns: 1fr; }
  .calc-summary    { border-left: none; border-top: 1px solid var(--border); }
  .calc-row        { padding: 16px 20px; flex-direction: column; align-items: stretch; gap: 10px; }
  .calc-right      { width: 100%; justify-content: space-between; align-items: center; }
  .storage-control { flex: 1; min-width: 0; }
  .calc-price      { min-width: auto; text-align: right; }
  .student-hero-inner { grid-template-columns: 1fr; }
  .student-badges  { flex-direction: row; justify-content: flex-start; }
  .student-hero h1 { font-size: 2rem; }
  .form-row        { grid-template-columns: 1fr; }
  .eligibility-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid      { grid-template-columns: 1fr 1fr; }
  .hero h1         { font-size: 2.4rem; }
  .hero-sub        { font-size: 1rem; }
  .hero-social-proof { gap: 20px; }
  .hero-mockup     { margin-top: 48px; }
  .kb-grid         { grid-template-columns: 1fr; }
  .blog-grid       { grid-template-columns: 1fr; }
  .article-layout,
  .blog-post-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-layout  { grid-template-columns: 1fr; }
  .about-content   { grid-template-columns: 1fr; }
  .about-stats     { position: static; flex-direction: row; }
  .cart-layout     { grid-template-columns: 1fr; }
  .cart-summary    { position: static; }
  .included-grid   { grid-template-columns: 1fr 1fr; }
  .features-strip-grid { justify-content: center; }
  .tld-grid        { grid-template-columns: repeat(2, 1fr); }
  .section         { padding: 64px 0; }
  .section-dark    { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-hero-img-wrap { height: 200px; }
  .about-hero-img-text { left: 20px; bottom: 20px; }
  .about-hero-img-text h2 { font-size: 1.4rem; }
  .hosting-hero-img-wrap { height: 160px; }
  .badge-left, .badge-right { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  /* On mobile hide side arrows — swipe handles navigation */
  .testimonials-area .tc-btn { display: none; }
  .testimonials-area { gap: 0; }
}

@media (max-width: 480px) {
  .plans-grid      { max-width: 100%; }
  .about-stats     { flex-direction: column; }
  .included-grid   { grid-template-columns: 1fr; }
  .hero-cta        { flex-direction: column; }
  .hero h1         { font-size: 2rem; }
  .hero-social-proof { flex-wrap: wrap; gap: 14px; }
  .policies-grid   { grid-template-columns: 1fr; }
  .billing-toggle  { width: 100%; }
  .toggle-btn      { flex: 1; text-align: center; padding: 10px 12px; }
  .save-badge      { display: none; }
  .managed-addon-pricing { align-items: flex-start; }
  .affiliate-cta-card { padding: 24px; }
  .why-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bento-grid      { gap: 12px; }
}

/* ── Support page ────────────────────────────────────────────────────────── */

/* Three-column channel grid */
.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Individual channel card */
.support-channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  min-height: 520px;
  transition: border-color var(--transition), transform var(--transition);
}
.support-channel-card:hover { border-color: var(--border-hov); transform: translateY(-3px); }

/* Featured / highlighted card */
.support-channel-featured {
  border-color: rgba(232,83,26,0.35);
  background: linear-gradient(160deg, rgba(232,83,26,0.07) 0%, var(--bg-card) 55%);
  box-shadow: 0 0 0 1px rgba(232,83,26,0.12), 0 20px 60px rgba(0,0,0,0.35);
}
.support-channel-featured:hover { border-color: rgba(232,83,26,0.55); }

/* "Fastest response" badge */
.sc-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--orange); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: 100px;
  box-shadow: 0 2px 12px rgba(232,83,26,0.4);
}

/* Channel icon */
.sc-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sc-icon-kb     { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); color: #818cf8; }
.sc-icon-ticket { background: var(--orange-dim);     border: 1px solid rgba(232,83,26,0.2);  color: var(--orange); }
.sc-icon-contact{ background: var(--green-dim);      border: 1px solid rgba(34,197,94,0.2);  color: var(--green); }

.sc-title { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; margin: 0; }
.sc-desc  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; margin: 0; }

/* KB inline search */
.sc-search-form { display: flex; flex-direction: column; gap: 10px; }
.sc-search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 16px;
  transition: border-color var(--transition);
}
.sc-search-wrap:focus-within { border-color: var(--orange); }
.sc-search-wrap svg { color: var(--text-dim); flex-shrink: 0; }
.sc-search-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-family: var(--font); font-size: 0.9rem;
}
.sc-search-input::placeholder { color: var(--text-dim); }

/* Popular topic quick-links */
.sc-links { display: flex; flex-direction: column; gap: 0; }
.sc-links-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-dim); margin-bottom: 10px;
}
.sc-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted);
  transition: color var(--transition);
}
.sc-links a:last-child { border-bottom: none; }
.sc-links a:hover { color: var(--text); }
.sc-links a::after {
  content: '→'; font-size: 0.8rem; opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.sc-links a:hover::after { opacity: 1; transform: translateX(0); }

/* Ticket feature list */
.sc-ticket-features { display: flex; flex-direction: column; gap: 12px; }
.sc-ticket-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--text-muted);
}
.sc-tf-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange);
  box-shadow: 0 0 6px rgba(232,83,26,0.5);
}

/* Contact method rows */
.sc-contact-methods { display: flex; flex-direction: column; gap: 14px; }
.sc-contact-method {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.sc-cm-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--green-dim); border: 1px solid rgba(34,197,94,0.2);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.sc-cm-label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.sc-cm-value { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.sc-cm-value[href] { color: var(--orange); }
.sc-cm-value[href]:hover { color: var(--orange-hov); }

/* Card footer link */
.sc-footer-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  transition: color var(--transition);
}
.sc-footer-link:hover { color: var(--orange); }

/* Status bar */
.support-status-bar {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.support-status-inner {
  display: flex; align-items: center; gap: 10px;
}
.support-status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse-green 2.5s ease infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}
.support-status-text { font-size: 0.88rem; color: var(--text-muted); }
.support-status-text a { color: var(--orange); font-weight: 500; }

/* Responsive */
@media (max-width: 1024px) {
  .support-channels { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .support-channel-card { min-height: auto; }
}
@media (max-width: 480px) {
  .support-channel-card { padding: 28px 22px 22px; }
}

/* ── Reduced motion ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
