/* ============ BRAND TOKENS ============ */
:root {
  --orange: #f27421;
  --yellow: #ffc114;
  --green: #8bc43f;
  --red: #cd2a2e;
  --black: #0d0d0d;
  --white: #ffffff;
  --offwhite: #f9f8f5;
  --grey: #5a5a5a;
  --lgrey: #e8e6e1;

  /* Semantic */
  --primary: var(--orange);
  --secondary: var(--yellow);
  --accent: var(--green);
  --danger: var(--red);

  /* Avenir substitute via Google Fonts — Nunito is the closest geometric humanist */
  --font-black: "Nunito", sans-serif;
  --font-heavy: "Nunito", sans-serif;
  --font-medium: "Nunito", sans-serif;
  --font-book: "Nunito Sans", sans-serif;
  --font-light: "Nunito Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-book);
  overflow-x: hidden;
  cursor: none;
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    background 0.25s,
    transform 0.1s;
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
.cursor-ring.h {
  width: 64px;
  height: 64px;
  border-color: var(--green);
}

/* ============ CAUDA SVG SHAPES (brand illustration DNA) ============ */
.cauda {
  position: absolute;
  pointer-events: none;
  opacity: 0.13;
  z-index: 0;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    padding 0.3s;
}
nav.scrolled {
  border-color: var(--lgrey);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  padding: 12px 60px;
}

/* LOGO WORDMARK */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  position: relative;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}
.logo-wordmark {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-wordmark .tri {
  color: var(--orange);
}
.logo-wordmark .digi {
  color: var(--black);
}
.logo-wordmark .tag {
  display: block;
  font-size: 8px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: none;
  border-radius: 40px;
  transition:
    background 0.3s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--red);
  transform: scale(1.04);
}

/* ============ PAGES ============ */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 120px 60px 80px;
  display: flex;
  align-items: center;
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Animated background circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  animation: floatCircle 8s ease-in-out infinite;
}
.hc1 {
  width: 500px;
  height: 500px;
  background: var(--yellow);
  opacity: 0.12;
  right: -120px;
  top: -80px;
  animation-delay: 0s;
}
.hc2 {
  width: 300px;
  height: 300px;
  background: var(--orange);
  opacity: 0.1;
  right: 200px;
  bottom: -80px;
  animation-delay: 2s;
}
.hc3 {
  width: 180px;
  height: 180px;
  background: var(--green);
  opacity: 0.12;
  left: 40%;
  top: 10%;
  animation-delay: 4s;
}
@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-h1 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s ease forwards;
}
.hero-h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--orange);
}
.hero-h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-4deg);
}
.hero-h1 .green {
  color: var(--green);
}

