/* ============================================================
   VARAMMA PHONE REPAIR — Premium Design System
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #101010;
  --card: #171717;
  --card-2: #141417;
  --orange: #FF4B16;
  --orange-bright: #FF6A1A;
  --orange-warm: #FF9A3D;
  --white: #F5F5F5;
  --muted: #9A9A9A;
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.07);
  --font-head: "Sora", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

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

ul { list-style: none; }

button { font-family: inherit; }

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

::selection { background: rgba(255, 75, 22, 0.85); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2b2b30; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ---------- Shared elements ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange-warm);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-warm), var(--orange));
  box-shadow: 0 0 12px rgba(255, 75, 22, 0.8);
}

.grad-text {
  background: linear-gradient(120deg, var(--orange-warm) 0%, var(--orange) 60%, var(--orange-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange);
}

h1, h2, h3, h4, .stat-number {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

section { position: relative; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head .eyebrow { margin-bottom: 18px; }

.section-sub {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }

.btn:hover svg { transform: translateX(4px); }

.btn-lg { padding: 17px 32px; font-size: 15px; }

.btn-sm { padding: 10px 20px; font-size: 13.5px; }

.btn-primary {
  background: linear-gradient(120deg, var(--orange-bright), var(--orange));
  color: #fff;
  box-shadow: 0 8px 28px -6px rgba(255, 75, 22, 0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px -6px rgba(255, 75, 22, 0.75), 0 0 0 1px rgba(255, 154, 61, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255, 106, 26, 0.6);
  color: var(--orange-warm);
  transform: translateY(-2px);
  background: rgba(255, 75, 22, 0.06);
}

.btn-whatsapp {
  margin-top: 18px;
  width: 100%;
  background: #0d1f16;
  border-color: rgba(37, 211, 102, 0.35);
  color: #25D366;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.4);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: rgba(5, 5, 5, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 8, 9, 0.82);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-mark svg { width: 100%; height: 100%; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-text strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text strong span { color: var(--orange); }

.brand-text small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav ul a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 10px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.main-nav ul a:hover { color: var(--white); }

.main-nav ul a.active {
  color: var(--orange-warm);
  background: rgba(255, 75, 22, 0.09);
}

.nav-cta { padding: 12px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--orange); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--orange); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  z-index: 998;
}

.menu-overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 640px; height: 640px;
  top: -160px; right: -140px;
  background: radial-gradient(circle, rgba(255, 75, 22, 0.32), rgba(255, 75, 22, 0) 65%);
  animation: glowFloat 9s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 520px; height: 520px;
  bottom: -200px; left: -160px;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.2), rgba(255, 106, 26, 0) 65%);
  animation: glowFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes glowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(40px, 30px, 0) scale(1.12); }
}

.hero-grid {
  position: absolute;
  inset: 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: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 60% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 60% 40%, #000 30%, transparent 75%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  font-weight: 800;
  margin: 22px 0 26px;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
}

.hero-call svg { width: 16px; height: 16px; color: var(--orange); }

.hero-call strong { color: var(--white); font-weight: 600; }

.hero-call:hover { color: var(--orange-warm); }

/* Hero visual */

.hero-visual { position: relative; }

.hero-visual-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 106, 26, 0.25);
  pointer-events: none;
  animation: ringSpin 40s linear infinite;
}

.visual-ring-1 { width: 560px; height: 560px; }
.visual-ring-2 { width: 440px; height: 440px; animation-direction: reverse; animation-duration: 30s; border-style: solid; border-color: rgba(255, 106, 26, 0.12); }

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

.device-svg {
  width: min(340px, 68vw);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65));
  animation: deviceFloat 6s ease-in-out infinite alternate;
}

@keyframes deviceFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-14px); }
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  background: rgba(20, 20, 23, 0.82);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.8);
  animation: chipFloat 5s ease-in-out infinite alternate;
}

.floating-chip svg { width: 15px; height: 15px; }

