:root {
  --bg: #050608;
  --panel: #0d1016;
  --panel-strong: #141923;
  --text: #f7f4ea;
  --muted: #b9b4a8;
  --gold: #f5be3d;
  --gold-strong: #ffdd72;
  --amber: #d88916;
  --cyan: #5dd7ff;
  --green: #61e6a1;
  --line: rgba(255, 221, 114, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 190, 61, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(93, 215, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, #020305 0%, var(--bg) 45%, #080a0d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 221, 114, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 221, 114, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 14, 0.68);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 14, 0.92);
  border-color: rgba(255, 221, 114, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(255, 221, 114, 0.45);
  border-radius: 8px;
  box-shadow: 0 0 26px rgba(245, 190, 61, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-call,
.btn-primary {
  color: #140d02;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold) 48%, var(--amber));
  box-shadow: 0 16px 40px rgba(245, 190, 61, 0.23);
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 221, 114, 0.34);
  background: rgba(255, 255, 255, 0.045);
}

.header-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 96px 0 64px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 54px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.security-panel {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(255, 221, 114, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 221, 114, 0.11), rgba(93, 215, 255, 0.05) 44%, rgba(255, 255, 255, 0.035)),
    rgba(12, 15, 21, 0.75);
  box-shadow: var(--shadow), inset 0 0 42px rgba(255, 221, 114, 0.09);
  overflow: hidden;
}

.security-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 221, 114, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.logo-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
}

.logo-orbit::after {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
  animation: scan 4.8s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.logo-orbit span {
  position: absolute;
  width: min(78%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 190, 61, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(245, 190, 61, 0.12);
  animation: rotateRing 16s linear infinite;
}

.logo-orbit span::before,
.logo-orbit span::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-strong);
  box-shadow: 0 0 20px var(--gold);
}

.logo-orbit span::before {
  top: 18px;
  left: 52px;
}

.logo-orbit span::after {
  right: 28px;
  bottom: 62px;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.logo-orbit img {
  position: relative;
  width: min(78%, 350px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 221, 114, 0.38);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.status-list {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.status-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 221, 114, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(97, 230, 161, 0.6);
  animation: pulse 1.8s infinite;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.proof-strip div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.image-showcase {
  padding-top: 82px;
}

.poster-stack {
  display: grid;
  gap: 24px;
}

.poster-frame {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 221, 114, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 221, 114, 0.09), rgba(93, 215, 255, 0.045)),
    rgba(8, 10, 14, 0.78);
  box-shadow: var(--shadow), inset 0 0 32px rgba(245, 190, 61, 0.06);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 221, 114, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.poster-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #030405;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
}

.service-grid,
.plan-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.plan-card,
.contact-item {
  border: 1px solid rgba(255, 221, 114, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.23);
}

.service-card {
  min-height: 275px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 221, 114, 0.44);
  background: linear-gradient(180deg, rgba(255, 221, 114, 0.11), rgba(255, 255, 255, 0.035));
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 221, 114, 0.34);
  border-radius: 8px;
  color: var(--gold-strong);
  font-weight: 900;
  background: rgba(245, 190, 61, 0.08);
}

.service-card p,
.flow-step p,
.plan-card li {
  color: var(--muted);
  line-height: 1.65;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  margin: 96px auto 0;
  padding: 34px;
  border: 1px solid rgba(255, 221, 114, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(245, 190, 61, 0.16), rgba(93, 215, 255, 0.08), rgba(97, 230, 161, 0.07)),
    rgba(13, 16, 22, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.cta-section p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-final {
  background:
    radial-gradient(circle at 85% 20%, rgba(97, 230, 161, 0.13), transparent 18rem),
    linear-gradient(120deg, rgba(255, 221, 114, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(13, 16, 22, 0.88);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  padding: 34px 24px 24px;
  border: 1px solid rgba(255, 221, 114, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 221, 114, 0.15), transparent 23rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 14, 0.82);
  box-shadow: var(--shadow), inset 0 0 34px rgba(245, 190, 61, 0.08);
}

.process-flow::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 221, 114, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.flow-title {
  position: absolute;
  top: -22px;
  left: 50%;
  z-index: 2;
  min-width: min(360px, calc(100% - 54px));
  padding: 10px 22px;
  border: 1px solid rgba(255, 221, 114, 0.55);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 221, 114, 0.16), rgba(0, 0, 0, 0.92)),
    var(--panel);
  box-shadow: 0 0 24px rgba(245, 190, 61, 0.24);
  transform: translateX(-50%);
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 326px;
  padding: 22px;
  border: 1px solid rgba(255, 221, 114, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 221, 114, 0.07), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.flow-step::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 221, 114, 0.5), transparent);
}

