/* ═══════════════════════════════════════════════════════════════════
   NJ DESIGNER — Premium Landing Page
   Design System: Luxury Minimalism, Dark Mode, Glassmorphism
   ═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --black:     #0a0a0a;
  --black-2:   #111111;
  --black-3:   #161616;
  --black-4:   #1c1c1c;
  --white:     #ffffff;
  --white-80:  rgba(255,255,255,0.8);
  --white-60:  rgba(255,255,255,0.6);
  --white-40:  rgba(255,255,255,0.4);
  --white-20:  rgba(255,255,255,0.2);
  --white-10:  rgba(255,255,255,0.08);
  --white-5:   rgba(255,255,255,0.04);

  /* Brand Palette */
  --pink:      #FF2D87;
  --pink-soft: rgba(255,45,135,0.15);
  --pink-glow: rgba(255,45,135,0.35);
  --orange:    #FF6B2B;
  --orange-soft: rgba(255,107,43,0.15);
  --orange-glow: rgba(255,107,43,0.35);
  --blue:      #2B6BFF;
  --blue-soft: rgba(43,107,255,0.15);
  --blue-glow: rgba(43,107,255,0.35);
  --cyan:      #00D4FF;
  --cyan-soft: rgba(0,212,255,0.15);
  --cyan-glow: rgba(0,212,255,0.3);
  --yellow:    #FFB830;
  --yellow-soft: rgba(255,184,48,0.15);
  --whatsapp:  #25D366;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Sizes */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.6s;
}

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

