/* ============================================================
   FixFonz — Design Tokens
   ============================================================ */
:root {
  --black: #0B0B0B;
  --black-soft: #111318;
  --black-card: #15181e;
  --white: #FFFFFF;
  --gray-light: #F8FAFC;
  --gray-100: #EEF1F6;
  --gray-300: #CBD3E1;
  --gray-500: #64748B;
  --gray-700: #334155;
  --blue: #2563EB;
  --blue-light: #4F82FF;
  --cyan: #06B6D4;
  --emerald: #10B981;
  --silver: #A9B3C1;
  --gradient: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(6,182,212,0.12));

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  --shadow-soft: 0 20px 60px -20px rgba(11,11,11,0.18);
  --shadow-glow-blue: 0 0 60px -10px rgba(37,99,235,0.45);
  --shadow-glow-cyan: 0 0 60px -10px rgba(6,182,212,0.4);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
.mono { font-family: var(--font-mono); }

::selection { background: var(--cyan); color: var(--black); }

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ============================================================
   Loader
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__mark { animation: loaderSpin 2.4s linear infinite; }
.loader__ring { stroke: rgba(6,182,212,0.25); }
.loader__mark line { stroke: var(--cyan); }
.loader__dot { fill: var(--blue); animation: loaderPulse 1.2s ease-in-out infinite; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.loader__label {
  margin-top: 18px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--gray-300);
}
.dots span { animation: loaderDots 1.4s infinite; opacity: 0; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderDots { 0%,60%,100% { opacity: 0; } 30% { opacity: 1; } }

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; width: 22px; height: 22px;
  border: 1.5px solid var(--cyan); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate(-50%,-50%);
  transition: width .2s var(--ease-soft), height .2s var(--ease-soft), background .2s var(--ease-soft), border-color .2s var(--ease-soft);
  mix-blend-mode: difference;
  display: none;
}
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor.is-active { width: 44px; height: 44px; background: rgba(6,182,212,0.15); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer; border: 1px solid transparent;
}
.btn--primary { background: var(--gradient); color: var(--white); box-shadow: 0 12px 30px -10px rgba(37,99,235,0.55); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(37,99,235,0.65); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(255,255,255,0.18); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--black); border-color: var(--gray-300); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--whatsapp { background: #1fae5a; color: var(--white); }
.btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(31,174,90,0.55); }
.btn--sm { padding: 10px 20px; font-size: 13.5px; }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav.is-scrolled { padding: 12px 0; background: rgba(11,11,11,0.72); backdrop-filter: blur(16px) saturate(160%); box-shadow: 0 10px 30px -15px rgba(0,0,0,0.4); }
.nav__logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 18px; color: var(--white); flex-shrink: 0; }
.nav__logo b { color: var(--cyan); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  position: relative; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.72);
  transition: color .25s var(--ease-soft); padding: 4px 0;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px;
  background: var(--gradient); transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__call { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.nav__call svg { color: var(--cyan); }
.nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; margin: -14px -9px; background: none; border: none; cursor: pointer; position: relative; z-index: 401; }
.nav__burger span { width: 26px; align-self: center; }
.nav__burger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }

@media (max-width: 1080px) {
  .nav__call span { display: none; }
}
@media (max-width: 900px) {
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw);
    background: rgba(11,11,13,0.98); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 22px; transform: translateX(100%);
    transition: transform .45s var(--ease); z-index: 400;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { font-size: 18px; }
  .nav__call { display: none; }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav .btn--sm { padding: 9px 16px; font-size: 12.5px; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; overflow: hidden;
  padding: 140px 0 60px;
}
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.6; }
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 90%);
}
.hero__grid--about { mask-image: radial-gradient(ellipse 60% 60% at 20% 40%, black 0%, transparent 75%); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; opacity: 0.5; }
.hero__glow--blue { width: 480px; height: 480px; background: var(--blue); top: -140px; left: -120px; animation: floatGlow 12s ease-in-out infinite; }
.hero__glow--cyan { width: 420px; height: 420px; background: var(--cyan); bottom: -160px; right: -100px; animation: floatGlow 14s ease-in-out infinite reverse; }
@keyframes floatGlow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-30px); } }

