/* ── CSS Variables: Neon Bangkok ─────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:          #020610;
  --bg-deep:     #050a14;
  --bg-panel:    #0a1422;
  --bg-card:     rgba(10, 20, 34, 0.92);
  --bg-mid:      #0f1e36;

  /* Aliases для совместимости */
  --navy:        #0a1422;
  --navy-dark:   #020610;
  --navy-mid:    #0f1e36;
  --navy-light:  #162840;

  /* Neon palette */
  --cyan:        #00e5ff;
  --cyan-dim:    rgba(0, 229, 255, 0.12);
  --cyan-glow:   rgba(0, 229, 255, 0.35);
  --amber:       #ffaa00;
  --amber-dim:   rgba(255, 170, 0, 0.10);
  --amber-glow:  rgba(255, 170, 0, 0.4);
  --magenta:     #ff2d78;

  /* Gold aliases */
  --gold:        #ffaa00;
  --gold-light:  #ffcc44;
  --gold-pale:   rgba(255, 170, 0, 0.08);

  /* Text */
  --white:        #ffffff;
  --text:         #b8cce0;
  --text-bright:  #e2f0ff;
  --text-muted:   rgba(184, 204, 224, 0.55);
  --text-dim:     rgba(184, 204, 224, 0.3);

  /* Borders */
  --border:       rgba(0, 229, 255, 0.13);
  --border-warm:  rgba(255, 170, 0, 0.18);

  /* Compat */
  --gray-50:      rgba(0, 229, 255, 0.04);
  --gray-500:     rgba(184, 204, 224, 0.5);
  --bg-card-solid: #0a1422;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.5);
  --shadow-md:   0 4px 28px rgba(0, 0, 0, 0.65);
  --shadow-lg:   0 8px 56px rgba(0, 0, 0, 0.75);

  /* Glow */
  --glow-cyan:   0 0 18px rgba(0, 229, 255, 0.45), 0 0 50px rgba(0, 229, 255, 0.15);
  --glow-amber:  0 0 18px rgba(255, 170, 0, 0.55), 0 0 50px rgba(255, 170, 0, 0.18);
  --glow-sm:     0 0 10px rgba(0, 229, 255, 0.3);

  --radius:      8px;
  --radius-lg:   14px;
  --transition:  0.25s ease;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section     { padding: 80px 0; }
.section-sm  { padding: 48px 0; }

/* ── Section header ──────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { color: var(--text-bright); margin-bottom: 12px; }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.section-header__tag {
  display: inline-block;
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.28);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 16, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.10);
}
.nav.scrolled { border-bottom-color: rgba(0, 229, 255, 0.2); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-bright);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav__logo span {
  color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan);
}
.nav__logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--amber) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.45);
}
.nav__logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav__logo-icon-img {
  width: 32px; height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  padding: 8px 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--cyan);
  background: var(--cyan-dim);
}
.nav__actions  { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__burger   {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
/* Mobile open state */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(2, 6, 16, 0.97);
  backdrop-filter: blur(14px);
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  gap: 0;
  z-index: 99;
}
.nav--open .nav__links a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.06);
  border-radius: 0;
  font-size: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  box-shadow: 0 0 10px var(--amber-dim), inset 0 0 12px var(--amber-dim);
}
.btn-primary:hover {
  background: var(--amber-dim);
  box-shadow: 0 0 22px var(--amber-glow), inset 0 0 18px rgba(255, 170, 0, 0.08);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(184, 204, 224, 0.28);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}

.btn-navy {
  background: rgba(0, 229, 255, 0.07);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.22);
}
.btn-navy:hover {
  background: rgba(0, 229, 255, 0.14);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.28);
}

.btn-sm  { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--bg-deep);
  padding: 108px 0 88px;
  position: relative;
  overflow: hidden;
}
/* Neon grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
/* Amber ambient glow bottom-left */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.07) 0%, transparent 65%);
  bottom: -120px; left: -80px;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.09) 0%, transparent 65%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.hero__content { position: relative; max-width: 700px; z-index: 1; }