/* ── SCROLLBAR ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--white-20); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--white-40); }

/* ── CONTAINER ─────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HIGHLIGHT TEXT ────────────────────────────────────────────────── */
.highlight {
  position: relative;
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.highlight--pink  { background-image: linear-gradient(135deg, var(--pink), #FF6BB5); }
.highlight--orange{ background-image: linear-gradient(135deg, var(--orange), var(--yellow)); }
.highlight--blue  { background-image: linear-gradient(135deg, var(--blue), var(--cyan)); }
.highlight--yellow{ background-image: linear-gradient(135deg, var(--yellow), var(--orange)); }

/* ── SECTION SHARED ────────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--white-60);
  max-width: 580px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub {
  margin: 0 auto;
}
.section-header .section-tag { margin: 0 auto 16px; }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--xl { padding: 18px 40px; font-size: 17px; }
.btn--full { width: 100%; }
.btn--nav { padding: 11px 22px; font-size: 14px; }

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 0 30px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
}
.btn--whatsapp:active { transform: scale(0.98); }

.btn--ghost {
  background: var(--white-10);
  color: var(--white);
  border: 1px solid var(--white-20);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  background: var(--white-20);
  border-color: var(--white-40);
  transform: translateY(-2px);
}

.btn--pink {
  background: linear-gradient(135deg, var(--pink), #C7006B);
  color: var(--white);
  box-shadow: 0 0 30px var(--pink-glow);
}
.btn--pink:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px var(--pink-glow);
}

/* ── GEOMETRIC SHAPES ──────────────────────────────────────────────── */
.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
  filter: blur(0px);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(4deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}
.geo--orange { background: var(--orange); }
.geo--cyan   { background: var(--cyan); }
.geo--pink   { background: var(--pink); }
.geo--blue   { background: var(--blue); }
.geo--yellow { background: var(--yellow); }

/* Rectangle shapes */
.geo--rect-1 { width: 60px; height: 80px; border-radius: 10px; top: 15%; right: 8%; animation-duration: 9s; animation-delay: 0s; opacity: 0.6; }
.geo--rect-2 { width: 28px; height: 48px; border-radius: 6px; top: 55%; right: 5%; animation-duration: 11s; animation-delay: -2s; opacity: 0.5; }
.geo--circle-1 { width: 70px; height: 70px; top: 30%; left: 3%; animation-duration: 12s; animation-delay: -1s; opacity: 0.4; }
.geo--rect-3 { width: 44px; height: 64px; border-radius: 8px; bottom: 20%; left: 6%; animation-duration: 10s; animation-delay: -3s; opacity: 0.45; }
.geo--circle-2 { width: 90px; height: 90px; top: 8%; left: 20%; animation-duration: 14s; animation-delay: -5s; opacity: 0.25; filter: blur(20px); }
.geo--rect-4 { width: 22px; height: 38px; border-radius: 5px; bottom: 35%; right: 18%; animation-duration: 7s; animation-delay: -4s; opacity: 0.4; }
.geo--circle-3 { width: 50px; height: 50px; bottom: 15%; right: 28%; animation-duration: 13s; animation-delay: -6s; opacity: 0.35; }

.geo--why-1 { width: 400px; height: 400px; top: -100px; left: -200px; opacity: 0.05; filter: blur(80px); animation: none; }
.geo--why-2 { width: 300px; height: 300px; bottom: -100px; right: -100px; opacity: 0.06; filter: blur(60px); animation: none; }
.geo--pricing-1 { width: 350px; height: 350px; top: 0; right: -150px; opacity: 0.06; filter: blur(80px); animation: none; }
.geo--pricing-2 { width: 250px; height: 250px; bottom: 50px; left: -100px; opacity: 0.07; filter: blur(60px); animation: none; }
.geo--ref-1 { width: 60px; height: 60px; top: 10%; right: 10%; animation-delay: 0s; }
.geo--ref-2 { width: 40px; height: 60px; border-radius: 8px; top: 60%; left: 5%; animation-delay: -2s; opacity: 0.5; }
.geo--ref-3 { width: 35px; height: 35px; bottom: 10%; right: 20%; animation-delay: -4s; opacity: 0.45; }
.geo--cta-1 { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; opacity: 0.5; }
.geo--cta-2 { width: 50px; height: 50px; top: 20%; right: 8%; animation-delay: -3s; opacity: 0.45; }
.geo--cta-3 { width: 35px; height: 55px; border-radius: 8px; bottom: 20%; left: 10%; animation-delay: -5s; opacity: 0.4; }
.geo--cta-4 { width: 60px; height: 40px; border-radius: 8px; bottom: 30%; right: 12%; animation-delay: -2s; opacity: 0.35; }

/* ── REVEAL ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--white-10);
}
.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.3s var(--ease-out);
}
.nav__logo-img:hover { transform: scale(1.04); }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 20px;
  flex: 1;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-60);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,45,135,0.07) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 50%, rgba(43,107,255,0.06) 0%, transparent 50%),
              var(--black);
}
.hero > .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero__label-dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 var(--pink-glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
.hero__headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero__sub strong { color: var(--white-80); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__mockup-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(255,45,135,0.15) 0%, rgba(43,107,255,0.1) 40%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
/* ── DEVICE MOCKUPS WITH REAL WEBSITE ──────────────────────────── */
.hero__device-visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  animation: float-device 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}
@keyframes float-device {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* ── LAPTOP ─────────────────────────────────────────────────────── */
.hero__laptop {
  position: relative;
  width: 86%;
  border-radius: 14px 14px 0 0;
  background: #1e1e1e;
  border: 2px solid #333;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 60px rgba(255,45,135,0.08);
}

/* Browser chrome bar */
.hero__laptop-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
}
.hero__laptop-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot--red    { background: #FF5F57; }
.dot--yellow { background: #FEBC2E; }
.dot--green  { background: #28C840; }

.hero__laptop-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-main);
  white-space: nowrap;
  overflow: hidden;
}
.hero__laptop-url svg {
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* The screen area containing the iframe */
.hero__laptop-screen {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62%;
  background: #fff;
  overflow: hidden;
}
.hero__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 180%;      /* iframe loaded at desktop width */
  height: 180%;
  border: none;
  transform: scale(0.556);
  transform-origin: top left;
  pointer-events: none;
  background: #fff;
}

/* Laptop base / chin */
.hero__laptop-base {
  height: 16px;
  background: linear-gradient(180deg, #222, #181818);
  border-top: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__laptop-notch {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: #2a2a2a;
}
.hero__laptop::after {
  content: '';
  display: block;
  height: 5px;
  background: #111;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #1e1e1e;
}

/* ── PHONE ──────────────────────────────────────────────────────── */
.hero__phone {
  position: absolute;
  right: -3%;
  bottom: 0;
  width: 27%;
  background: #1e1e1e;
  border-radius: 22px;
  border: 2px solid #333;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 30px rgba(0,212,255,0.08);
  animation: float-phone 7s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes float-phone {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Phone notch */
.hero__phone-notch {
  height: 14px;
  background: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__phone-notch::after {
  content: '';
  width: 36px;
  height: 5px;
  background: #111;
  border-radius: 3px;
}

.hero__phone-screen {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 195%;
  background: #fff;
  overflow: hidden;
}
.hero__phone-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;     /* simulate iPhone viewport */
  height: 844px;
  border: none;
  transform-origin: top left;
  /* scale to fit container width */
  transform: scale(var(--phone-scale, 0.38));
  pointer-events: none;
  background: #fff;
}

/* ════════════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════════════ */
.trust {
  padding: 56px 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  flex: 0 0 auto;
}
.trust__icon {
  width: 44px;
  height: 44px;
  color: var(--white-60);
  transition: color 0.3s;
}
.trust__icon svg { width: 100%; height: 100%; }
.trust__item:hover .trust__icon { color: var(--pink); }
.trust__item span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-40);
  white-space: nowrap;
  transition: color 0.3s;
}
.trust__item:hover span { color: var(--white-80); }

/* ════════════════════════════════════════════════════════════════════
   WHY NJ DESIGNER
   ════════════════════════════════════════════════════════════════════ */
.why {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  align-items: center;
}
.comparison__card {
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}
.comparison__card:hover { transform: translateY(-4px); }
.comparison__card--agency {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  border-right: none;
}
.comparison__card--nj {
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  border-left: none;
  background: linear-gradient(135deg, rgba(255,45,135,0.07) 0%, rgba(43,107,255,0.07) 100%);
  border-color: rgba(255,45,135,0.3);
}
.comparison__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.comparison__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-bottom: 16px;
}
.comparison__price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white-40);
  line-height: 1;
  margin-bottom: 28px;
}
.comparison__price span { font-size: 32px; }
.comparison__price--nj { color: var(--white); }
.comparison__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comparison__list li {
  font-size: 14px;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-check {
  color: var(--cyan);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.icon-cross {
  color: var(--white-30);
  font-size: 16px;
  flex-shrink: 0;
}
.comparison__vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  position: relative;
  padding: 0 -1px;
}
.comparison__vs-inner {
  width: 56px;
  height: 56px;
  background: var(--black-4);
  border: 2px solid var(--white-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white-40);
  flex-shrink: 0;
}
.comparison__save {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 20px var(--pink-glow);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.05em;
}
.comparison__disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--white-30);
  margin-top: 24px;
}

/* ════════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.pricing__card {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--black-3), var(--black-4));
  border: 1px solid rgba(255,45,135,0.25);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.pricing__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(255,45,135,0.2);
}
.pricing__glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,45,135,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.pricing__header { text-align: center; margin-bottom: 40px; }
.pricing__tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.pricing__name {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.pricing__price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing__currency {
  font-size: 32px;
  font-weight: 700;
  color: var(--white-60);
  padding-top: 10px;
}
.pricing__amount {
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--white-80));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing__billing {
  font-size: 14px;
  color: var(--white-40);
  margin-top: 4px;
}
.pricing__included-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 20px;
}
.pricing__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 36px;
}
.pricing__features li {
  font-size: 14px;
  color: var(--white-70);
  display: flex;
  align-items: center;
  gap: 10px;
}
.feat-check {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Not Included */
.notincluded {
  max-width: 820px;
  margin: 56px auto 0;
  text-align: center;
}
.notincluded__title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.notincluded__title em { font-style: italic; color: var(--pink); font-style: normal; }
.notincluded__sub {
  font-size: 15px;
  color: var(--white-40);
  margin-bottom: 36px;
}
.notincluded__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.notincluded__card {
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.notincluded__card:hover {
  border-color: var(--white-20);
  transform: translateY(-3px);
}
.notincluded__icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
  margin-bottom: 16px;
}
.notincluded__icon svg { width: 100%; height: 100%; }
.notincluded__card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.notincluded__card p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 20px;
}
.notincluded__cost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}
.notincluded__cost span { font-size: 12px; color: var(--white-40); }
.notincluded__cost strong { font-size: 14px; color: var(--cyan); }