.featured-flow {
  border-color: rgba(255, 221, 114, 0.5);
  background:
    radial-gradient(circle at 50% 62%, rgba(231, 36, 42, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(255, 221, 114, 0.12), rgba(255, 255, 255, 0.03));
}

.flow-copy {
  position: relative;
  display: grid;
  gap: 8px;
  padding-left: 52px;
}

.flow-copy h3 {
  margin-bottom: 0;
  color: var(--text);
}

.flow-copy p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #120e07;
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold), var(--amber));
  box-shadow: 0 0 18px rgba(245, 190, 61, 0.38);
}

.flow-visual {
  display: grid;
  place-items: center;
  min-height: 168px;
  border: 1px solid rgba(255, 221, 114, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.36), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.22);
}

.flow-visual svg {
  width: min(100%, 230px);
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));
}

.flow-arrow {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: 54px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold), var(--amber));
  clip-path: polygon(0 24%, 58% 24%, 58% 0, 100% 50%, 58% 100%, 58% 76%, 0 76%);
  filter: drop-shadow(0 0 14px rgba(245, 190, 61, 0.42));
  animation: arrowPush 1.8s ease-in-out infinite;
}

.svg-frame,
.svg-phone {
  fill: rgba(12, 15, 21, 0.86);
  stroke: var(--gold-strong);
  stroke-width: 3;
}

.svg-shutter {
  fill: #b17716;
  stroke: var(--amber);
  stroke-width: 2;
}

.shutter-visual svg {
  background: linear-gradient(180deg, rgba(245, 190, 61, 0.12), transparent);
}