.hero__inner {
  position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--cyan); background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.25);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 26px;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(6,182,212,0.6); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(6,182,212,0.5); } 70% { box-shadow: 0 0 0 8px rgba(6,182,212,0); } 100% { box-shadow: 0 0 0 0 rgba(6,182,212,0); } }

.hero__title { font-size: clamp(2.4rem, 5vw, 4.1rem); color: var(--white); }
.hero__title-accent {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subtitle {
  margin-top: 24px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.65);
  max-width: 520px;
}
.hero__subtitle strong { color: var(--white); font-weight: 600; }
.hero__doorstep-note {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px;
  font-size: 13.5px; color: rgba(255,255,255,0.65);
}
.hero__doorstep-note svg { flex-shrink: 0; color: var(--cyan); }
.hero__doorstep-note strong { color: var(--white); font-weight: 600; }
.hero__cta { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.hero__trust { display: flex; align-items: center; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-num { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--white); display: inline; }
.hero__trust-plus { font-family: var(--font-display); font-size: 18px; color: var(--cyan); }
.hero__trust-label { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero__trust-sep { width: 1px; height: 34px; background: rgba(255,255,255,0.14); }

/* --- Phone rig (signature element) --- */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }
.phone-rig { position: relative; width: 380px; height: 460px; }
.phone-rig__ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(6,182,212,0.22);
}
.phone-rig__ring--1 { transform: scale(1.15); animation: spinSlow 40s linear infinite; }
.phone-rig__ring--2 { transform: scale(1.4); border-color: rgba(37,99,235,0.16); animation: spinSlow 60s linear infinite reverse; }
@keyframes spinSlow { to { transform: scale(1.15) rotate(360deg); } }
.phone-rig__ring--2 { animation-name: spinSlow2; }
@keyframes spinSlow2 { to { transform: scale(1.4) rotate(-360deg); } }

.phone-rig__trace { position: absolute; inset: -30px; }

.phone {
  position: absolute; left: 50%; top: 50%;
  width: 220px; height: 440px;
  transform: translate(-50%,-50%) rotateY(-14deg) rotateX(6deg);
  transform-style: preserve-3d;
  background: linear-gradient(165deg, #1a1d24, #0c0e12);
  border-radius: 34px; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03) inset, 0 0 60px -10px rgba(37,99,235,0.35);
  padding: 10px; animation: phoneFloat 6s ease-in-out infinite;
  transition: transform .2s ease-out;
}
@keyframes phoneFloat { 0%,100% { transform: translate(-50%,-50%) rotateY(-14deg) rotateX(6deg) translateY(0); } 50% { transform: translate(-50%,-50%) rotateY(-14deg) rotateX(6deg) translateY(-16px); } }
.phone__notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 18px; background: #05060a; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 26px; overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #12212e, #060708 70%);
  border: 1px solid rgba(6,182,212,0.15);
  padding: 28px 16px 16px; display: flex; flex-direction: column; gap: 18px;
}
.phone__scan {
  position: absolute; left: 10px; right: 10px; top: 10px; height: 2px; z-index: 4;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 12px 2px rgba(6,182,212,0.8);
  animation: scanMove 3.2s ease-in-out infinite;
}
@keyframes scanMove { 0% { top: 40px; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { top: 410px; opacity: 0; } }
.phone__hud-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--cyan); }
.phone__hud-blink { animation: loaderPulse 1s infinite; color: #22c55e; }
.phone__hud-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.phone__hud-bars span { flex: 1; height: var(--h); background: linear-gradient(180deg, var(--cyan), var(--blue)); border-radius: 2px; opacity: 0.85; animation: barPulse 2.4s ease-in-out infinite; animation-delay: calc(var(--i,0) * 0.1s); }
.phone__hud-bars span:nth-child(odd) { animation-delay: .3s; }
@keyframes barPulse { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.7); } }
.phone__hud-status { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.phone__hud-line { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.55); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 8px; }
.phone__hud-line b { color: #22c55e; font-weight: 500; }
.phone__hud-line b.warn { color: var(--cyan); }

.target { position: absolute; left: 50%; top: 50%; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))); display: flex; align-items: center; gap: 8px; z-index: 5; }
.target__ring { width: 22px; height: 22px; border: 1.5px solid var(--cyan); border-radius: 50%; position: relative; flex-shrink: 0; animation: targetPulse 2.6s ease-in-out infinite; }
.target__ring::before, .target__ring::after { content: ''; position: absolute; background: var(--cyan); }
.target__ring::before { width: 1.5px; height: 8px; left: 50%; top: -6px; transform: translateX(-50%); }
.target__ring::after { width: 8px; height: 1.5px; top: 50%; left: -6px; transform: translateY(-50%); }
@keyframes targetPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(6,182,212,0.35); } 50% { box-shadow: 0 0 0 6px rgba(6,182,212,0); } }
.target__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--cyan); background: rgba(6,182,212,0.06); border: 1px solid rgba(6,182,212,0.2); padding: 4px 8px; border-radius: 6px; backdrop-filter: blur(6px); }
.target--3 .target__label { order: -1; }
.target--3 { flex-direction: row-reverse; }