/* ════════════════════════════════════════════════════════════════════
   REFERRAL
   ════════════════════════════════════════════════════════════════════ */
.referral {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,45,135,0.07) 0%, transparent 70%), var(--black);
}
.referral__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.referral__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-soft);
  border: 1px solid var(--pink-glow);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}
.referral__headline {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.referral__text {
  font-size: 18px;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 48px;
}
.referral__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.referral__step {
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  min-width: 160px;
  flex: 1;
  max-width: 180px;
}
.referral__step-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.referral__step p {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.5;
}
.referral__step p strong { color: var(--white); }
.referral__arrow {
  font-size: 24px;
  color: var(--white-30);
}
.referral__no-limits {
  font-size: 18px;
  color: var(--white-60);
  margin-bottom: 48px;
  line-height: 1.6;
}
.referral__no-limits span {
  font-weight: 800;
  color: var(--white);
}

/* Special Offer */
.special-offer {
  background: var(--black-3);
  border: 1px solid rgba(255,107,43,0.3);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  max-width: 680px;
}
.special-offer__badge {
  background: linear-gradient(135deg, var(--black-4), var(--black-3));
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 0 40px var(--orange-glow);
}
.special-offer__original {
  font-size: 18px;
  color: var(--white-30);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.special-offer__discount {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-soft);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  display: inline-block;
}
.special-offer__new {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.special-offer__content h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.special-offer__content p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.7;
}
.special-offer__content p strong { color: var(--white); }

/* ════════════════════════════════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════════════════════════════════ */
.portfolio {
  padding: 120px 0;
  background: var(--black-2);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio__item {
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid var(--white-10);
  transition: all 0.4s var(--ease-out);
  display: block;          /* works for both <div> and <a> */
  color: inherit;          /* remove link colour */
  text-decoration: none;   /* remove underline */
}
.portfolio__item:hover {
  transform: translateY(-6px);
  border-color: var(--white-20);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,45,135,0.1);
}
.portfolio__img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.portfolio__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}
.portfolio__item:hover .portfolio__img { transform: scale(1.06); }
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,45,135,0.7), rgba(43,107,255,0.7));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  backdrop-filter: blur(4px);
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; }
.portfolio__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.portfolio__view {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}
.portfolio__info {
  padding: 20px 24px;
}
.portfolio__info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.portfolio__info p {
  font-size: 12px;
  color: var(--white-40);
}