.hero-sub {
  font-family: var(--font-medium);
  font-weight: 600;
  font-size: 18px;
  color: var(--grey);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s ease forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  cursor: none;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(242, 116, 33, 0.35);
}
.btn-primary:hover {
  background: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(205, 42, 46, 0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  border: 2.5px solid var(--black);
  color: var(--black);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  cursor: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* Hero floating badge */
.hero-right {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 16px;
  opacity: 0;
  animation: fadeLeft 0.8s 0.8s ease forwards;
}
.stat-bubble {
  background: var(--white);
  border-radius: 20px;
  padding: 22px 28px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--orange);
  min-width: 160px;
}
.stat-bubble:nth-child(2) {
  border-left-color: var(--green);
}
.stat-bubble:nth-child(3) {
  border-left-color: var(--yellow);
  transform: translateX(16px);
}
.stat-bubble .num {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: var(--black);
}
.stat-bubble .lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============ MARQUEE ============ */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  background: var(--black);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-item .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.marquee-item:nth-child(6n + 1) .pip {
  background: var(--orange);
}
.marquee-item:nth-child(6n + 2) .pip {
  background: var(--yellow);
}
.marquee-item:nth-child(6n + 3) .pip {
  background: var(--green);
}
.marquee-item:nth-child(6n + 4) .pip {
  background: var(--red);
}
.marquee-item:nth-child(6n + 5) .pip {
  background: var(--orange);
}
.marquee-item:nth-child(6n + 6) .pip {
  background: var(--yellow);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ SECTION SHELLS ============ */
section {
  padding: 100px 60px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-eyebrow.orange {
  color: var(--orange);
}
.section-eyebrow.green {
  color: var(--green);
}
.section-eyebrow.red {
  color: var(--red);
}
.section-eyebrow::before {
  content: "//";
  opacity: 0.4;
}
.section-title {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
}
.section-title em.o {
  color: var(--orange);
}
.section-title em.g {
  color: var(--green);
}
.section-title em.y {
  color: var(--yellow);
  background: var(--black);
  padding: 0 6px;
  border-radius: 6px;
}
.section-sub {
  font-family: var(--font-book);
  font-weight: 400;
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 540px;
}

/* ============ SERVICES HOME ============ */
.services-home {
  background: var(--white);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  border-radius: 24px;
  padding: 48px 40px 56px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s;
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.svc-card.orange-card {
  background: var(--orange);
  color: var(--white);
}
.svc-card.yellow-card {
  background: var(--yellow);
  color: var(--black);
}
.svc-card.green-card {
  background: var(--green);
  color: var(--white);
}

.svc-num {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 80px;
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -4px;
}
.svc-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
}
.svc-card h3 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.svc-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 280px;
}
.svc-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  cursor: none;
  transition: gap 0.2s;
}
.svc-card.orange-card .svc-learn {
  color: var(--white);
}
.svc-card.yellow-card .svc-learn {
  color: var(--black);
}
.svc-card.green-card .svc-learn {
  color: var(--white);
}
.svc-learn:hover {
  gap: 12px;
}

/* ============ WHY US ============ */
.why-us {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-feat-list {
  margin-top: 40px;
}
.why-feat {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.why-feat:last-child {
  border-bottom: none;
}
.why-feat-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.why-feat-dot.o {
  background: var(--orange);
}
.why-feat-dot.y {
  background: var(--yellow);
}
.why-feat-dot.g {
  background: var(--green);
}
.why-feat h4 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 5px;
}
.why-feat p {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.7;
}

.why-visual {
  position: relative;
}
.why-big-num {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 1;
  letter-spacing: -6px;
}
.why-big-num span {
  display: block;
}
.why-big-num .n1 {
  color: var(--orange);
}
.why-big-num .n2 {
  color: var(--yellow);
}
.why-big-num .n3 {
  color: var(--green);
}
.why-lbl {
  font-family: var(--font-medium);
  font-weight: 600;
  font-size: 13px;
  opacity: 0.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ============ PROCESS ============ */
.process-section {
  background: var(--offwhite);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}
.proc-step {
  padding: 48px 36px;
  position: relative;
  cursor: none;
  border-right: 2px solid var(--lgrey);
  transition: background 0.3s;
}
.proc-step:last-child {
  border-right: none;
}
.proc-step:hover {
  background: var(--white);
}
.proc-step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 24px;
  transition: transform 0.3s;
}
.proc-step:hover .proc-step-num {
  transform: scale(1.1);
}
.ps1 .proc-step-num {
  background: var(--orange);
  color: var(--white);
}
.ps2 .proc-step-num {
  background: var(--yellow);
  color: var(--black);
}
.ps3 .proc-step-num {
  background: var(--green);
  color: var(--white);
}
.ps4 .proc-step-num {
  background: var(--red);
  color: var(--white);
}
.proc-step h4 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
}
.proc-step p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}
.proc-arrow {
  position: absolute;
  right: -14px;
  top: 52px;
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 2px solid var(--lgrey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
}
.proc-step:last-child .proc-arrow {
  display: none;
}

/* ============ HOME PRICING PREVIEW ============ */
.pricing-preview {
  background: var(--white);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.price-card {
  border-radius: 24px;
  padding: 44px 36px;
  border: 2.5px solid var(--lgrey);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.35s,
    border-color 0.3s,
    box-shadow 0.35s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--orange);
}
.price-card.hot {
  border-color: var(--orange);
  box-shadow: 0 12px 50px rgba(242, 116, 33, 0.2);
}
.price-hot-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-tier {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 8px;
}
.price-name {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 16px;
}
.price-amount {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
}
.price-amount .curr {
  font-size: 24px;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
  color: var(--orange);
}
.price-amount .per {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
}
.price-divider {
  height: 2px;
  background: var(--lgrey);
  margin: 28px 0;
  border-radius: 2px;
}
.price-feats {
  list-style: none;
}
.price-feats li {
  padding: 9px 0;
  font-size: 13px;
  color: var(--grey);
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--lgrey);
}
.price-feats li:last-child {
  border-bottom: none;
}
.price-feats li .chk {
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}
.btn-pill-outline {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 13px;
  border: 2.5px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 13px;
  border-radius: 50px;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
}
.btn-pill-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-pill-filled {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 13px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 13px;
  border-radius: 50px;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
}
.btn-pill-filled:hover {
  background: var(--red);
}

