/* Landly — Landing Page */
:root {
  --bg: #FFFFFF;
  --bg-2: #F6F4FB;
  --bg-3: #EFEAF7;
  --fg: #0A0612;
  --fg-2: #1A1424;
  --muted: #6B6478;
  --muted-2: #A09AAE;
  --line: #ECE6F5;
  --line-2: #DDD4EC;
  --accent: #6B2BD9;
  --accent-2: #9B5CFF;
  --accent-soft: #E9DFFF;
  --accent-deep: #3D0E8A;
  --accent-fg: #FFFFFF;
  --whatsapp: #1FAD55;
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-3d: 0 1px 0 rgba(255,255,255,0.5) inset, 0 12px 24px -12px rgba(61,14,138,0.10), 0 4px 8px -4px rgba(61,14,138,0.06);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 20px -14px rgba(61,14,138,0.10), 0 2px 6px -2px rgba(61,14,138,0.05);
  --shadow-purple: 0 10px 24px -10px rgba(107,43,217,0.30), 0 4px 8px -4px rgba(107,43,217,0.15);
  --grad-purple: linear-gradient(135deg, #9B5CFF 0%, #6B2BD9 50%, #3D0E8A 100%);
  --grad-soft: linear-gradient(180deg, #FFFFFF 0%, #F6F4FB 100%);
}

[data-theme="dark"] {
  --bg: #08050E;
  --bg-2: #100A1C;
  --bg-3: #1A1130;
  --fg: #F6F4FB;
  --fg-2: #ECE6F5;
  --muted: #9089A5;
  --muted-2: #5A5170;
  --line: #1F162F;
  --line-2: #2A1F40;
  --accent: #9B5CFF;
  --accent-2: #C79BFF;
  --accent-soft: #2A1F40;
  --accent-deep: #C79BFF;
  --shadow-card: 0 1px 0 rgba(155,92,255,0.08) inset, 0 18px 40px -22px rgba(0,0,0,0.6);
  --shadow-3d: 0 1px 0 rgba(155,92,255,0.1) inset, 0 24px 50px -20px rgba(0,0,0,0.7);
  --grad-soft: linear-gradient(180deg, #08050E 0%, #100A1C 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.display { font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.04em; line-height: 0.92; }
.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: "ss01"; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== NAVBAR ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
}
.logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn-primary {
  background: var(--grad-purple);
  color: #fff;
  box-shadow: var(--shadow-purple), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(107,43,217,0.35), 0 1px 0 rgba(255,255,255,0.2) inset; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(31,173,85,0.35), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #198f47; box-shadow: 0 12px 24px -8px rgba(31,173,85,0.4); }

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--fg);
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 3px 8px -4px rgba(61,14,138,0.06);
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); transform: translateY(-2px); }

.btn-lg {
  padding: 16px 26px;
  font-size: 15px;
  border-radius: 999px;
}

.nav-toggle { display: none; }

/* ========== HERO ========== */
.hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 65%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

/* Aurora effect */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: 0.18;
  filter: blur(80px) saturate(1.2);
  pointer-events: none;
}
.aurora-beam {
  position: absolute;
  border-radius: 50%;
}
.aurora-1 {
  width: 50%;
  height: 90%;
  top: -15%;
  left: -10%;
  background: radial-gradient(ellipse at 55% 50%, #3D0E8A 0%, rgba(61,14,138,0.6) 35%, transparent 65%);
  animation: aurora-drift-1 13s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 45%;
  height: 75%;
  top: 5%;
  left: 15%;
  background: radial-gradient(ellipse at 50% 50%, #6B2BD9 0%, rgba(107,43,217,0.5) 35%, transparent 65%);
  animation: aurora-drift-2 11s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 55%;
  height: 80%;
  top: -10%;
  left: 40%;
  background: radial-gradient(ellipse at 40% 55%, #C79BFF 0%, rgba(199,155,255,0.4) 35%, transparent 65%);
  animation: aurora-drift-3 15s ease-in-out infinite alternate;
}
@keyframes aurora-drift-1 {
  0% { transform: translate(0, 0) scale(1) rotate(-5deg); }
  100% { transform: translate(12%, 8%) scale(1.1) rotate(5deg); }
}
@keyframes aurora-drift-2 {
  0% { transform: translate(0, 0) scale(1) rotate(3deg); }
  100% { transform: translate(15%, -6%) scale(1.15) rotate(-3deg); }
}
@keyframes aurora-drift-3 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(8%, 10%) scale(1.08) rotate(8deg); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 36px;
  background: var(--bg);
  box-shadow: 0 4px 10px -6px rgba(61,14,138,0.10), 0 1px 0 rgba(255,255,255,0.4) inset;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-purple);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); }
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 7.8vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  hyphens: none;
  overflow-wrap: break-word;
  max-width: 100%;
  position: relative;
}
.hero h1 em,
.hero h1 .grad {
  font-style: italic;
  font-weight: 400;
  font-family: 'Instrument Serif', 'Space Grotesk', serif;
  letter-spacing: -0.02em;
  background-image: linear-gradient(135deg, #9B5CFF 0%, #6B2BD9 50%, #3D0E8A 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-sub {
  max-width: 480px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
}
.hero-sub strong { color: var(--fg); font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-locations {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-locations .line { flex: 1; height: 1px; background: var(--line); }
.hero-locations .cities { display: flex; gap: 24px; }

/* ========== SECTION CHROME ========== */
.section { padding: 120px 0; position: relative; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--fg);
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  font-family: 'Instrument Serif', serif;
  letter-spacing: -0.01em;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-intro {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.55;
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 16px 32px -16px rgba(61,14,138,0.14);
}
.service-preview {
  aspect-ratio: 4/3;
  background: var(--bg);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-preview .ph-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 14px, color-mix(in srgb, var(--fg) 4%, transparent) 14px, color-mix(in srgb, var(--fg) 4%, transparent) 15px);
}
.service-preview .ph-label {
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* Service preview enhancements */
.preview-web {
  background: linear-gradient(135deg, #3D0E8A 0%, #6B2BD9 100%);
  padding: 18px;
  position: relative;
}
.preview-web::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.preview-web-window {
  background: var(--bg);
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,0.25);
  position: relative;
  z-index: 1;
}
.preview-web-bar {
  display: flex;
  gap: 4px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.preview-web-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
}
.preview-web-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}
.preview-web-body .bar {
  height: 6px; border-radius: 3px;
  background: var(--line);
}
.preview-web-body .bar.lg { background: var(--grad-purple); width: 60%; height: 10px; }
.preview-web-body .bar.sm { width: 40%; }
.preview-web-body .bar.md { width: 75%; }
.preview-web-body .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
  flex: 1;
}
.preview-web-body .grid div {
  background: var(--line);
  border-radius: 4px;
}

.preview-auto {
  background: var(--bg-3);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  position: relative;
}
.preview-auto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(155,92,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.preview-auto svg { width: 100%; height: auto; max-height: 100%; position: relative; z-index: 1; }
.preview-auto svg .hub { fill: url(#hubGrad); }

.preview-bot {
  background: linear-gradient(135deg, #100A1C 0%, #1F1230 100%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  position: relative;
}
.preview-bot::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(155,92,255,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.preview-bot .bubble {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  max-width: 80%;
  font-family: 'Inter', sans-serif;
}
.preview-bot .bubble.user {
  align-self: flex-end;
  background: var(--grad-purple);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 6px 14px -6px rgba(107,43,217,0.5);
}
.preview-bot .bubble.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: #F6F4FB;
  border: 1px solid rgba(155,92,255,0.18);
  border-bottom-left-radius: 4px;
  backdrop-filter: blur(8px);
}
.preview-bot .typing {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(155,92,255,0.18);
  padding: 10px 14px;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
}
.preview-bot .typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #C79BFF;
  animation: bounce 1.4s infinite;
}
.preview-bot .typing span:nth-child(2) { animation-delay: 0.2s; }
.preview-bot .typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-num { font-weight: 500; }
.service-tag {
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.service-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.service-features li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.service-price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.service-price .from {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.service-price .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
}

/* ========== PROCESS ========== */
.process {
  background: #0A0612;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(155,92,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.process::after {
  content: '';
  position: absolute;
  bottom: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,43,217,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process .section-tag { color: color-mix(in srgb, var(--bg) 60%, transparent); }
.process .section-tag::before { background: var(--bg); }
.process .section-intro { color: color-mix(in srgb, var(--bg) 65%, transparent); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr 2fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
  align-items: start;
  transition: padding 0.3s var(--ease);
}
.process-step:last-child { border-bottom: 1px solid color-mix(in srgb, var(--bg) 14%, transparent); }
.process-step:hover { padding-left: 16px; }
.process-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: color-mix(in srgb, var(--bg) 50%, transparent);
  letter-spacing: 0.1em;
}
.process-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.process-name em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #C79BFF 0%, #9B5CFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.process-desc {
  font-size: 16px;
  color: color-mix(in srgb, var(--bg) 65%, transparent);
  line-height: 1.6;
  max-width: 50ch;
  padding-top: 8px;
}

/* ========== REASONS ========== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.reason {
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  box-shadow: var(--shadow-card);
}
.reason:hover { transform: translateY(-3px); border-color: var(--accent-2); box-shadow: 0 12px 24px -14px rgba(61,14,138,0.12); }
.reason-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.reason-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.reason h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.reason p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== TESTIMONIALS SLIDER ========== */
.testimonials {
  padding: 80px 0 120px;
}
.testi-viewport {
  overflow: hidden;
  position: relative;
}
.testi-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testi {
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-card);
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-enter {
  opacity: 0;
  filter: blur(12px);
  transform: scale(0.97);
}
.testi-exit {
  opacity: 0;
  filter: blur(12px);
  transform: scale(0.97);
}

@media (max-width: 960px) {
  .testi-slider { grid-template-columns: 1fr; }
}
.testi-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.testi-quote::before {
  content: '\201C';
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  line-height: 0;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: -16px;
  margin-right: 4px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.testi-name { font-weight: 600; font-size: 15px; }
.testi-role { font-size: 13px; color: var(--muted); }

/* ========== CTA ========== */
.cta-final {
  padding: 140px 0 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.cta-final::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,92,255,0.15) 0%, transparent 65%);
  z-index: 0;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(56px, 10vw, 156px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin-bottom: 36px;
}
.cta-final h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 44px;
  line-height: 1.5;
}
.cta-buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-meta {
  margin-top: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-meta span { display: flex; align-items: center; gap: 8px; }
.cta-meta span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { font-size: 32px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 32ch;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--fg-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-giant {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  margin: 0 0 40px;
  user-select: none;
  color: var(--line);
}

/* ========== Floating WhatsApp ========== */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 6px 16px rgba(31, 173, 85, 0.2);
  transition: transform 0.2s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }

/* ========== Reveal Animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { 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; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 130px 0 80px; }
  .hero-meta { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .services-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-step { grid-template-columns: 60px 1fr; gap: 16px; padding: 28px 0; }
  .process-desc { grid-column: 2; }
  .section { padding: 80px 0; }
  .hero-locations { flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .reason { padding: 36px 28px; }
}