.hero__palms {
  position: absolute;
  right: -40px; bottom: -20px;
  width: 480px; height: 580px;
  pointer-events: none;
  opacity: 0.18;
  filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.4));
  animation: palm-float 7s ease-in-out infinite;
}
@media (max-width: 1100px) { .hero__palms { width: 320px; height: 400px; right: -60px; opacity: 0.12; } }
@media (max-width: 768px)  { .hero__palms { display: none; } }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 229, 255, 0.07);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero__title {
  color: var(--text-bright);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--amber);
  text-shadow: 0 0 24px rgba(255, 170, 0, 0.6);
}
.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats   { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 170, 0, 0.55);
}
.hero__stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ── Hero city pills ─────────────────────────────────────────────────────── */
.hero__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero__city-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 13px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.hero__city-pill:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--text-bright);
  border-color: rgba(0, 229, 255, 0.35);
}

/* ── Destinations strip ──────────────────────────────────────────────────── */
.destinations-strip {
  background: var(--bg-panel);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.destinations-strip__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.destinations-strip__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.destinations-strip__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.13);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.city-chip:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: rgba(0, 229, 255, 0.28);
  color: var(--text-bright);
}
.city-chip__dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.8);
  flex-shrink: 0;
}
.city-chip__badge {
  background: rgba(255, 170, 0, 0.1);
  color: var(--amber);
  border: 1px solid rgba(255, 170, 0, 0.22);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Footer telegram block ───────────────────────────────────────────────── */
.footer__tg-block { margin-top: 4px; }
.footer__tg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 100px;
  color: var(--cyan);
  font-size: 0.83rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-bottom: 12px;
}
.footer__tg-link:hover {
  background: rgba(0, 229, 255, 0.12);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}
.footer__tg-note {
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 270px;
}

/* ── Page hero (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  background: var(--bg-panel);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.page-hero--sm { padding: 60px 0; }
.page-hero__inner { position: relative; max-width: 700px; }
.page-hero__inner h1 { color: var(--text-bright); margin-bottom: 16px; }
.page-hero__inner p  { color: var(--text-muted); font-size: 1.1rem; line-height: 1.7; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 16px; position: relative; }
.breadcrumb a       { color: var(--cyan); }
.breadcrumb a:hover { text-shadow: 0 0 8px var(--cyan); }

/* ── Service cards ───────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid rgba(0, 229, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 28px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  color: var(--text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.10), var(--shadow-md);
}
.service-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 2px 0 2px 14px;
  position: relative;
}
.service-card__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--amber), 0 0 18px rgba(255, 170, 0, 0.45);
}
.service-card h3 { color: var(--text-bright); font-size: 1.05rem; margin-bottom: 0; flex: 1; }
.service-card__footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-card__price        { font-size: 0.88rem; color: var(--text-muted); }
.service-card__price strong { color: var(--amber); font-weight: 700; }
.service-card__price small  { font-size: 0.78rem; color: var(--text-muted); }

/* ── Services group ──────────────────────────────────────────────────────── */
.services-group { margin-bottom: 52px; }
.services-group__header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.services-group__header h2 { color: var(--text-bright); margin-bottom: 8px; }
.services-group__header p  { color: var(--text-muted); font-size: 0.95rem; }