/* ============ AFFILIATE / REFERRAL SECTION ============ */
.affiliate-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.aff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

/* Hosting Card */
.aff-hosting-card {
  background: linear-gradient(135deg, #ff6b35 0%, #f27421 40%, #ffc114 100%);
  border-radius: 28px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.aff-hosting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(242, 116, 33, 0.4);
}

.aff-hosting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.aff-hosting-card h3 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}
.aff-hosting-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.aff-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  border-radius: 14px;
  margin-bottom: 28px;
}
.aff-price-tag .from {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.aff-price-tag .price {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 32px;
  color: var(--white);
}
.aff-price-tag .mo {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.btn-aff-hosting {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-heavy);
  font-weight: 900;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.btn-aff-hosting:hover {
  background: var(--black);
  color: var(--white);
  transform: scale(1.04);
}

.aff-hosting-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}
.hostinger-logo-mock {
  width: 160px;
  height: 160px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-black);
  font-weight: 900;
}
.hostinger-logo-mock .h-icon {
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.hostinger-logo-mock .h-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}
.aff-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.aff-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.aff-feat::before {
  content: "✓";
  font-weight: 900;
  font-size: 12px;
}

/* Domain Cards */
.domain-cards {
  display: contents;
}
.domain-card {
  border-radius: 24px;
  padding: 36px 32px;
  cursor: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.domain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}
.domain-card.d-green {
  background: var(--green);
  color: var(--white);
}
.domain-card.d-red {
  background: var(--red);
  color: var(--white);
}

.domain-tld {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.9;
}
.domain-card h4 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
}
.domain-card p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 24px;
}
.domain-price {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 4px;
}
.domain-price span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
}
.domain-note {
  font-size: 11px;
  opacity: 0.65;
  margin-bottom: 24px;
  font-style: italic;
}
.btn-domain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 13px;
  border-radius: 40px;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
}
.btn-domain:hover {
  background: var(--white);
  color: var(--black);
}

.aff-disclaimer {
  grid-column: span 2;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 100px 60px;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "GROW";
  position: absolute;
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 300px;
  letter-spacing: -16px;
  opacity: 0.07;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.cta-band h2 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -2px;
  margin-bottom: 16px;
  position: relative;
}
.cta-band p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.65;
  position: relative;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-white {
  padding: 16px 40px;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-heavy);
  font-weight: 900;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  background: var(--black);
  color: var(--white);
}
.btn-border-white {
  padding: 16px 40px;
  border: 2.5px solid var(--white);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 900;
  font-size: 14px;
  border-radius: 50px;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s;
}
.btn-border-white:hover {
  background: var(--white);
  color: var(--orange);
}

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--orange);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  cursor: none;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.social-row {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  cursor: none;
  transition: all 0.25s;
}
.soc-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ============ ABOUT PAGE ============ */
.page-hero {
  padding: 140px 60px 100px;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -3px;
  line-height: 0.98;
  max-width: 700px;
}
.page-hero h1 .o {
  color: var(--orange);
}
.page-hero h1 .g {
  color: var(--green);
}
.page-hero h1 .y {
  color: var(--yellow);
}

/* Story */
.story-sec {
  background: var(--white);
}
.story-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-body h2 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.story-body h2 em {
  font-style: normal;
  color: var(--orange);
}
.story-body p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 18px;
}
.story-body p strong {
  color: var(--black);
  font-weight: 800;
}