.tool {
  position: absolute; color: var(--cyan);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 10px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-glow-cyan);
}
.tool--screwdriver { top: 8%; right: -4%; animation: toolFloat 5s ease-in-out infinite; }
.tool--chip { bottom: 14%; left: -8%; color: var(--blue); animation: toolFloat 6.5s ease-in-out infinite 0.6s; }
.tool--battery { top: 40%; left: -12%; animation: toolFloat 5.6s ease-in-out infinite 1.2s; }
@keyframes toolFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(4deg); } }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  z-index: 3;
}
.hero__scroll-dot { animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(8px); opacity: 0; } 61% { transform: translateY(0); opacity: 0; } 100% { opacity: 1; } }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content, .hero__visual { min-width: 0; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { margin-top: 40px; min-height: 420px; overflow: hidden; }
  .phone-rig { transform: scale(0.85); }
}
@media (max-width: 460px) {
  .phone-rig { transform: scale(0.68); }
  .hero__visual { min-height: 330px; margin-top: 24px; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee { background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; gap: 20px; white-space: nowrap; width: max-content; animation: marqueeScroll 28s linear infinite; }
.marquee__track span { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); }
.marquee__track span:nth-child(2n) { color: var(--cyan); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Sections (generic)
   ============================================================ */
.section { position: relative; padding: 120px 0; background: var(--white); overflow: hidden; }
.section--dark { background: var(--black); color: var(--white); }
.section__head { max-width: 640px; margin-bottom: 64px; }
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .section__desc { font-size: 15.5px; }
}
.section__eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--blue); margin-bottom: 18px;
}
.section__eyebrow--light { color: var(--cyan); }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--black); }
.section__title--light { color: var(--white); }
.section__desc { margin-top: 18px; font-size: 16.5px; color: var(--gray-500); line-height: 1.7; }
.section__desc--light { color: rgba(255,255,255,0.6); }

[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Services
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative; display: flex; flex-direction: column; background: var(--gray-light); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: transparent; }
.service-card:active { transform: translateY(-3px) scale(0.98); }

.service-card__photo { position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--gradient-soft); }
.service-card--featured { grid-column: span 2; }
.service-card--featured .service-card__photo { aspect-ratio: 16 / 7; }
.service-card--featured h3 { font-size: 22px; }
.service-card--featured p { font-size: 15.5px; }
@media (max-width: 1080px) { .service-card--featured { grid-column: span 2; } }
@media (max-width: 560px) { .service-card--featured { grid-column: span 1; } .service-card--featured .service-card__photo { aspect-ratio: 4 / 3; } }
.service-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__photo img { transform: scale(1.08); }
.service-card__photo::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,11,11,0.32), transparent 55%);
  pointer-events: none;
}
.service-card__photo--fallback { display: flex; align-items: center; justify-content: center; }
.service-card__photo--fallback svg { width: 30%; height: 30%; color: var(--blue); opacity: .5; }