/* Portfolio gradient backgrounds — kept for fallback */
.portfolio__img--medical    { background: linear-gradient(135deg, #0d1f3c, #1a3a6c, #0d2d4a); }
.portfolio__img--photo      { background: linear-gradient(135deg, #1a0a0a, #3d1515, #1a0d0d); }
.portfolio__img--law        { background: linear-gradient(135deg, #0f0f1a, #1e1e3d, #141428); }
.portfolio__img--beauty     { background: linear-gradient(135deg, #1f0a1a, #3d1535, #2a0d28); }
.portfolio__img--restaurant { background: linear-gradient(135deg, #1f0f00, #3d1f00, #2a1500); }
.portfolio__img--realestate { background: linear-gradient(135deg, #001f0f, #003d1f, #00280f); }

/* ════════════════════════════════════════════════════════════════════
   WEBSITE LIBRARY
   ════════════════════════════════════════════════════════════════════ */

/* Filter tabs */
.library__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.library__filter {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--white-50);
  background: var(--white-5);
  border: 1px solid var(--white-10);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  font-family: var(--font-main);
}
.library__filter:hover {
  color: var(--white);
  background: var(--white-10);
  border-color: var(--white-20);
}
.library__filter.is-active {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--pink-glow);
}

/* Card image wrapper */
.library__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--black-4);
}
.library__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.portfolio__item:hover .library__img { transform: scale(1.05); }

/* Overlay */
.library__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,45,135,0.82),
    rgba(43,107,255,0.82));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  backdrop-filter: blur(6px);
  padding: 24px;
}
.portfolio__item:hover .library__overlay { opacity: 1; }

.library__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* "I Want This Style" button inside overlay */
.library__demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.library__demo-btn:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.library__demo-btn svg { color: var(--whatsapp); }

/* Card bottom info row */
.library__info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.library__info-left h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.library__info-left p {
  font-size: 12px;
  color: var(--white-40);
}

/* Category badges */
.library__badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.library__badge--services  { background: rgba(255,107,43,0.15); color: var(--orange);  border: 1px solid rgba(255,107,43,0.25); }
.library__badge--beauty    { background: rgba(255,45,135,0.15); color: var(--pink);    border: 1px solid rgba(255,45,135,0.25); }
.library__badge--food      { background: rgba(255,184,48,0.15); color: var(--yellow);  border: 1px solid rgba(255,184,48,0.25); }
.library__badge--fitness   { background: rgba(0,212,255,0.12);  color: var(--cyan);    border: 1px solid rgba(0,212,255,0.2);  }
.library__badge--health    { background: rgba(43,107,255,0.15); color: var(--blue);    border: 1px solid rgba(43,107,255,0.25); }
.library__badge--realestate{ background: rgba(43,107,255,0.15); color: var(--blue);    border: 1px solid rgba(43,107,255,0.25); }
.library__badge--legal     { background: rgba(180,140,60,0.2);  color: #d4a843;        border: 1px solid rgba(180,140,60,0.3);  }
.library__badge--business  { background: rgba(120,80,255,0.15); color: #a78bfa;        border: 1px solid rgba(120,80,255,0.25); }
.library__badge--community { background: rgba(180,60,60,0.15);  color: #f87171;        border: 1px solid rgba(180,60,60,0.25);  }

/* Business Consulting — CSS gradient fallback */
.library__img--consulting {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #0a0a1a 0%, #0d1130 40%, #1a0d30 70%, #0a0a1a 100%);
  position: relative;
  overflow: hidden;
}
.library__img--consulting::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 40%, rgba(99,102,241,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(139,92,246,0.2) 0%, transparent 60%);
}
.library__img--consulting::after {
  content: 'Business Consulting';
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Cards hidden by filter */
.library__card.is-hidden {
  display: none;
}

/* Bottom CTA strip */
.library__cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
}
.library__cta p {
  font-size: 15px;
  color: var(--white-60);
}

/* ════════════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════════════ */
.process {
  padding: 120px 0;
  background: var(--black);
}
.process__timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}
.process__step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.process__num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white-10);
  line-height: 1;
  margin-bottom: 16px;
}
.process__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s var(--ease-spring);
}
.process__step:hover .process__icon { transform: scale(1.1) translateY(-4px); }
.process__icon svg { width: 28px; height: 28px; }
.process__icon--orange { background: var(--orange-soft); color: var(--orange); border: 1px solid rgba(255,107,43,0.25); }
.process__icon--cyan   { background: var(--cyan-soft);   color: var(--cyan);   border: 1px solid rgba(0,212,255,0.25); }
.process__icon--pink   { background: var(--pink-soft);   color: var(--pink);   border: 1px solid rgba(255,45,135,0.25); }
.process__icon--blue   { background: var(--blue-soft);   color: var(--blue);   border: 1px solid rgba(43,107,255,0.25); }
.process__icon--yellow { background: var(--yellow-soft); color: var(--yellow); border: 1px solid rgba(255,184,48,0.25); }
.process__step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process__step p {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.6;
}
.process__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  margin-top: 100px;
  border-radius: 2px;
  opacity: 0.4;
}

/* ════════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--black-2);
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item.is-open {
  border-color: rgba(255,45,135,0.3);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-main);
}
.faq__question:hover { color: var(--pink); }
.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--white-40);
  transition: transform 0.3s var(--ease-out);
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq__answer p {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.8;
}
.faq__answer p strong { color: var(--white); }

/* ════════════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════════════ */
.cta-final {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255,45,135,0.08) 0%, rgba(43,107,255,0.06) 50%, transparent 70%), var(--black);
}
.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-final__headline {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.cta-final__text {
  font-size: 18px;
  color: var(--white-60);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 52px;
}
.cta-final__text strong { color: var(--white); }
.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--white-10);
  padding: 60px 0 40px;
  background: var(--black);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer__brand {}