.chip-1 { top: 16%; left: 2%; animation-delay: 0.4s; }
.chip-2 { bottom: 20%; right: 0%; animation-delay: 1.1s; }
.chip-3 { top: 47%; left: -4%; animation-delay: 1.8s; }

@keyframes chipFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}

.visual-stat {
  position: absolute;
  background: rgba(20, 20, 23, 0.88);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.85);
}

.visual-stat-a { bottom: 4%; left: -2%; min-width: 150px; }
.visual-stat-a strong { font-family: var(--font-head); font-size: 22px; color: var(--orange-warm); display: block; }
.visual-stat-a span { font-size: 12px; color: var(--muted); }

.visual-stat-b {
  top: 8%; right: 0%;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 rgba(255, 75, 22, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 75, 22, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 75, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 75, 22, 0); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  margin: 6px auto 0;
  border-radius: 3px;
  background: var(--orange);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ---------- Stats ---------- */

.stats {
  position: relative;
  padding: 0 0 110px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  position: relative;
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 26, 0.45);
  box-shadow: 0 22px 60px -22px rgba(255, 75, 22, 0.35);
}

.stat-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-warm), var(--orange));
  opacity: 0;
  transition: opacity 0.4s;
  animation: statLine 1.4s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes statLine { to { opacity: 0.85; } }

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(120deg, #fff, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-card p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.stats-note {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #555;
}

/* ---------- Featured ---------- */

.featured {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg), #0a0a0c 50%, var(--bg));
  position: relative;
  overflow: hidden;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.featured-media { position: relative; }

.featured-media-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.featured-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 75, 22, 0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cracked-phone {
  width: min(400px, 70vw);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.7));
  animation: deviceFloat 7s ease-in-out infinite alternate;
}

.featured-screw {
  position: absolute;
  width: 38px;
  height: 38px;
  padding: 8px;
  background: rgba(16, 16, 19, 0.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  z-index: 2;
}

.featured-screw svg { width: 100%; height: 100%; }

.screw-1 { top: 12%; left: 14%; }
.screw-2 { bottom: 14%; right: 12%; }

.featured-chip {
  position: absolute;
  bottom: 6%;
  left: 4%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(16, 16, 19, 0.88);
  border: 1px solid rgba(255, 75, 22, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 44px -14px rgba(0, 0, 0, 0.8);
}

.featured-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin: 20px 0 22px;
}

.featured-copy p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

/* ---------- Services ---------- */

.services { padding: 110px 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 26, 0.5);
  box-shadow: 0 30px 70px -28px rgba(255, 75, 22, 0.4), 0 0 0 1px rgba(255, 106, 26, 0.12);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 75, 22, 0.1);
  border: 1px solid rgba(255, 106, 26, 0.28);
  color: var(--orange);
  margin-bottom: 22px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-icon svg { width: 24px; height: 24px; }

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 10px 26px -8px rgba(255, 75, 22, 0.6);
}

.service-card h3 {
  font-size: 18.5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--orange-warm);
  transition: gap 0.3s var(--ease), color 0.3s;
}

.card-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }

.card-link:hover { color: var(--orange-bright); }
.card-link:hover svg { transform: translateX(4px); }

.service-note {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

/* ---------- About ---------- */

.about { padding: 110px 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.about-media { position: relative; }

.about-media-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.about-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 45% 40%, rgba(255, 75, 22, 0.2), transparent 68%);
  filter: blur(40px);
  pointer-events: none;
}

.about-tech {
  width: min(430px, 74vw);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.7));
  animation: deviceFloat 8s ease-in-out infinite alternate-reverse;
}

.about-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(16, 16, 19, 0.88);
  border: 1px solid var(--border);
  border-radius: 11px;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px -14px rgba(0, 0, 0, 0.8);
}

.chip-top { top: 10%; right: 4%; }

.chip-bottom { bottom: 8%; left: 6%; }
.chip-bottom svg { width: 15px; height: 15px; color: var(--orange-warm); }

.about-copy h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

