*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #22c55e;
  --green-dark: #16a34a;
  --black:      #070b08;
  --surface:    #0c110d;
  --surface2:   #111812;
  --border:     rgba(34, 197, 94, 0.14);
  --text:       #e4f2e6;
  --muted:      #6a8b6e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 66px;
  background: rgba(7, 11, 8, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.nav-logo-text { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.nav-logo-text span { color: var(--green); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--green); color: #000 !important;
  padding: 8px 18px; border-radius: 6px;
  font-weight: 700 !important; font-size: 0.84rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── HERO — 3D perspective scrolling grid ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-grid { position: absolute; inset: 0; perspective: 900px; }

.hero-bg {
  position: absolute; inset: 0;
  background: url('lucho-renolfi-9pW_u2wynx0-unsplash.jpg') center / cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(7, 11, 8, 0.72);
}

.hero-grid-floor {
  position: absolute;
  width: 220%; height: 300%;
  left: -60%; top: 10%;
  background-image:
    repeating-linear-gradient(to right, rgba(34,197,94,0.28) 0px, rgba(34,197,94,0.28) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(to bottom, rgba(34,197,94,0.28) 0px, rgba(34,197,94,0.28) 1px, transparent 1px, transparent 60px);
  transform: rotateX(60deg) translateY(0px);
  transform-origin: top center;
  will-change: transform;
  animation: grid-scroll 6s linear infinite;
}

@keyframes grid-scroll {
  from { transform: rotateX(60deg) translateY(0px);  }
  to   { transform: rotateX(60deg) translateY(60px); }
}

/* Vignette */
.hero-grid-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--black) 0%, transparent 25%, transparent 72%, var(--black) 100%),
    linear-gradient(to right,  var(--black) 0%, transparent 15%, transparent 85%, var(--black) 100%);
}

.hero-glow {
  position: absolute;
  width: 800px; height: 500px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.28) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.22);
  color: var(--green);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(1.5); }
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -0.035em;
  margin-bottom: 22px;
}
h1 span { color: var(--green); }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--muted); max-width: 520px; margin: 0 auto 40px; line-height: 1.75;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--green); color: #000; font-weight: 700; font-size: 0.93rem;
  padding: 13px 30px; border-radius: 8px; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(34,197,94,0.28); }

.btn-outline {
  background: rgba(34,197,94,0.05); color: var(--text); font-weight: 600; font-size: 0.93rem;
  padding: 13px 30px; border-radius: 8px; border: 1px solid var(--border); text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); background: rgba(34,197,94,0.08); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 60px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { font-size: 2.1rem; font-weight: 900; color: var(--green); letter-spacing: -0.03em; transition: opacity 0.3s; }
.stat-label { font-size: 0.73rem; color: var(--muted); font-weight: 500; margin-top: 3px; letter-spacing: 0.03em; }

/* floating call button */
.float-call {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: var(--green);
  color: #000;
  display: flex; align-items: center; gap: 9px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(34,197,94,0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  animation: glow-pulse 2.5s ease-in-out infinite;
}
.float-call:hover { background: var(--green-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 36px rgba(34,197,94,0.6); animation: none; }
.float-call svg { flex-shrink: 0; }

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(34,197,94,0.45); }
  50%       { box-shadow: 0 4px 44px rgba(34,197,94,0.75); }
}

/* ── SHARED SECTION ── */
section { padding: 96px 5%; }

.section-tag {
  display: inline-block;
  color: var(--muted);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-family: 'Courier New', monospace;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; margin-bottom: 14px;
}
.section-title span { color: var(--green); }

.section-sub { color: var(--muted); max-width: 460px; font-size: 0.93rem; line-height: 1.75; }

/* ── SERVICES — dark grid cards with corner squares ── */
#services { background: var(--surface); }
.services-header { margin-bottom: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 14px;
}

.service-card {
  background: linear-gradient(135deg, rgba(17,24,18,0.95) 0%, rgba(10,15,11,0.8) 100%);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: 14px; padding: 26px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: visible;
  cursor: default;
}

/* inner glow on hover */
.service-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: 13px;
  background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover { border-color: rgba(34,197,94,0.42); box-shadow: 0 0 48px rgba(34,197,94,0.07), 0 8px 28px rgba(0,0,0,0.45); }
.service-card:hover::after { opacity: 1; }

/* corner squares — injected by JS */
.card-corners { position: absolute; inset: -1px; pointer-events: none; opacity: 0; transition: opacity 0.25s; }
.service-card:hover .card-corners { opacity: 1; }
.corner-sq { position: absolute; width: 7px; height: 7px; background: var(--green); }
.corner-sq.tl { top: 0; left: 0; }
.corner-sq.tr { top: 0; right: 0; }
.corner-sq.bl { bottom: 0; left: 0; }
.corner-sq.br { bottom: 0; right: 0; }