.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
  border-radius: 5px;
}
.footer__brand p {
  font-size: 13px;
  color: var(--white-40);
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 12px;
  color: var(--white-25) !important;
  font-style: italic;
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-50);
  transition: color 0.2s;
  border: 1px solid var(--white-10);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--white-5);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social:hover { color: var(--white); border-color: var(--white-20); }
.footer__bottom {
  border-top: 1px solid var(--white-5);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--white-25);
}

/* ════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.6);
}
.whatsapp-float__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero > .container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { max-width: 500px; margin: 0 auto; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .comparison { grid-template-columns: 1fr; }
  .comparison__card--agency { border-radius: var(--radius-xl); border: 1px solid var(--white-10); }
  .comparison__card--nj { border-radius: var(--radius-xl); border: 1px solid rgba(255,45,135,0.3); }
  .comparison__vs { flex-direction: row; padding: 16px 0; }
  .comparison__save { writing-mode: horizontal-tb; transform: none; }
  .pricing__features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(20px); flex-direction: column; padding: 32px 24px 40px; gap: 8px; border-bottom: 1px solid var(--white-10); }
  .nav__menu.is-open { display: flex; }
  .nav__link { font-size: 16px; padding: 10px 0; color: var(--white-80); }
  .btn--nav { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }

  .hero { padding: 100px 0 64px; }
  .hero__headline { font-size: clamp(34px, 9vw, 56px); }

  .trust__grid { gap: 24px 32px; }
  .trust__item { min-width: 80px; }

  .portfolio__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .process__timeline { flex-direction: column; align-items: center; }
  .process__step { max-width: 280px; }
  .process__connector { width: 2px; height: 32px; background: linear-gradient(180deg, var(--pink), var(--blue)); margin-top: 0; margin-left: 0; }

  .notincluded__cards { grid-template-columns: 1fr; }
  .special-offer { flex-direction: column; text-align: center; }
  .special-offer__content { text-align: center; }

  .referral__steps { flex-direction: column; align-items: center; }
  .referral__arrow { transform: rotate(90deg); }
  .referral__step { max-width: 280px; width: 100%; }

  .footer__inner { flex-direction: column; }
  .footer__links { flex-direction: column; align-items: flex-start; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .comparison__vs { flex-direction: column; }
  .pricing__card { padding: 36px 24px; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--xl { width: 100%; max-width: 340px; }
}