.about-h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  margin: 12px 0 18px;
  color: var(--orange-warm);
}

.about-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 520px;
}

.trust-list { display: grid; gap: 16px; max-width: 520px; }

.trust-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.trust-list li:hover {
  border-color: rgba(255, 106, 26, 0.4);
  transform: translateX(6px);
}

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255, 75, 22, 0.12);
  border: 1px solid rgba(255, 106, 26, 0.3);
  color: var(--orange);
}

.trust-icon svg { width: 19px; height: 19px; }

.trust-list h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 3px; }
.trust-list p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Why ---------- */

.why {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg), #0b0b0d);
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(255, 75, 22, 0.1), transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.why-card {
  position: relative;
  background: linear-gradient(170deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 26, 0.5);
  box-shadow: 0 28px 64px -26px rgba(255, 75, 22, 0.4);
}

.why-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.14);
}

.why-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255, 75, 22, 0.1);
  border: 1px solid rgba(255, 106, 26, 0.28);
  color: var(--orange);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}

.why-icon svg { width: 23px; height: 23px; }

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #fff;
  transform: rotate(6deg) scale(1.05);
}

.why-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 9px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---------- Process ---------- */

.process { padding: 110px 0; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 28px;
  margin-bottom: 48px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(170deg, var(--card), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 26, 0.5);
  box-shadow: 0 26px 60px -26px rgba(255, 75, 22, 0.35);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--orange-warm);
  background: rgba(255, 75, 22, 0.1);
  border: 1px solid rgba(255, 106, 26, 0.35);
  box-shadow: 0 0 26px -6px rgba(255, 75, 22, 0.4);
  margin-bottom: 22px;
}

.process-step h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 260px; margin: 0 auto; }

.process-line { align-self: center; }

.process-line span {
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  position: relative;
}

.process-line span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-bright);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 106, 26, 0.9);
}

.process-cta { text-align: center; }

/* ---------- Devices ---------- */

.devices { padding: 110px 0; background: linear-gradient(180deg, var(--bg), #0a0a0c); }

.device-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px 24px;
  background: linear-gradient(165deg, var(--card), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.device-card svg {
  width: 30px;
  height: 30px;
  color: var(--muted);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.device-card span { font-size: 13.5px; font-weight: 600; color: var(--white); }

.device-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 26, 0.5);
  background: linear-gradient(165deg, #1b1b1f, #121214);
  box-shadow: 0 22px 52px -24px rgba(255, 75, 22, 0.4);
}

.device-card:hover svg {
  color: var(--orange);
  transform: scale(1.12);
}

.device-note {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

/* ---------- Booking ---------- */

.booking {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.booking-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 460px;
  background: radial-gradient(ellipse at center, rgba(255, 75, 22, 0.14), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.booking-head { text-align: center; max-width: 640px; margin: 0 auto 52px; position: relative; }
.booking-head .eyebrow { margin-bottom: 16px; }
.booking-head h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 16px; }
.booking-head p { color: var(--muted); font-size: 16px; }

.booking-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 28px;
}

.booking-form {
  background: linear-gradient(170deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-field { margin-bottom: 18px; }

.form-row .form-field { margin-bottom: 0; }

.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--white);
  background: #0d0d0f;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' fill='none'%3E%3Cpath d='M1 1l6 8 6-8' stroke='%239A9A9A' stroke-width='1.6' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #555; }

.form-field textarea { resize: vertical; min-height: 110px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 106, 26, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 75, 22, 0.16), 0 0 24px -10px rgba(255, 106, 26, 0.45);
  background: #101013;
}

input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }

.form-field input.invalid { border-color: #e5484d; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #7BF0A3;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.booking-aside { display: grid; gap: 20px; align-content: start; }

.aside-card {
  background: linear-gradient(170deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.aside-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 9px;
}

.aside-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }

.aside-card ul { display: grid; gap: 10px; }

.aside-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
}

.aside-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.25s;
}

.aside-link svg { width: 17px; height: 17px; color: var(--orange); }

.aside-link:hover { color: var(--orange-warm); }

/* ---------- Testimonials ---------- */

.testimonials { padding: 110px 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(165deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 26, 0.45);
  box-shadow: 0 26px 60px -26px rgba(255, 75, 22, 0.35);
}

.quote-mark {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-head);
  font-size: 76px;
  line-height: 1;
  color: rgba(255, 75, 22, 0.14);
  font-weight: 800;
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--orange-warm);
  margin-bottom: 16px;
}