.service-card__icon {
  position: absolute; z-index: 2; bottom: -22px; left: 22px; width: 52px; height: 52px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center;
  color: var(--blue); box-shadow: 0 8px 20px -6px rgba(11,11,11,0.25);
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-6deg); background: var(--gradient); color: var(--white); }

.service-card__body { position: relative; padding: 38px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--blue); }
.service-card__link svg { transition: transform .3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
.service-card__warranty {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--emerald);
  background: rgba(16,185,129,0.09); border: 1px solid rgba(16,185,129,0.25);
  padding: 5px 11px; border-radius: 100px; margin-bottom: 16px;
}
.service-card__warranty svg { flex-shrink: 0; }

@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   About
   ============================================================ */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about__frame { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(160deg, #14171d, #0a0b0e); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about__frame-glow { position: absolute; width: 260px; height: 260px; background: var(--blue); border-radius: 50%; filter: blur(90px); opacity: 0.3; }
.about__blueprint { width: 55%; position: relative; z-index: 1; }
.about__stat-card {
  position: absolute; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 14px 18px; backdrop-filter: blur(10px); z-index: 2;
  display: flex; flex-direction: column; gap: 2px;
}
.about__stat-card .mono { font-size: 10px; letter-spacing: 0.1em; color: var(--cyan); }
.about__stat-card b { font-family: var(--font-display); font-size: 20px; color: var(--white); }
.about__stat-card--1 { top: 24px; left: 24px; }
.about__stat-card--2 { bottom: 24px; right: 24px; }
.about__content { color: var(--white); }
.about__list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.about__list-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__frame { max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   Why choose us
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  padding: 30px 26px; border-radius: var(--radius-md); background: var(--white);
  border: 1px solid var(--gray-100); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.why-card--feature { background: var(--black); color: var(--white); grid-column: span 1; }
.why-card--feature .why-card__icon { background: var(--gradient); color: var(--white); }
.why-card--feature p { color: rgba(255,255,255,0.6); }
.why-card__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 18px;
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.6; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Process
   ============================================================ */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 20px; }
.process__line { position: absolute; top: 66px; left: 8%; right: 8%; height: 1px; background: rgba(255,255,255,0.12); z-index: 0; }
.process__line-fill { display: block; height: 100%; width: 0%; background: var(--gradient); transition: width 1.6s var(--ease); }
.process__line.is-visible .process__line-fill { width: 100%; }
.process__step { position: relative; z-index: 1; text-align: center; }
.process__num { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.process__icon {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--black-card); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.process__icon svg { width: 30px; height: 30px; }
.process__step:hover .process__icon { transform: translateY(-6px); box-shadow: var(--shadow-glow-cyan); border-color: rgba(6,182,212,0.4); }
.process__step h3 { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.process__step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 220px; margin: 0 auto; }

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .process__line { display: none; }
}
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

/* ============================================================
   Device selection page
   ============================================================ */
.device-hero {
  position: relative; background: var(--black); color: var(--white);
  padding: 150px 0 64px; overflow: hidden;
}
.device-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.device-hero__title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-top: 18px; }
.device-hero__subtitle { margin-top: 18px; font-size: 16.5px; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.7; }

.device-search {
  margin-top: 40px; position: relative; max-width: 480px;
}
.device-search svg {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); pointer-events: none;
}
.device-search input {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px; padding: 16px 20px 16px 52px; color: var(--white); font-size: 15px;
  backdrop-filter: blur(10px); transition: border-color .3s var(--ease), background .3s var(--ease);
}
.device-search input::placeholder { color: rgba(255,255,255,0.4); }
.device-search input:focus { outline: none; border-color: var(--cyan); background: rgba(255,255,255,0.09); }