.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--green));
  border-radius: 2px;
}
.tl-item {
  margin-bottom: 40px;
  position: relative;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.tl-item:nth-child(2)::before {
  box-shadow: 0 0 0 2px var(--yellow);
}
.tl-item:nth-child(3)::before {
  box-shadow: 0 0 0 2px var(--green);
}
.tl-item:nth-child(4)::before {
  box-shadow: 0 0 0 2px var(--red);
}
.tl-item:nth-child(5)::before {
  box-shadow: 0 0 0 2px var(--orange);
}
.tl-year {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-item h4 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 6px;
}
.tl-item p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

/* Mission Vision */
.mv-sec {
  background: var(--offwhite);
}
.mv-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.mv-card {
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.mv-card.mission-card {
  background: var(--orange);
  color: var(--white);
}
.mv-card.vision-card {
  background: var(--black);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.mv-label {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.mv-card h3 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.mv-card p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.8;
}
.mv-big {
  position: absolute;
  bottom: -10px;
  right: 24px;
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 120px;
  opacity: 0.08;
  line-height: 1;
}

/* Values */
.values-sec {
  background: var(--white);
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.val-card {
  padding: 36px 28px;
  border-radius: 20px;
  border: 2px solid var(--lgrey);
  cursor: none;
  transition: all 0.3s;
}
.val-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(242, 116, 33, 0.1);
}
.val-emoji {
  font-size: 32px;
  margin-bottom: 14px;
}
.val-card h4 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px;
}
.val-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

/* Team */
.team-sec {
  background: var(--offwhite);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  cursor: none;
}
.team-ava {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -1px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  transition: transform 0.35s;
}
.team-card:hover .team-ava {
  transform: scale(1.03);
}
.ta-o {
  background: linear-gradient(135deg, var(--orange), #ff6b35);
  color: var(--white);
}
.ta-y {
  background: linear-gradient(135deg, var(--yellow), #ffd54f);
  color: var(--black);
}
.ta-g {
  background: linear-gradient(135deg, var(--green), #a5d65f);
  color: var(--white);
}
.ta-r {
  background: linear-gradient(135deg, var(--red), #e64a4f);
  color: var(--white);
}
.team-name {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 3px;
}
.team-role {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 8px;
}
.team-bio {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

/* ============ SERVICES PAGE ============ */
.svc-page-hero {
  background: var(--offwhite);
}

.svc-accordion {
  padding: 0 60px 80px;
}
.svc-acc-item {
  border: 2.5px solid var(--lgrey);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.svc-acc-item.open {
  border-color: var(--orange);
}
.svc-acc-header {
  display: grid;
  grid-template-columns: 72px 1fr 52px;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  cursor: none;
  transition: background 0.25s;
}
.svc-acc-header:hover {
  background: var(--offwhite);
}
.svc-acc-num {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--lgrey);
}
.svc-acc-item.open .svc-acc-num {
  color: var(--orange);
}
.svc-acc-info h2 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.svc-acc-info p {
  font-size: 14px;
  color: var(--grey);
}
.svc-acc-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lgrey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--grey);
  transition: all 0.3s;
  flex-shrink: 0;
}
.svc-acc-item.open .svc-acc-toggle {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.svc-acc-body {
  display: none;
  padding: 0 40px 40px;
}
.svc-acc-item.open .svc-acc-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-feat {
  background: var(--offwhite);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.25s;
}
.svc-feat:hover {
  background: #fff3e8;
}
.svc-feat-icon {
  font-size: 26px;
  margin-bottom: 12px;
}
.svc-feat h4 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 8px;
}
.svc-feat p {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.7;
}

/* Full pricing page */
.full-price-sec {
  background: var(--offwhite);
}
.fp-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fp-tab {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--lgrey);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 13px;
  cursor: none;
  transition: all 0.25s;
  background: var(--white);
}
.fp-tab.active,
.fp-tab:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.fp-panel {
  display: none;
}
.fp-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fp-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 36px;
  border: 2.5px solid var(--lgrey);
  transition: all 0.35s;
  cursor: none;
  position: relative;
}
.fp-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(242, 116, 33, 0.15);
}
.fp-card.best {
  border-color: var(--orange);
  box-shadow: 0 12px 50px rgba(242, 116, 33, 0.15);
}
.fp-best-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 10px;
  padding: 4px 16px;
  border-radius: 0 0 12px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fp-svc-tag {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 8px;
}
.fp-plan-name {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 12px;
}
.fp-plan-price {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 4px;
}
.fp-plan-price .c {
  font-size: 20px;
  color: var(--orange);
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}
.fp-plan-price .p {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
}
.fp-plan-desc {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 28px;
  line-height: 1.6;
}
.fp-divider {
  height: 2px;
  background: var(--lgrey);
  border-radius: 2px;
  margin-bottom: 24px;
}
.fp-list {
  list-style: none;
}
.fp-list li {
  padding: 8px 0;
  font-size: 13px;
  color: var(--grey);
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--lgrey);
}
.fp-list li:last-child {
  border-bottom: none;
}
.fp-list li .ok {
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ============ CONTACT PAGE ============ */
.contact-hero {
  background: var(--offwhite);
}
.contact-body {
  padding: 0 60px 100px;
  background: var(--white);
}
.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info-col h3 {
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 36px;
}
.ci-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lgrey);
}
.ci-item:last-child {
  border-bottom: none;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.ci-icon.o {
  background: #fff3e8;
}
.ci-icon.g {
  background: #f1f8e9;
}
.ci-icon.y {
  background: #fffde7;
}
.ci-icon.r {
  background: #ffebee;
}
.ci-item h4 {
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 4px;
}
.ci-item p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fg {
  margin-bottom: 18px;
}
.fg label {
  display: block;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey);
  margin-bottom: 7px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--offwhite);
  border: 2px solid var(--lgrey);
  border-radius: 12px;
  color: var(--black);
  font-family: var(--font-book);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  resize: none;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.fg select option {
  background: var(--white);
}
.form-submit {
  width: 100%;
  padding: 17px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 15px;
  border: none;
  border-radius: 50px;
  cursor: none;
  transition:
    background 0.3s,
    transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(242, 116, 33, 0.3);
}
.form-submit:hover {
  background: var(--red);
  transform: scale(1.02);
}
.form-note {
  font-size: 11px;
  color: var(--grey);
  margin-top: 10px;
  opacity: 0.7;
}