.stars svg { width: 16px; height: 16px; }

.quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.9);
  margin-bottom: 24px;
}

.customer {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 8px 20px -8px rgba(255, 75, 22, 0.6);
}

.avatar-b { background: linear-gradient(135deg, #3a3a40, #232326); }
.avatar-c { background: linear-gradient(135deg, #5b1e08, #33150a); }

.customer strong { display: block; font-size: 14px; font-weight: 600; }
.customer span { font-size: 12.5px; color: var(--muted); }

/* ---------- FAQs ---------- */

.faqs { padding: 110px 0; background: linear-gradient(180deg, var(--bg), #0a0a0c 60%, var(--bg)); }

.section-head-left { text-align: left; margin-left: 0; margin-right: 0; }

.faqs-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.accordion { display: grid; gap: 14px; }

.accordion-item {
  background: linear-gradient(170deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.accordion-item.open {
  border-color: rgba(255, 106, 26, 0.5);
  box-shadow: 0 16px 44px -22px rgba(255, 75, 22, 0.35);
}

.accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color 0.25s;
}

.accordion-head:hover { color: var(--orange-warm); }

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 75, 22, 0.12);
  border: 1px solid rgba(255, 106, 26, 0.3);
  color: var(--orange);
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s;
}

.accordion-icon svg { width: 14px; height: 14px; }

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #fff;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.accordion-content {
  padding: 0 22px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg { position: absolute; inset: 0; }

.final-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }

.final-glow-1 {
  width: 640px; height: 640px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 75, 22, 0.28), transparent 65%);
  animation: glowFloat 10s ease-in-out infinite alternate;
}

.final-glow-2 {
  width: 480px; height: 480px;
  bottom: -260px; left: 8%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.16), transparent 65%);
  animation: glowFloat 13s ease-in-out infinite alternate-reverse;
}

.final-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 75%);
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta h2 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.final-cta p {
  margin-top: 22px;
  font-size: 17px;
  color: var(--muted);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* ---------- Contact ---------- */

.contact { padding: 120px 0 110px; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: grid; gap: 16px; }

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: linear-gradient(165deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.info-card:hover { border-color: rgba(255, 106, 26, 0.45); transform: translateX(6px); }

.info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 75, 22, 0.1);
  border: 1px solid rgba(255, 106, 26, 0.3);
  color: var(--orange);
}

.info-icon svg { width: 20px; height: 20px; }

.info-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.info-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.info-sub { font-size: 12.5px !important; color: #666 !important; margin-top: 4px; }

.info-main {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  transition: color 0.25s;
}

.info-main:hover { color: var(--orange-warm); }

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-warm);
  transition: color 0.25s;
}

.info-link svg { width: 13px; height: 13px; }

