/* =============================================
   Relax Solutions — Premium Revamp 2026
   ============================================= */

:root {
  --bg-dark: #030712;
  --bg-dark-2: #0a0f1a;
  --bg-card: #111827;
  --bg-elevated: #1a2332;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --cyan: #22d3ee;
  --cyan-dim: #06b6d4;
  --cyan-glow: rgba(34, 211, 238, 0.25);
  --cyan-soft: rgba(34, 211, 238, 0.08);
  --green: #34d399;
  --gold: #fbbf24;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-h: 76px;
  --topbar-h: 40px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 10px 18px; background: var(--cyan); color: var(--bg-dark);
  font-weight: 600; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%; max-width: 1240px;
  margin: 0 auto; padding: 0 24px;
}

/* ---- Topbar ---- */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  height: var(--topbar-h);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}

.topbar__badge {
  display: flex; align-items: center; gap: 6px;
  color: var(--gold); font-weight: 500;
}

.topbar__phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--cyan);
  transition: opacity 0.2s;
}
.topbar__phone:hover { opacity: 0.85; }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s var(--ease);
}

.header--scrolled {
  background: rgba(3, 7, 18, 0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.nav {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}

.nav__logo {
  display: flex; align-items: center;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.nav__logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.nav__logo img {
  height: 32px; width: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex; align-items: center; gap: 36px;
}

.nav__menu a:not(.btn) {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  position: relative;
}

.nav__menu a:not(.btn)::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--cyan); transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav__menu a:not(.btn):hover { color: var(--white); }
.nav__menu a:not(.btn):hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- 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: 12px 24px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--sm { padding: 9px 20px; font-size: 14px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dim) 100%);
  color: var(--bg-dark); border-color: transparent;
  box-shadow: 0 4px 24px var(--cyan-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.4);
}

.btn--glass {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white); color: var(--bg-dark);
  border-color: var(--white);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.btn--outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan-dim); margin-bottom: 16px;
}
.eyebrow--light { color: var(--cyan); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--bg-dark);
}
.section__title--light { color: var(--white); }

.section__desc {
  font-size: 17px; color: var(--gray-500);
  max-width: 560px; margin-top: 16px; line-height: 1.7;
}

.section__header { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__desc { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #a5f3fc 50%, var(--cyan-dim) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section { padding: 100px 0; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));
  background: var(--bg-dark);
  color: var(--white);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero__ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5;
  animation: float 12s ease-in-out infinite;
  transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
}
.orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  top: -10%; right: -5%; animation-delay: 0s;
}
.orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  bottom: 10%; left: -10%; animation-delay: -4s; opacity: 0.3;
}
.orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--cyan-dim) 0%, transparent 70%);
  top: 40%; left: 30%; animation-delay: -8s; opacity: 0.25;
}

@keyframes float {
  0%, 100% { transform: translate(var(--parallax-x, 0px), var(--parallax-y, 0px)) scale(1); }
  33% { transform: translate(calc(var(--parallax-x, 0px) + 30px), calc(var(--parallax-y, 0px) - 20px)) scale(1.05); }
  66% { transform: translate(calc(var(--parallax-x, 0px) - 20px), calc(var(--parallax-y, 0px) + 20px)) scale(0.95); }
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

.hero__inner {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 64px; align-items: center;
  padding-top: 72px; padding-bottom: 48px;
  position: relative; z-index: 1;
}

.hero__brand {
  margin-bottom: 28px;
}
.hero__brand img {
  height: auto;
  width: min(320px, 100%);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 520px; margin-bottom: 36px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex; align-items: center; gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em;
}
.hero__stat span {
  font-size: 12px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero__stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Monitor mockup */
.hero__visual {
  position: relative;
  overflow: visible;
  padding: 24px 16px;
}

.monitor { position: relative; z-index: 1; }

.monitor__bezel {
  background: linear-gradient(145deg, #1a2332 0%, #0d1117 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 32px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(34, 211, 238, 0.08);
}

.monitor__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: rgba(255,255,255,0.5);
}
.monitor__bar span {
  width: 10px; height: 10px; border-radius: 50%;
}
.monitor__bar span:nth-child(1) { background: #ef4444; }
.monitor__bar span:nth-child(2) { background: #f59e0b; }
.monitor__bar span:nth-child(3) { background: #22c55e; }
.monitor__bar em { flex: 1; font-style: normal; margin-left: 8px; }

.monitor__live {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  color: var(--green); letter-spacing: 0.1em;
}
.monitor__live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}

.monitor__body { padding: 12px; }

.cam-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px; height: 220px;
}

.cam-feed {
  position: relative; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.cam-feed--main { grid-row: span 2; }

.cam-feed::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(34,211,238,0.08) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px);
}

.cam-feed__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 10px;
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  z-index: 1;
}
.cam-feed__overlay .rec { color: #ef4444; font-size: 9px; }

.cam-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.4;
  animation: scan 4s linear infinite;
}
@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}