/* --- Brand select (Step 1) --- */
.brand-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 48px; position: relative; z-index: 2;
}
@media (min-width: 560px) { .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 820px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .brand-grid { grid-template-columns: repeat(5, 1fr); } }

.brand-card {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 28px 16px 24px; border-radius: var(--radius-md); text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); background: rgba(255,255,255,0.07); }
.brand-card:active { transform: translateY(-2px) scale(0.97); }

.brand-card__glyph {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient); color: var(--white); transition: transform .4s var(--ease);
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
}
.brand-card:hover .brand-card__glyph { transform: scale(1.08) rotate(-4deg); }
.brand-card__glyph svg { width: 30px; height: 30px; }
.brand-card__name { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--white); }
.brand-card__desc { font-size: 11.5px; color: rgba(255,255,255,0.45); font-family: var(--font-mono); }

.brand-card--populated { border-color: rgba(6,182,212,0.2); }
.brand-card--populated:hover { box-shadow: var(--shadow-glow-cyan); border-color: rgba(6,182,212,0.4); }
.brand-card__available {
  position: absolute; top: 12px; right: 12px; display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.04em; color: var(--emerald);
}
.brand-card__available span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.5); animation: pulseDot 2s infinite;
}

.brand-card--muted .brand-card__glyph { background: rgba(169,179,193,0.14); color: var(--silver); border: 1px solid rgba(169,179,193,0.25); }
.brand-card--muted .brand-card__name { color: rgba(255,255,255,0.75); }
.brand-card--muted .brand-card__desc { color: var(--silver); }
.brand-card--muted:hover { border-color: rgba(169,179,193,0.35); }

/* --- Global cross-brand search --- */
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 10;
  background: rgba(15,17,21,0.98); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md);
  backdrop-filter: blur(20px); box-shadow: var(--shadow-soft); overflow: hidden; max-height: 360px; overflow-y: auto;
}
.search-result {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 18px; font-size: 14px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .2s var(--ease-soft);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover, .search-result:focus { background: rgba(255,255,255,0.06); }
.search-result__name { font-weight: 600; }
.search-result__brand { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.05em; color: var(--cyan); }
.search-result__empty { padding: 18px; text-align: center; color: rgba(255,255,255,0.4); font-size: 13.5px; }

/* --- Brand direct-request empty state --- */
.brand-empty {
  max-width: 480px; margin: 20px auto 0; text-align: center; padding: 60px 24px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
}
.brand-empty--form { max-width: 640px; padding: 48px 40px; }
.brand-empty--form .booking-form { text-align: left; background: rgba(255,255,255,0.03); padding: 0; border: none; backdrop-filter: none; }
.brand-empty__badge {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 18px; background: rgba(169,179,193,0.12);
  border: 1px solid rgba(169,179,193,0.25); color: var(--silver);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 600;
}
.brand-empty h2 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.brand-empty p { font-size: 14.5px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; }
.brand-empty__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.brand-empty__back { display: inline-block; margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color .25s var(--ease-soft); }
.brand-empty__back:hover { color: var(--cyan); }

@media (max-width: 640px) { .brand-empty--form { padding: 32px 22px; } }

/* --- Shared device-shop chrome (series/category + model grid pages) --- */
.device-shop { position: relative; background: var(--black); color: var(--white); padding: 0 0 100px; overflow: hidden; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,0.4); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color .25s var(--ease-soft); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span[aria-current] { color: var(--cyan); }

.back-btn {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--white);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 100px; padding: 9px 18px 9px 14px;
  margin-bottom: 26px; transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.back-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(6,182,212,0.35); transform: translateX(-2px); }
.back-btn svg { color: var(--cyan); }

.device-model-title { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--white); margin-bottom: 24px; }