/* ── Stats banner ────────────────────────────────────────────────────────── */
.stats-banner {
  background: var(--bg-panel);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stats-banner__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 170, 0, 0.55);
}
.stats-banner__label { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* ── Process steps ───────────────────────────────────────────────────────── */
.process {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.process-step { padding-top: 16px; }
.process-step__num {
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25), inset 0 0 8px rgba(0, 229, 255, 0.06);
  text-shadow: 0 0 8px var(--cyan);
}
.process-step h3 { color: var(--text-bright); margin-bottom: 8px; }
.process-step p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ── Why section ─────────────────────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-item__icon {
  width: 48px; height: 48px;
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--cyan);
}
.why-item__text h3 { color: var(--text-bright); margin-bottom: 6px; }
.why-item__text p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ── CTA section ─────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-panel);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.05) 0%, transparent 65%);
  top: 30%; right: 5%;
  pointer-events: none;
}
.cta-section h2  { color: var(--text-bright); margin-bottom: 16px; position: relative; }
.cta-section p   { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; position: relative; }
.cta-section__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-panel);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer__brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}
.footer__brand span { color: var(--cyan); text-shadow: 0 0 12px var(--cyan); }
.footer__desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--cyan-dim);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.2);
}
.footer__col h4 { color: var(--text-bright); font-size: 0.9rem; margin-bottom: 16px; }
.footer__col ul li + li { margin-top: 8px; }
.footer__col ul a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer__col ul a:hover { color: var(--cyan); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer__bottom {
  border-top: 1px solid rgba(0, 229, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer__bottom a { color: var(--text-dim); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--cyan); }

/* ── About grid ──────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid h2 { color: var(--text-bright); margin: 12px 0 20px; }
.about-grid p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }

/* ── Contacts ────────────────────────────────────────────────────────────── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contacts-grid h2 { color: var(--text-bright); margin-bottom: 10px; }
.contacts-grid > div > p { color: var(--text-muted); margin-bottom: 0; }
.contacts-info { display: flex; flex-direction: column; gap: 20px; padding-top: 20px; }
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-block:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.07);
}
.contact-block__icon {
  width: 44px; height: 44px;
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--cyan);
}
.contact-block strong { display: block; color: var(--text-bright); font-size: 0.85rem; margin-bottom: 4px; }
.contact-block p      { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.contact-block a      { color: var(--cyan); }
.contact-block a:hover { text-shadow: 0 0 8px var(--cyan); }

/* ── Service detail ──────────────────────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.service-detail__main  { display: flex; flex-direction: column; gap: 36px; }
.service-detail__section h2 { color: var(--text-bright); margin-bottom: 16px; font-size: 1.4rem; }
.service-detail__aside { position: sticky; top: 80px; }
.prose { color: var(--text); line-height: 1.8; font-size: 0.98rem; }
.prose p { margin-bottom: 1em; }

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  padding: 12px 16px 12px 44px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  position: relative;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 0 8px var(--cyan);
}

/* Doc list */
.doclist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.doclist li {
  padding: 10px 16px 10px 40px;
  background: rgba(255, 170, 0, 0.04);
  border: 1px solid rgba(255, 170, 0, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
}
.doclist li::before {
  content: '📄';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}
.faq__item:hover { border-color: rgba(0, 229, 255, 0.25); }
.faq__item summary {
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '▾';
  font-size: 0.85rem;
  color: var(--cyan);
  transition: transform 0.3s;
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__item p { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* Aside card */
.aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.aside-card h3     { color: var(--text-bright); margin-bottom: 8px; }
.aside-card > p    { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ── Forms (public) ──────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-bright);
  background: rgba(10, 20, 34, 0.85);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group select {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2300e5ff' d='M8 10.5L2.5 5h11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-panel); color: var(--text-bright); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1), 0 0 14px rgba(0, 229, 255, 0.1);
}
.form-group textarea { resize: none; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-alert {
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 10px 0;
}
.form-alert--success {
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.28);
  color: #00ff88;
}
.form-alert--error {
  background: rgba(255, 45, 120, 0.07);
  border: 1px solid rgba(255, 45, 120, 0.3);
  color: #ff7aab;
}
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-disclaimer a { color: var(--cyan); text-decoration: underline; }

/* ── Prose page (privacy, terms) ─────────────────────────────────────────── */
.prose-page { max-width: 780px; margin: 0 auto; }
.prose-page h2 { color: var(--text-bright); margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.prose-page p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.8em; }
.prose-page ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1em; }
.prose-page ul li { color: var(--text-muted); line-height: 1.7; margin-bottom: 4px; }

/* ── Utility ─────────────────────────────────────────────────────────────── */
.loading  { text-align: center; color: var(--text-muted); padding: 3rem 0; font-size: 0.95rem; }
.empty    { text-align: center; color: var(--text-muted); padding: 3rem 0; font-style: italic; }
.error-msg { text-align: center; color: #ff7aab; padding: 2rem 0; font-size: 0.95rem; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail__aside { position: static; }
}

@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__actions { display: none; }
  .nav__burger  { display: flex; }
  .hero   { padding: 70px 0 52px; }
  .hero__stats { gap: 24px; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}

/* WhatsApp widget styles are injected by /js/whatsapp.js */

/* ── Pricing section ─────────────────────────────────────────────────────── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pricing__grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card__tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--cyan-dim);
  color: var(--cyan);
  align-self: flex-start;
}
.pricing-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
}
.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  font-size: 0.875rem;
  color: var(--text);
  flex: 1;
}
.pricing-card__list li { display: flex; gap: .5rem; }
.pricing-card__footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.pricing-card__price { display: flex; flex-direction: column; gap: .1rem; }
.pricing-card__price-main {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--amber);
}
.pricing-card__price-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pricing-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pricing-card__cta { margin-top: .5rem; text-align: center; }

/* ── Package block ───────────────────────────────────────────────────────── */
.package-section { background: var(--bg-deep); }

.package-block {
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-mid) 100%);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.package-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,170,0,.06) 0%, transparent 60%);
  pointer-events: none;
}
.package-block__label {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid var(--border-warm);
  margin-bottom: 1.5rem;
}
.package-block__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .package-block__inner { grid-template-columns: 1fr; }
  .package-block { padding: 2rem; }
}
.package-block__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.package-block__title em { color: var(--amber); font-style: normal; }
.package-block__desc { color: var(--text); margin-bottom: 1.5rem; }
.package-block__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  font-size: 0.95rem;
  color: var(--text-bright);
}
.package-block__list li { display: flex; align-items: center; gap: .75rem; }
.package-block__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,170,0,.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.package-block__price-box {
  background: var(--bg-deep);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.package-block__price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.package-block__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: .4rem;
}
.package-block__price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.package-block__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}
.package-block__bonus { display: flex; flex-direction: column; gap: .6rem; }
.package-block__bonus-item {
  font-size: 0.9rem;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── FAQ section ─────────────────────────────────────────────────────────── */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) { .faq__grid { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--cyan); }