/* FAQ */
.faq-sec {
  background: var(--offwhite);
  padding: 100px 60px;
}
.faq-wrap {
  max-width: 780px;
  margin: 60px auto 0;
}
.faq-item {
  border-bottom: 2px solid var(--lgrey);
}
.faq-q {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: none;
  font-family: var(--font-black);
  font-weight: 900;
  font-size: 17px;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--lgrey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translate(30px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MOBILE ============ */
.hamburger {
  display: none;
  cursor: none;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 1024px) {
  nav {
    padding: 16px 28px;
  }
  nav.scrolled {
    padding: 12px 28px;
  }
  .hero,
  section {
    padding-left: 28px;
    padding-right: 28px;
  }
  .svc-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .hero-right {
    display: none;
  }
  .why-grid,
  .story-2col,
  .mv-2col,
  .contact-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aff-grid {
    grid-template-columns: 1fr;
  }
  .aff-hosting-card {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .aff-hosting-visual {
    display: none;
  }
  .aff-disclaimer {
    grid-column: span 1;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .page-hero,
  .services-hero,
  .contact-hero {
    padding-left: 28px;
    padding-right: 28px;
  }
  .svc-accordion,
  .full-price-sec,
  .contact-body,
  .faq-sec {
    padding-left: 28px;
    padding-right: 28px;
  }
  .price-grid,
  .full-pricing-grid,
  .fp-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 998;
    gap: 28px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 22px;
  }
  .nav-cta {
    display: none;
  }
  .svc-grid,
  .process-steps,
  .val-grid,
  .team-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .svc-acc-item.open .svc-acc-body {
    grid-template-columns: 1fr;
  }
  .svc-acc-header {
    grid-template-columns: 48px 1fr 48px;
  }
  .fp-panel.active {
    grid-template-columns: 1fr;
  }
  .cta-band-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    flex-direction: column;
  }
}