.info-link:hover { color: var(--orange-bright); }

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(165deg, var(--card), #121214);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.social-row a svg { width: 19px; height: 19px; }

.social-row a:hover {
  color: var(--orange);
  transform: translateY(-4px);
  border-color: rgba(255, 106, 26, 0.5);
  box-shadow: 0 14px 34px -16px rgba(255, 75, 22, 0.5);
}

.contact-right { display: grid; gap: 20px; }

.map-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  min-height: 240px;
  padding: 40px 24px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 75, 22, 0.12), transparent 60%),
    linear-gradient(165deg, #151518, #0b0b0d);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.map-placeholder svg { width: 40px; height: 40px; color: var(--orange); opacity: 0.85; }

.map-placeholder strong { font-family: var(--font-head); font-size: 16px; }
.map-placeholder span { font-size: 13.5px; color: var(--muted); }

.map-placeholder .btn { position: relative; z-index: 1; }

.contact-form {
  background: linear-gradient(170deg, var(--card), #121214);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.contact-form .form-row { margin-bottom: 18px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #080809, #050505);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand-mark .brand-text strong { font-size: 16px; }

.footer-brand > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-tagline {
  color: var(--orange-warm) !important;
  font-weight: 600;
  font-size: 13.5px !important;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s, padding-left 0.25s var(--ease);
}

.footer-col a:hover { color: var(--orange-warm); padding-left: 5px; }

.footer-contact li:nth-child(4) {
  font-size: 14px;
  color: var(--muted);
}

.social-row-footer { margin-top: 22px; }

.social-row-footer a { width: 40px; height: 40px; }
.social-row-footer a svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  color: #666;
}

.footer-legal { display: flex; gap: 14px; }
.footer-legal a { color: #666; transition: color 0.25s; }
.footer-legal a:hover { color: var(--orange-warm); }

/* ---------- Floating WhatsApp ---------- */

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2be06f, #1ebe5d);
  color: #fff;
  box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.6), 0 0 0 6px rgba(37, 211, 102, 0.1);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: pulseFloat 3s infinite;
}

.whatsapp-float svg { width: 26px; height: 26px; }

.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); }

@keyframes pulseFloat {
  0%, 100% { box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.6), 0 0 0 6px rgba(37, 211, 102, 0.1); }
  50% { box-shadow: 0 14px 40px -10px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal.reveal-1 { transition-delay: 0.1s; }
.reveal.reveal-2 { transition-delay: 0.2s; }
.reveal.reveal-3 { transition-delay: 0.3s; }
.reveal.reveal-4 { transition-delay: 0.4s; }

.reveal.in-view { opacity: 1; transform: none; }

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

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1200px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .device-grid { grid-template-columns: repeat(4, 1fr); }
  .visual-ring-1 { width: 480px; height: 480px; }
  .visual-ring-2 { width: 380px; height: 380px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-copy p { margin: 0 auto; }
  .hero-actions, .hero-call { justify-content: center; }
  .hero-call { display: flex; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .visual-ring-1 { width: 520px; height: 520px; }
  .visual-ring-2 { width: 410px; height: 410px; }

  .featured-inner, .about-inner, .faqs-inner { grid-template-columns: 1fr; gap: 48px; }

  .booking-panel { grid-template-columns: 1fr; }
  .booking-aside { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-line { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 108px 30px 40px;
    background: rgba(8, 8, 9, 0.98);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 999;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }

  .main-nav ul a { padding: 12px 10px; font-size: 16px; width: 100%; }

  .nav-cta { width: 100%; justify-content: center; margin-top: 10px; }

  .hero { padding-top: 130px; }

  .stats { padding: 0 0 90px; }
  .featured, .services, .about, .why, .process, .devices, .booking, .testimonials, .faqs, .final-cta, .contact { padding: 90px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .service-grid { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr 1fr; }

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

  .testimonial-grid { grid-template-columns: 1fr; }

  .section-head { margin-bottom: 48px; }

  .visual-stat-a { left: 0; }
  .visual-stat-b { right: 0; }
  .chip-1 { left: 0; }
  .chip-3 { left: 0; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form, .contact-form { padding: 26px 22px; }
  .booking-aside { grid-template-columns: 1fr; }

  .final-cta { padding: 120px 0; }
}

@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-grid { gap: 12px; }

  .hero-copy h1 { font-size: 2.5rem; }

  .floating-chip { font-size: 11px; padding: 8px 12px; }
  .chip-1 { top: 6%; }
  .chip-2 { bottom: 14%; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }

  .hero-scroll { display: none; }

  .brand-text small { display: none; }

  .container { padding: 0 20px; }
}