.faq-item__q {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── Lead form section ───────────────────────────────────────────────────── */
.lead-form-section { background: var(--bg-deep); }

.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .lead-form-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}
.lead-form-contact {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.lead-form-contact:hover { color: var(--white); }
.lead-form-wrap__contacts { display: flex; flex-direction: column; gap: .25rem; }

.lead-form {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lead-form .form-group { display: flex; flex-direction: column; gap: .45rem; }
.lead-form label { font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.lead-form input,
.lead-form select,
.lead-form textarea {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-bright);
  padding: .7rem 1rem;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  width: 100%;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) { .lead-form__row { grid-template-columns: 1fr; } }
.lead-form select option { background: var(--bg-panel); }

/* float-contacts / float-btn removed — WhatsApp widget injected by /js/whatsapp.js */

/* ── Hero Thailand variant ───────────────────────────────────────────────── */
.hero--thailand {
  background: linear-gradient(160deg, #020610 0%, #041020 55%, #060818 100%);
}
/* Lotus / mandala decorative overlay */
.hero__lotus-bg {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 640px;
  height: 640px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255, 170, 0, 0.03) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
}
/* Lotus petal rings via box-shadow */
.hero__lotus-bg::before {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.07);
  box-shadow:
    0 0 0 60px rgba(0, 229, 255, 0.025),
    0 0 0 120px rgba(255, 170, 0, 0.02),
    0 0 0 180px rgba(0, 229, 255, 0.015),
    0 0 0 240px rgba(255, 170, 0, 0.01);
}

/* ── Hero badge dot (pulsing status) ─────────────────────────────────────── */
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.6);
  animation: badge-pulse 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(0, 229, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

/* ── Hero title glow (em inside h1) ──────────────────────────────────────── */
.hero__title-glow {
  font-style: normal;
  color: var(--amber);
  text-shadow:
    0 0 20px rgba(255, 170, 0, 0.7),
    0 0 60px rgba(255, 170, 0, 0.25);
  position: relative;
}

/* ── Hero stat separator ─────────────────────────────────────────────────── */
.hero__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(0, 229, 255, 0.18);
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 600px) { .hero__stat-sep { display: none; } }

/* ── Neon pulse CTA button ───────────────────────────────────────────────── */
.btn--neon-pulse {
  animation: neon-pulse 2.8s ease-in-out infinite;
}
@keyframes neon-pulse {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(255, 170, 0, 0.4),
      0 0 20px rgba(255, 170, 0, 0.15),
      inset 0 0 10px rgba(255, 170, 0, 0.06);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255, 170, 0, 0.65),
      0 0 44px rgba(255, 170, 0, 0.25),
      inset 0 0 18px rgba(255, 170, 0, 0.1);
  }
}

/* ── Trust strip ─────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-panel);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item__icon {
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 640px) {
  .trust-strip__inner { justify-content: flex-start; }
  .trust-item { font-size: 0.82rem; }
}

/* ── Service card icon ───────────────────────────────────────────────────── */
.service-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

/* ── Service card teaser text ────────────────────────────────────────────── */
.service-card__teaser {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 6px;
  flex: 1;
}