/* --- Series / category cards (Step 2) --- */
.series-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.series-card {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; text-align: left;
  padding: 22px 24px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.series-card:hover { transform: translateY(-4px); border-color: rgba(6,182,212,0.35); background: rgba(255,255,255,0.07); box-shadow: var(--shadow-soft); }
.series-card:active { transform: translateY(-1px) scale(0.98); }
.series-card__name { font-family: var(--font-display); font-size: 16px; color: var(--white); display: block; }
.series-card__count { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,0.45); display: block; margin-top: 4px; }
.series-card__arrow {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.series-card:hover .series-card__arrow { background: var(--gradient); color: var(--white); transform: translateX(3px); }

/* --- Model grid (Step 3) --- */
.device-results {
  padding: 12px 0 6px; font-size: 13px; color: rgba(255,255,255,0.4); font-family: var(--font-mono);
}

.device-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px;
}
@media (min-width: 560px) { .device-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 820px) { .device-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
@media (min-width: 1050px) { .device-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1280px) { .device-grid { grid-template-columns: repeat(6, 1fr); } }

.device-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md);
  padding: 14px 12px 16px; backdrop-filter: blur(14px);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.device-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-glow-cyan); border-color: rgba(6,182,212,0.35); background: rgba(255,255,255,0.08); }
.device-card:active { transform: translateY(-2px) scale(0.97); }
.device-card__thumb {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}
.device-card__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.device-card__thumb-fallback {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  background: linear-gradient(145deg, rgba(37,99,235,0.14), rgba(6,182,212,0.10));
}
.device-card__thumb--empty img { display: none; }
.device-card__thumb--empty .device-card__thumb-fallback { display: flex; }
.device-card__name { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--white); }

.device-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: rgba(255,255,255,0.45);
}
.device-empty b { display: block; font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 8px; }

/* --- Selected-device confirmation badge (booking page) --- */
.selected-device {
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.25); border-radius: var(--radius-md);
  padding: 18px 24px; margin-bottom: 28px; max-width: max-content;
}
.selected-device .mono { font-size: 11px; letter-spacing: 0.08em; color: var(--cyan); }
.selected-device dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; margin: 0; }
.selected-device dt { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; }
.selected-device dd { font-size: 14px; color: var(--white); font-weight: 600; margin: 0; }
.selected-device a { align-self: flex-start; font-size: 13px; color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; margin-top: 2px; }