.service-icon {
  width: 46px; height: 46px;
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.14);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}

.service-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; color: var(--text); letter-spacing: -0.01em; }
.service-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.68; }

/* ── WHY US ── */
#why { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 34px; }
.why-feature  { display: flex; gap: 16px; align-items: flex-start; }

.why-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.why-feature h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.why-feature p  { font-size: 0.84rem; color: var(--muted); line-height: 1.68; }

/* glassmorphism card for Why section */
.why-visual {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 20px; padding: 48px 40px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.why-visual::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(34,197,94,0.16) 0%, transparent 70%);
  filter: blur(32px); pointer-events: none;
}

.why-visual h3 { font-size: 1.55rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.why-visual h3 span { color: var(--green); }
.why-visual p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; }

.why-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #000; font-weight: 700; font-size: 1.05rem;
  padding: 12px 26px; border-radius: 8px; text-decoration: none; margin-top: 22px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.why-phone:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.3); }

/* ── CONTACT — glassmorphism form + radial gradient orbs ── */
#contact { background: var(--black); position: relative; overflow: hidden; }

.contact-orb { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; z-index: 0; }
.contact-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.32) 0%, transparent 70%);
  top: -160px; right: -120px;
}
.contact-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
  position: relative; z-index: 1;
}

.contact-info { display: flex; flex-direction: column; gap: 26px; margin-top: 34px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.contact-item h4 { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-bottom: 3px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact-item p  { font-size: 0.93rem; font-weight: 600; color: var(--text); }
.contact-item a  { color: var(--green); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* glassmorphism form card */
.form-card {
  background: rgba(34,197,94,0.04);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 20px; padding: 40px;
  box-shadow:
    0 0 40px rgba(34,197,94,0.08),
    0 28px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.form-card h3 { font-size: 1.28rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.form-card > p { font-size: 0.86rem; color: var(--muted); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field:last-of-type { margin-bottom: 0; }

label { font-size: 0.72rem; font-weight: 700; color: var(--muted); letter-spacing: 0.07em; text-transform: uppercase; }

input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(34,197,94,0.14);
  border-radius: 8px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 11px 14px; outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(106,139,110,0.5); }
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  background: rgba(34,197,94,0.04);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.09);
}
select option { background: #111812; }
textarea { resize: vertical; min-height: 108px; }

.submit-btn {
  width: 100%; background: var(--green); color: #000;
  font-weight: 700; font-size: 0.94rem; padding: 13px;
  border-radius: 8px; border: none; cursor: pointer; margin-top: 18px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s; letter-spacing: 0.01em;
}
.submit-btn:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34,197,94,0.28); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

[data-fs-error] { color: #f87171; font-size: 0.78rem; margin-top: 4px; display: block; }
[data-fs-error][hidden] { display: none; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.1);
}
[data-fs-success] { text-align: center; padding: 32px 16px; }
[data-fs-success][hidden] { display: none; }
[data-fs-success] .check { font-size: 54px; margin-bottom: 12px; }
[data-fs-success] h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
[data-fs-success] p { color: var(--muted); font-size: 0.88rem; }

/* ── GALLERY / BEFORE-AFTER ── */
#gallery { background: var(--surface); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.ba-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4 / 3;
  background: var(--surface2);
  border: 1px solid var(--border);
}

.ba-before-img, .ba-after-img {
  position: absolute;
  inset: 0;
}

.ba-before-img {
  background: linear-gradient(135deg, #1a1409 0%, #0e0b06 100%);
}

.ba-after-img {
  background: linear-gradient(135deg, #091a0b 0%, #050f06 100%);
  clip-path: inset(0 0 0 50%);
}

.ba-before-img img, .ba-after-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* placeholder shown when no image */
.ba-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.35;
}

.ba-placeholder span { font-size: 2rem; }
.ba-placeholder p { font-size: 0.75rem; color: var(--muted); text-align: center; font-family: 'Courier New', monospace; letter-spacing: 0.05em; }

/* divider handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.ba-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.ba-circle svg { display: block; }

.ba-label {
  position: absolute;
  top: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 5;
}

.ba-label-left  { left: 12px; }
.ba-label-right { right: 12px; }

.gallery-single {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  background: var(--surface2);
}

.gallery-single img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-single-caption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.gallery-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── REVIEWS ── */
#reviews { background: var(--surface); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.review-card {
  background: linear-gradient(135deg, rgba(17,24,18,0.95) 0%, rgba(10,15,11,0.8) 100%);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover { border-color: rgba(34,197,94,0.42); box-shadow: 0 0 48px rgba(34,197,94,0.07), 0 8px 28px rgba(0,0,0,0.45); }

.review-stars { color: var(--green); font-size: 1rem; letter-spacing: 2px; }

.review-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; flex: 1; }

.review-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }

.review-avatar {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; color: var(--green);
}

.review-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.review-car  { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── VIDEO ── */
#video { background: var(--black); text-align: center; }

.video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(34,197,94,0.22);
  box-shadow: 0 0 60px rgba(34,197,94,0.1), 0 24px 80px rgba(0,0,0,0.55);
}

.video-container video {
  display: block;
  width: 100%;
  background: #000;
}

.video-caption {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

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

.pricing-tabs { display: flex; gap: 8px; margin: 32px 0 36px; flex-wrap: wrap; }

.pricing-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem; font-weight: 600;
  padding: 9px 22px; border-radius: 6px;
  cursor: pointer; transition: all 0.2s;
}
.pricing-tab:hover { border-color: var(--green); color: var(--green); }
.pricing-tab.active { background: var(--green); border-color: var(--green); color: #000; }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* tier cards */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 16px; }

.pricing-card {
  background: linear-gradient(135deg, rgba(17,24,18,0.95), rgba(10,15,11,0.8));
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  position: relative; overflow: visible;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { border-color: rgba(34,197,94,0.4); box-shadow: 0 0 40px rgba(34,197,94,0.07), 0 8px 28px rgba(0,0,0,0.4); }
.pricing-card.popular { border-color: rgba(34,197,94,0.38); padding-top: 40px; }

.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #000;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}

.pricing-tier { font-size: 0.68rem; font-weight: 700; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; font-family: 'Courier New', monospace; margin-bottom: 10px; }

.pricing-price { font-size: 2.8rem; font-weight: 900; color: var(--text); letter-spacing: -0.04em; line-height: 1; margin-bottom: 5px; }
.pricing-price sup { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--green); }

.pricing-time { font-size: 0.78rem; color: var(--muted); margin-bottom: 18px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 18px; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }

/* bundle cards */
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }

.bundle-card {
  background: linear-gradient(135deg, rgba(17,24,18,0.95), rgba(10,15,11,0.8));
  border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  position: relative; overflow: visible;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.bundle-card:hover { border-color: rgba(34,197,94,0.4); box-shadow: 0 0 40px rgba(34,197,94,0.07), 0 8px 28px rgba(0,0,0,0.4); }
.bundle-card.highlight { border-color: rgba(34,197,94,0.38); padding-top: 40px; }

.bundle-name { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.bundle-includes { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }

.bundle-price-row { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 6px; }
.bundle-price { font-size: 2.1rem; font-weight: 900; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.bundle-price sup { font-size: 1rem; font-weight: 700; vertical-align: top; margin-top: 5px; display: inline-block; color: var(--green); }

.bundle-save { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: var(--green); font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; white-space: nowrap; margin-bottom: 2px; }

.bundle-time { font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.bundle-best-for { font-size: 0.78rem; color: var(--muted); padding-top: 10px; border-top: 1px solid var(--border); }
.bundle-best-for span { color: var(--text); font-weight: 600; }

/* add-ons */
.addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; margin-bottom: 20px; }

.addon-card {
  background: linear-gradient(135deg, rgba(17,24,18,0.95), rgba(10,15,11,0.8));
  border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: border-color 0.3s;
}
.addon-card:hover { border-color: rgba(34,197,94,0.4); }
.addon-name { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.addon-note { font-size: 0.78rem; color: var(--muted); }
.addon-price { font-size: 1.7rem; font-weight: 900; color: var(--green); letter-spacing: -0.03em; white-space: nowrap; }
.addon-price sup { font-size: 0.9rem; font-weight: 700; vertical-align: top; margin-top: 4px; display: inline-block; }

.pricing-note { background: rgba(34,197,94,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 14px 20px; font-size: 0.83rem; color: var(--muted); margin-top: 20px; line-height: 1.7; }
.pricing-note strong { color: var(--text); }

.pricing-cta { text-align: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.pricing-cta p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 36px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-left strong { font-size: 0.92rem; font-weight: 700; }
.footer-left strong span { color: var(--green); }
.footer-left small { color: var(--muted); font-size: 0.78rem; }
.footer-right { color: var(--muted); font-size: 0.78rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: rgba(7,11,8,0.97); border-bottom: 1px solid var(--border); padding: 20px 5%; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  #why { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { order: -1; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .form-card { padding: 28px 20px; }
  footer { flex-direction: column; text-align: center; }
}