/* ── Package pills ───────────────────────────────────────────────────────── */
.package-block__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0.5rem;
}
.package-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(255, 170, 0, 0.08);
  border: 1px solid rgba(255, 170, 0, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-bright);
  transition: all var(--transition);
}
.package-pill:hover {
  background: rgba(255, 170, 0, 0.14);
  border-color: rgba(255, 170, 0, 0.35);
}

/* ── Pricing card hot variant ────────────────────────────────────────────── */
.pricing-card--hot {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.3), 0 0 28px rgba(255, 170, 0, 0.08);
  background: linear-gradient(160deg, var(--bg-panel) 0%, rgba(15, 24, 38, 0.95) 100%);
}
.pricing-card--hot:hover {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), 0 0 36px rgba(255, 170, 0, 0.2), var(--shadow-md);
}
.pricing-card__tag--hot {
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(255, 170, 0, 0.3);
}

/* ── Cursor: default everywhere, pointer only on interactive ── */
body { cursor: default; }
p, h1, h2, h3, h4, h5, h6, span, div, li, td, th,
section, article, header, footer, main, aside,
.section-header, .why-item__text, .pricing-card__desc,
.service-card h3, .hero__subtitle, .faq-item__a { cursor: default; }
a, button, [role="button"], summary, .nav__burger,
.waw-btn, .waw-send, .waw-close, select { cursor: pointer; }
input, textarea { cursor: text; }
details summary { cursor: pointer; }

/* ── Custom neon scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track {
  background: var(--bg, #020610);
  border-left: 1px solid rgba(0, 229, 255, 0.05);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan, #00e5ff) 0%, var(--amber, #ffaa00) 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.55), 0 0 22px rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.25);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--amber, #ffaa00) 0%, var(--cyan, #00e5ff) 100%);
  box-shadow: 0 0 14px rgba(255, 170, 0, 0.7), 0 0 32px rgba(255, 170, 0, 0.28);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--cyan, #00e5ff) var(--bg, #020610);
}

/* ── Form response notice ───────────────────────────────────── */
.form-response-notice {
  margin-top: 1rem;
  padding: 12px 16px;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-response-notice svg { color: var(--cyan); flex-shrink: 0; margin-top: 1px; }
.form-response-notice a { color: var(--cyan); text-decoration: underline; }

/* ── Hero feature strip ─────────────────────────────────────── */
.hero__features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  flex: 1 1 200px;
  transition: border-color 0.25s, background 0.25s;
}
.hero__feature:hover {
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.07);
}
.hero__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.hero__feature strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}
.hero__feature span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ── Service showcase ───────────────────────────────────────── */
.svc-showcase {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 3rem;
}
.svc-showcase__list {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 0.2s;
  border-radius: 10px;
}
.svc-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.svc-item:hover { background: rgba(0, 229, 255, 0.04); }
.svc-item:hover .svc-item__arrow { transform: translateX(5px); color: var(--cyan); }
.svc-item__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  min-width: 24px;
  opacity: 0.8;
}
.svc-item__body { flex: 1; }
.svc-item__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 3px;
  opacity: 0.75;
}
.svc-item__body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.svc-item__arrow {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
  flex-shrink: 0;
}

/* ── Palm deco ──────────────────────────────────────────────── */
.svc-showcase__deco {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 320px;
}
.palm-svg {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.25));
  animation: palm-float 6s ease-in-out infinite;
}
@keyframes palm-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Contact CTA ────────────────────────────────────────────── */
.contact-cta {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(0, 229, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 20px;
  padding: 2.5rem 3rem;
}
.contact-cta__text { flex: 1; }
.contact-cta__text h2 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.contact-cta__text p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 400px;
}
.contact-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
.contact-cta__actions .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  white-space: nowrap;
}

/* ── Responsive: showcase & CTA ────────────────────────────── */
@media (max-width: 900px) {
  .svc-showcase { flex-direction: column; gap: 2rem; }
  .svc-showcase__deco { min-height: 200px; }
  .palm-svg { max-width: 200px; }
  .contact-cta { flex-direction: column; gap: 2rem; padding: 2rem 1.5rem; text-align: center; }
  .contact-cta__text p { max-width: 100%; }
  .contact-cta__actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
  .hero__features { gap: 0.75rem; }
  .hero__feature { flex: 1 1 100%; }
  .svc-item { gap: 0.75rem; padding: 0.9rem 0.5rem; }
  .contact-cta__actions { flex-direction: column; }
}