.svg-shutter-lines,
.svg-tool,
.svg-highlight,
.svg-shop,
.svg-call-line {
  fill: none;
  stroke: var(--gold-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.svg-silhouette {
  fill: #050608;
  stroke: rgba(255, 221, 114, 0.45);
  stroke-width: 2;
}

.svg-tool {
  stroke: #f7f4ea;
}

.svg-wave,
.svg-phone-wave {
  fill: none;
  stroke: var(--gold-strong);
  stroke-linecap: round;
  stroke-width: 5;
}

.svg-base {
  fill: #161a20;
  stroke: var(--gold-strong);
  stroke-width: 3;
}

.svg-siren {
  fill: #e2262d;
  stroke: var(--gold-strong);
  stroke-width: 4;
}

.svg-highlight {
  stroke: #fff6cf;
}

.svg-screen {
  fill: #10141b;
  stroke: rgba(255, 221, 114, 0.42);
  stroke-width: 2;
}

.svg-shop {
  stroke: var(--gold);
  stroke-width: 3;
}

.svg-call-red {
  fill: #e2262d;
}

.svg-call-green {
  fill: #28c76f;
}

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

/* ── Base plan card ─────────────────────────────── */
.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.38);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 72px rgba(0,0,0,0.48);
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.badge-hot {
  background: linear-gradient(135deg,#ff6b35,#e8222a);
  box-shadow: 0 4px 14px rgba(232,34,42,0.35);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%,100% { box-shadow: 0 4px 14px rgba(232,34,42,0.35); }
  50%      { box-shadow: 0 4px 24px rgba(232,34,42,0.65); }
}
.badge-custom {
  background: linear-gradient(135deg,#6c48ff,#a855f7);
  box-shadow: 0 4px 14px rgba(108,72,255,0.35);
}

.plan-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  font-size: 22px;
  color: #fff;
}
.plan-icon-featured {
  background: rgba(255,221,114,0.3);
  color: var(--gold-strong);
  box-shadow: 0 0 24px rgba(245,190,61,0.4);
}
.plan-icon-custom {
  background: rgba(168,85,247,0.25);
  color: #c084fc;
}

.plan-name {
  margin: 0 0 4px;
  padding: 0 24px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-price {
  padding: 0 24px 18px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 18px;
}
.plan-price span {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.7;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0 24px;
  list-style: none;
  flex: 1;
}
.plan-card li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.plan-card li i {
  flex: 0 0 auto;
  font-size: 13px;
  margin-top: 2px;
}

.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 24px 24px;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background 160ms ease, transform 140ms ease;
}
.plan-btn:hover { background: rgba(255,255,255,0.25); transform: none; }
.plan-btn-featured {
  background: linear-gradient(135deg, var(--gold-strong), var(--amber));
  color: #140d02;
  box-shadow: 0 8px 24px rgba(245,190,61,0.38);
}
.plan-btn-featured:hover { filter: brightness(1.08); }
.plan-btn-custom {
  background: linear-gradient(135deg,#6c48ff,#a855f7);
  box-shadow: 0 8px 24px rgba(108,72,255,0.32);
}
.plan-btn-custom:hover { filter: brightness(1.08); }

/* Card colour themes */
.plan-basic {
  border: 1px solid rgba(93,215,255,0.28);
  background: linear-gradient(160deg,#0a1628 0%,#0d1e35 40%,#071525 100%);
}
.plan-basic .plan-name  { color: var(--cyan); }
.plan-basic .plan-price { color: #fff; }
.plan-basic li           { color: rgba(200,230,255,0.85); }
.plan-basic li i         { color: var(--cyan); }

.plan-featured {
  border: 2px solid rgba(255,221,114,0.65);
  background: linear-gradient(160deg,#1c1400 0%,#261b00 40%,#0e0a00 100%);
  transform: translateY(-14px);
  box-shadow: 0 32px 80px rgba(245,190,61,0.18), 0 0 0 1px rgba(255,221,114,0.18);
}
.plan-featured .plan-name  { color: var(--gold-strong); }
.plan-featured .plan-price { color: var(--gold-strong); }
.plan-featured li           { color: rgba(255,240,180,0.85); }
.plan-featured li i         { color: var(--gold-strong); }

.plan-custom {
  border: 1px solid rgba(168,85,247,0.3);
  background: linear-gradient(160deg,#0f0a20 0%,#180f2e 40%,#0a0716 100%);
}
.plan-custom .plan-name  { color: #c084fc; }
.plan-custom .plan-price { color: #fff; }
.plan-custom li           { color: rgba(220,200,255,0.85); }
.plan-custom li i         { color: #c084fc; }

.contact {
  padding-bottom: 72px;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-item {
  padding: 26px;
}

.contact-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-item strong {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 1.25rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-strong);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(97, 230, 161, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(97, 230, 161, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(97, 230, 161, 0);
  }
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(40%);
  }
}

@keyframes arrowPush {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

@keyframes arrowPushDown {
  0%,
  100% {
    transform: rotate(90deg) translateX(0);
  }
  50% {
    transform: rotate(90deg) translateX(6px);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 10, 14, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .security-panel {
    min-height: auto;
  }

  .service-grid,
  .plan-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 44px;
  }

  .flow-arrow {
    width: 28px;
    height: 54px;
    transform: rotate(90deg);
    animation-name: arrowPushDown;
  }

  .plan-card.featured,
  .plan-featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .section {
    padding-top: 68px;
  }

  .hero-grid,
  .section,
  .proof-strip,
  .cta-section,
  .site-footer {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .proof-strip,
  .service-grid,
  .plan-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    padding: 42px 14px 16px;
  }

  .flow-step {
    min-height: auto;
    padding: 18px;
  }

  .flow-copy {
    padding-left: 48px;
  }

  .flow-title {
    min-width: calc(100% - 36px);
    font-size: 0.98rem;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .cta-section {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Floating WhatsApp button */
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  30%       { transform: translateY(-10px) scale(1.06); }
  60%       { transform: translateY(-4px) scale(1.02); }
}
@keyframes wa-ring {
  0%   { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.55), 0 12px 36px rgba(2,128,72,0.32); }
  70%  { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0),   0 12px 36px rgba(2,128,72,0.32); }
  100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0),   0 12px 36px rgba(2,128,72,0.32); }
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(2, 128, 72, 0.40);
  z-index: 9999;
  border: none;
  animation: wa-bounce 3s ease-in-out infinite, wa-ring 2.4s ease-out infinite;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  animation: none;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 24px 48px rgba(2, 128, 72, 0.46);
}
.whatsapp-float svg,
.whatsapp-float i {
  display: block;
  font-size: 34px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.whatsapp-number {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
@media (max-width: 480px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }
  .whatsapp-number { display: none; }
}

/* Why Choose CDS section */
.why-choose .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  width: min(var(--max), calc(100% - 32px));
  margin: 12px auto 34px;
}
.why-choose .why-copy {
  color: var(--muted);
}
.why-choose .why-copy p {
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.why-choose .features {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 221, 114, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  box-shadow: 0 12px 36px rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #140d02;
  font-size: 20px;
  box-shadow: 0 10px 28px rgba(245, 190, 61, 0.12);
}
.feature-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .why-choose .why-grid {
    grid-template-columns: 1fr;
  }
  .why-choose .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .why-choose .features {
    grid-template-columns: 1fr;
  }
}