/* --- Booking confirmation panel --- */
.confirmation {
  max-width: 620px; margin: 0 auto 40px; text-align: center; padding: 48px 36px;
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.25); border-radius: var(--radius-lg);
}
.confirmation__icon {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--emerald); color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 8px rgba(16,185,129,0.12);
}
.confirmation__eyebrow { display: block; color: var(--emerald); font-size: 11px; letter-spacing: 0.08em; margin-bottom: 14px; }
.confirmation h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.confirmation > p { font-size: 14.5px; color: rgba(255,255,255,0.6); margin-bottom: 26px; }
.confirmation__summary {
  display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; text-align: left; max-width: 380px; margin: 0 auto 30px;
  padding: 22px 26px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
}
.confirmation__summary dt { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.confirmation__summary dd { font-size: 14px; font-weight: 600; color: var(--white); margin: 0; }
.confirmation__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { position: relative; }
.testimonials__track { display: flex; gap: 24px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.testimonials__track::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 calc(33.333% - 16px); background: var(--black-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 30px 26px; display: flex; flex-direction: column;
}
.testi-card__stars { color: #fbbf24; letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.testi-card p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 24px; flex: 1; }
.testi-card__person { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; color: var(--white); font-weight: 600;
}
.testi-card__person b { display: block; font-size: 14px; color: var(--white); }
.testi-card__person span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 2px; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 36px; }
.testi-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.testi-btn:hover { background: rgba(255,255,255,0.08); transform: scale(1.06); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background .3s var(--ease), transform .3s var(--ease); cursor: pointer; }
.testimonials__dots span.is-active { background: var(--cyan); transform: scale(1.3); }

@media (max-width: 980px) { .testi-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 640px) { .testi-card { flex: 0 0 100%; } }

/* ============================================================
   FAQ Accordion
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion__item { border: 1px solid var(--gray-100); border-radius: var(--radius-sm); overflow: hidden; background: var(--gray-light); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; font-size: 15.5px; font-weight: 600; text-align: left;
}
.accordion__chev { flex-shrink: 0; color: var(--blue); transition: transform .35s var(--ease); }
.accordion__trigger[aria-expanded="true"] .accordion__chev { transform: rotate(180deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), padding .45s var(--ease); padding: 0 24px; }
.accordion__panel p { padding-bottom: 22px; font-size: 14.5px; color: var(--gray-500); line-height: 1.7; }
.accordion__item.is-open .accordion__panel { max-height: 220px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.booking-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px); border-radius: var(--radius-lg); padding: 38px;
  display: flex; flex-direction: column; gap: 18px;
}
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px;
  padding: 13px 15px; color: var(--white); font-size: 14.5px; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field select option { background: var(--black-soft); color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.32); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); background: rgba(255,255,255,0.08); }
.field textarea { resize: vertical; }
.booking-form__note { text-align: center; font-size: 13.5px; color: var(--cyan); min-height: 18px; }
.booking-form__doorstep {
  display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.7);
  background: rgba(6,182,212,0.07); border: 1px solid rgba(6,182,212,0.22);
  padding: 12px 16px; border-radius: 12px; margin-bottom: 16px;
}
.booking-form__doorstep svg { flex-shrink: 0; color: var(--cyan); }
.booking-form__doorstep strong { color: var(--white); }

.contact-side { display: flex; flex-direction: column; gap: 22px; }
.contact-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 220px; border: 1px solid rgba(255,255,255,0.1); }
.contact-map__svg { width: 100%; height: 100%; object-fit: cover; }
.contact-map__pin { position: absolute; top: 50%; left: 51%; transform: translate(-50%,-100%); filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4)); animation: pinBounce 2.4s ease-in-out infinite; }
@keyframes pinBounce { 0%,100% { transform: translate(-50%,-100%); } 50% { transform: translate(-50%,-112%); } }
.contact-map__label { position: absolute; bottom: 14px; left: 14px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.75); background: rgba(0,0,0,0.55); padding: 6px 12px; border-radius: 8px; backdrop-filter: blur(6px); }

.contact-info { display: flex; flex-direction: column; gap: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 26px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__item svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.contact-info__item b { display: block; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.contact-info__item span { display: block; font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .booking-form__row { grid-template-columns: 1fr; }
  .booking-form { padding: 26px; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #08090b; color: rgba(255,255,255,0.6); padding-top: 80px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer__brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.45); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.footer__social a:hover { background: var(--gradient); border-color: transparent; transform: translateY(-3px); }
.footer__col h4 { font-family: var(--font-body); font-size: 13.5px; color: var(--white); letter-spacing: 0.04em; margin-bottom: 20px; text-transform: uppercase; }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color .25s var(--ease-soft); }
.footer__col a:hover { color: var(--cyan); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer__bottom-inner p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color .25s var(--ease-soft); }
.footer__legal a:hover { color: var(--cyan); }

@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } .footer__bottom-inner { flex-direction: column; text-align: center; } }

/* ============================================================
   Floating buttons
   ============================================================ */
.fab-whatsapp {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: #1fae5a; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -8px rgba(31,174,90,0.6); transition: transform .3s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #1fae5a; animation: fabPulse 2.2s ease-out infinite; }
@keyframes fabPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

.fab-call {
  position: fixed; bottom: 96px; right: 28px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%; background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -8px rgba(37,99,235,0.55); transition: transform .3s var(--ease);
}
.fab-call:hover { transform: scale(1.08); }

.fab-top {
  position: fixed; bottom: 164px; right: 28px; z-index: 300;
  width: 46px; height: 46px; border-radius: 50%; background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.fab-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-top:hover { background: var(--gradient); border-color: transparent; }

@media (max-width: 560px) {
  .fab-whatsapp { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .fab-call { width: 52px; height: 52px; bottom: 82px; right: 20px; }
  .fab-top { width: 42px; height: 42px; bottom: 144px; right: 20px; }
}