.monitor__footer {
  display: flex; gap: 16px; margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.monitor__metric {
  flex: 1; text-align: center;
  padding: 8px; background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
.monitor__metric span {
  display: block; font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.monitor__metric strong {
  font-family: var(--font-display);
  font-size: 18px; color: var(--cyan);
}

.monitor__glow {
  position: absolute; inset: -20%;
  background: radial-gradient(ellipse, var(--cyan-glow) 0%, transparent 60%);
  z-index: -1; pointer-events: none;
}

.float-card {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.float-card--1 { top: 0; right: 0; }
.float-card--2 { bottom: 8px; left: 0; }

.float-card__inner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  animation: floatCard 5s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.float-card--2 .float-card__inner { animation-delay: -2.5s; }

.float-card__inner strong {
  display: block; font-size: 13px; font-weight: 600; color: var(--white);
}
.float-card__inner span { font-size: 11px; color: rgba(255,255,255,0.5); }

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

/* Marquee */
.hero__marquee {
  position: relative; z-index: 1;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
  overflow: hidden;
}

.marquee__track {
  display: flex; gap: 32px; align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.marquee__track span:nth-child(even) { color: var(--cyan); opacity: 0.5; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fade-up {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Services Bento ---- */
.section--services { background: var(--gray-50); }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border-color: rgba(34, 211, 238, 0.3);
}

.bento__card--featured {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--white);
  border-color: rgba(255,255,255,0.08);
}
.bento__card--featured h3 { color: var(--white); }
.bento__card--featured p { color: rgba(255,255,255,0.55); }
.bento__card--featured .bento__icon {
  background: var(--cyan-soft);
  color: var(--cyan);
  border-color: rgba(34,211,238,0.2);
}
.bento__card--featured .bento__link { color: var(--cyan); }

.bento__glow {
  position: absolute; bottom: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  pointer-events: none;
}

.bento__card--wide { grid-column: span 2; }

.bento__row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}

.bento__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cyan-soft);
  color: var(--cyan-dim);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.bento__card:hover .bento__icon {
  background: var(--cyan);
  color: var(--bg-dark);
  transform: scale(1.05);
}
.bento__card--featured:hover .bento__icon {
  background: var(--cyan); color: var(--bg-dark);
}

.bento__card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-bottom: 10px; color: var(--bg-dark);
}

.bento__card p {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.65;
}

.bento__link {
  display: inline-block; margin-top: 20px;
  font-size: 14px; font-weight: 600;
  color: var(--cyan-dim);
  transition: gap 0.2s;
}
.bento__link:hover { color: var(--cyan); }

/* ---- Why Us ---- */
.section--why {
  background: var(--bg-dark);
  color: var(--white);
  position: relative; overflow: hidden;
}

.section--why::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, var(--cyan-glow) 0%, transparent 60%);
  pointer-events: none;
}

.why__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

.why__text {
  font-size: 17px; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin: 20px 0 32px;
}

.why__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.why-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(34,211,238,0.25);
  transform: translateY(-4px);
}

.why-card__num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: rgba(34,211,238,0.2);
  line-height: 1; margin-bottom: 12px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ---- Process ---- */
.section--process { background: var(--white); }

.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}

.process__line {
  position: absolute; top: 28px;
  left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dim), var(--gray-200));
  z-index: 0;
}

.process__step {
  text-align: center; position: relative; z-index: 1;
}

.process__dot {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--cyan-dim);
  box-shadow: 0 0 0 8px var(--gray-50);
  transition: all 0.3s;
}
.process__step:hover .process__dot {
  background: var(--cyan); color: var(--bg-dark);
  box-shadow: 0 0 0 8px var(--cyan-soft), 0 8px 24px var(--cyan-glow);
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px;
}
.process__step p {
  font-size: 14px; color: var(--gray-500); line-height: 1.6;
}

/* ---- Areas ---- */
.section--areas {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.areas-grid {
  display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: center;
}

.area-tag {
  padding: 12px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px; font-weight: 600;
  color: var(--gray-600);
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.area-tag:hover {
  background: var(--bg-dark); color: var(--white);
  border-color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ---- Testimonials ---- */
.section--testimonials { background: var(--white); }

.testimonial-slider {
  max-width: 720px; margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex; transition: transform 0.5s var(--ease-out);
}

.testimonial {
  min-width: 100%;
  padding: 48px 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  text-align: center;
}

.testimonial__stars {
  color: var(--gold); font-size: 18px;
  letter-spacing: 4px; margin-bottom: 24px;
}

.testimonial p {
  font-size: 18px; line-height: 1.75;
  color: var(--gray-600); font-style: italic;
  margin-bottom: 32px;
}

.testimonial footer {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
}

.testimonial__avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
}

.testimonial cite {
  display: block; font-style: normal;
  font-weight: 700; font-size: 15px;
}
.testimonial footer span {
  font-size: 13px; color: var(--gray-400);
}

.testimonial-nav {
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  margin-top: 28px;
}

.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 18px; cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-600);
}
.testimonial-btn:hover {
  background: var(--bg-dark); color: var(--white);
  border-color: var(--bg-dark);
}

.testimonial-dots {
  display: flex; gap: 8px;
}
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--gray-200);
  cursor: pointer; padding: 0;
  transition: all 0.3s;
}
.testimonial-dots button.active {
  background: var(--cyan-dim); width: 24px; border-radius: 4px;
}

/* ---- CTA Band ---- */
.cta-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0f172a 50%, var(--bg-dark-2) 100%);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--cyan-glow) 0%, transparent 50%);
}

.cta-band__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  position: relative; z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.cta-band p { color: rgba(255,255,255,0.55); font-size: 16px; }

.cta-band__actions {
  display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0;
}

/* ---- Contact ---- */
.section--contact { background: var(--gray-50); }

.contact__grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 64px; align-items: start;
}

.contact__desc {
  font-size: 16px; color: var(--gray-500);
  margin: 16px 0 36px; line-height: 1.7;
}

.contact__details { display: flex; flex-direction: column; gap: 20px; }

.contact__item {
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.2s;
}
a.contact__item:hover { transform: translateX(4px); }

.contact__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--cyan-soft);
  color: var(--cyan-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}

.contact__item strong {
  display: block; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gray-400); margin-bottom: 4px;
}
.contact__item span { font-size: 15px; color: var(--bg-dark); font-weight: 500; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.04);
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--gray-600); margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--bg-dark);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan-dim);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--cyan-soft);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}

.checkbox {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-600);
  cursor: pointer; padding: 8px 12px;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.checkbox:has(input:checked) {
  background: var(--cyan-soft);
  border-color: rgba(34,211,238,0.2);
  color: var(--bg-dark);
}
.checkbox input { accent-color: var(--cyan-dim); }

.form-note {
  text-align: center; font-size: 13px;
  color: var(--gray-400); margin-top: 16px;
}

.form-success {
  text-align: center; padding: 48px 24px;
}
.form-success svg { margin: 0 auto 20px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px; margin-bottom: 8px;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.55);
  padding-top: 64px;
}

.footer__inner {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: 64px; padding-bottom: 48px;
}

.footer__brand img {
  height: auto; width: 180px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer__brand p { font-size: 14px; line-height: 1.65; max-width: 280px; }

.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.footer__cols h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}

.footer__cols li { margin-bottom: 10px; font-size: 14px; }
.footer__cols a { transition: color 0.2s; }
.footer__cols a:hover { color: var(--cyan); }

.footer__bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.footer__badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__badges span {
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; max-width: 540px; margin: 0 auto; width: 100%; padding: 20px 8px; }
  .float-card--1 { top: -4px; right: 4px; }
  .float-card--2 { bottom: 4px; left: 4px; }

  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--featured { grid-row: span 1; }
  .bento__card--wide { grid-column: span 2; }

  .why__grid { grid-template-columns: 1fr; gap: 48px; }
  .process { grid-template-columns: 1fr 1fr; }
  .process__line { display: none; }

  .contact__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar__badge { display: none; }
  :root { --header-h: 68px; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: calc(var(--topbar-h) + var(--header-h));
    left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    flex-direction: column; align-items: stretch;
    padding: 32px 24px; gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }
  .nav__menu.active { transform: translateX(0); }
  .nav__menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__menu a { display: block; padding: 16px 0; font-size: 16px; color: rgba(255,255,255,0.8) !important; }
  .nav__menu .btn { margin-top: 16px; text-align: center; }

  .section { padding: 72px 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .bento__row { flex-direction: column; align-items: flex-start; }

  .why__cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer__cols { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__brand img { width: min(260px, 90vw); }
  .nav__logo img { height: 28px; }
  .nav__logo { padding: 6px 12px; }
  .testimonial { padding: 32px 24px; }
  .testimonial p { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .float-card__inner { animation: none; }
}
