:root {
  --navy-950: #0f1f2d;
  --navy-900: #1a2d3d;
  --navy-800: #2d4357;
  --navy-700: #50657a;
  --teal-500: #d4af37;
  --teal-600: #b9922d;
  --sky-500: #f5f0e8;
  --slate-100: #fffdfb;
  --slate-200: #f7f1e8;
  --slate-300: #e9e1d6;
  --slate-500: #8a7c69;
  --slate-700: #4b433b;
  --slate-800: #2d2b2a;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(15, 31, 45, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;

  --topbar-bg: #0f1f2d;
  --topbar-text: #f5f0e8;
  --nav-bg: rgba(255, 255, 255, 0.9);
  --nav-text: #1a2d3d;
  --nav-border: rgba(15, 31, 45, 0.08);
  --page-bg: #ffffff;
  --hero-top: #ffffff;
  --hero-mid: #f8f4ee;
  --hero-bottom: #ffffff;
  --hero-glow-1: rgba(212, 175, 55, 0.12);
  --hero-glow-2: rgba(15, 31, 45, 0.06);
  --button-primary-from: #d4af37;
  --button-primary-mid: #d4af37;
  --button-primary-to: #d4af37;
  --button-primary-text: #0f1f2d;
  --chip-bg: rgba(15, 31, 45, 0.03);
  --chip-border: rgba(15, 31, 45, 0.08);
  --icon-badge-from: rgba(44, 212, 197, 0.16);
  --icon-badge-to: rgba(110, 200, 255, 0.18);
}

body[data-theme="emerald"] {
  --navy-950: #061d1a;
  --navy-900: #0b312d;
  --navy-800: #13453f;
  --navy-700: #165c54;
  --teal-500: #68f0bc;
  --teal-600: #2ac99d;
  --sky-500: #8ee7d7;
  --slate-100: #f1fff9;
  --slate-200: #d8f9ee;
  --slate-300: #b9ebdc;
  --slate-500: #4a7369;
  --slate-700: #1f4a43;
  --slate-800: #123e38;
  --topbar-bg: #071d1b;
  --topbar-text: rgba(232, 255, 247, 0.82);
  --nav-bg: rgba(8, 29, 27, 0.9);
  --nav-text: rgba(229, 255, 246, 0.88);
  --nav-border: rgba(255, 255, 255, 0.08);
  --page-bg: linear-gradient(180deg, #f4fff9 0%, #ebfaf5 100%);
  --hero-top: #051f1d;
  --hero-mid: #0f3332;
  --hero-bottom: #effff8;
  --hero-glow-1: rgba(74, 224, 184, 0.28);
  --hero-glow-2: rgba(82, 142, 255, 0.16);
  --button-primary-from: #d4ffc8;
  --button-primary-mid: #8be9bb;
  --button-primary-to: #30b58a;
  --button-primary-text: #0d241d;
  --chip-bg: rgba(7, 38, 33, 0.05);
  --chip-border: rgba(7, 38, 33, 0.08);
  --icon-badge-from: rgba(104, 240, 188, 0.2);
  --icon-badge-to: rgba(142, 231, 215, 0.22);
}

body[data-theme="charcoal"] {
  --navy-950: #0b0d12;
  --navy-900: #171b22;
  --navy-800: #212b35;
  --navy-700: #2c3d4e;
  --teal-500: #e3b96c;
  --teal-600: #c99542;
  --sky-500: #dfe9f4;
  --slate-100: #f5f6f7;
  --slate-200: #e8edf3;
  --slate-300: #ced7e1;
  --slate-500: #687682;
  --slate-700: #3a4756;
  --slate-800: #1d2a35;
  --topbar-bg: #090c11;
  --topbar-text: rgba(255, 255, 255, 0.8);
  --nav-bg: rgba(15, 17, 20, 0.9);
  --nav-text: rgba(248, 249, 250, 0.88);
  --nav-border: rgba(255, 255, 255, 0.06);
  --page-bg: linear-gradient(180deg, #f7f4f1 0%, #eef2f7 100%);
  --hero-top: #0d1218;
  --hero-mid: #1a2230;
  --hero-bottom: #f7fafe;
  --hero-glow-1: rgba(240, 176, 84, 0.28);
  --hero-glow-2: rgba(255, 255, 255, 0.12);
  --button-primary-from: #e8c786;
  --button-primary-mid: #f7deab;
  --button-primary-to: #b27d2b;
  --button-primary-text: #171313;
  --chip-bg: rgba(16, 20, 25, 0.05);
  --chip-border: rgba(16, 20, 25, 0.08);
  --icon-badge-from: rgba(227, 185, 108, 0.2);
  --icon-badge-to: rgba(223, 233, 244, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--page-bg);
  color: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
}

.topbar-inner p {
  margin: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

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

.site-nav {
  font-family: "Poppins", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.1;
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  background: transparent;
}

.brand-wordmark {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--navy-950);
  line-height: 1;
}

.brand-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  min-height: 56px;
  line-height: 0;
  flex-shrink: 0;
  margin-right: 0;
}

.footer-brand .brand-logo {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy-900);
  margin-left: 0.2rem;
  padding-left: 0;
}

.nav-menu a {
  transition: color 0.2s ease;
  color: var(--navy-900);
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.08);
  margin-right: 0.25rem;
}

.theme-button {
  border: 0;
  background: transparent;
  color: var(--navy-900);
  border-radius: 999px;
  padding: 0.5rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-button.is-active {
  background: #ffffff;
  color: var(--navy-950);
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-item > a .caret {
  font-size: 0.8rem;
  opacity: 0.8;
}

.nav-menu a {
  transition: color 0.2s ease;
  color: var(--navy-900);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #d4af37;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 290px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.9rem 1.1rem;
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 500;
  border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(15, 23, 42, 0.03);
  border-left-color: var(--teal-600);
  color: var(--navy-900);
}

.page-shell {
  padding: 28px 0 110px;
}

.page-shell-banner {
  position: relative;
  z-index: 2;
  padding: 18px 0 0;
}

.page-shell-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(13, 29, 46, 0.08);
  background: linear-gradient(135deg, rgba(13, 22, 35, 0.96), rgba(20, 35, 54, 0.96));
  box-shadow: 0 18px 34px rgba(13, 22, 35, 0.12);
  overflow: hidden;
  color: var(--white);
}

.banner-image-wrap {
  display: block;
}

.page-shell-banner-image {
  display: block;
  width: 100%;
  height: clamp(180px, 20vw, 420px);
  object-fit: cover;
  border-radius: 24px;
}

.banner-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 179, 104, 0.4);
  color: #f5d98d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banner-copy strong {
  display: inline-block;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.banner-call {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.banner-btn {
  padding: 0.72rem 1.2rem !important;
  font-size: 0.9rem !important;
}

.page-hero {
  padding: 44px 0 30px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.page-tag {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(26, 43, 69, 0.06);
  border: 1px solid rgba(26, 43, 69, 0.08);
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-title {
  margin: 1rem 0 0.8rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-intro {
  margin: 0;
  color: var(--slate-700);
  font-size: 1.05rem;
}

.page-hero-card,
.content-card,
.side-card,
.contact-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.04);
}

.page-hero-card {
  padding: 1.5rem;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  margin-top: 28px;
}

.content-card,
.side-card,
.contact-card {
  padding: 1.6rem 1.5rem;
}

.content-card h2,
.side-card h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.content-card p,
.content-card li,
.side-card p,
.contact-card p,
.contact-card li {
  color: var(--slate-700);
}

.inline-list,
.check-list-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.inline-list li,
.check-list-list li {
  position: relative;
  padding-left: 1.4rem;
}

.inline-list li::before,
.check-list-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-600);
  font-weight: 800;
}

.metrics-grid,
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 1rem;
}

.metric-box,
.service-mini {
  background: linear-gradient(180deg, #ffffff 0%, #eff9ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 18px;
  padding: 1rem;
}

.metric-box strong,
.service-mini strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.section-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 1.5rem 0;
}

.contact-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-links a {
  color: var(--navy-900);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding-bottom: 64px;
}

.contact-form-card,
.contact-info-panel .info-panel-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.04);
}

.contact-form-card {
  padding: 2rem;
}

.contact-form-card h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 2.7rem);
  letter-spacing: -0.05em;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.25rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.5rem;
  color: var(--navy-900);
  font-size: 0.93rem;
  font-weight: 600;
}

.field span {
  color: var(--navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--navy-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(198, 157, 87, 0.75);
  box-shadow: 0 0 0 4px rgba(198, 157, 87, 0.12);
}

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

.contact-submit {
  width: fit-content;
  margin-top: 0.4rem;
}

.form-status {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status-success {
  color: #1c7c4d;
}

.form-status-error {
  color: #b3261e;
}

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

.info-panel-box {
  padding: 1.5rem;
}

.car-photo-box {
  padding: 0;
  overflow: hidden;
}

.car-photo {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.car-photo-caption {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--slate-700);
}

.info-panel-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
  color: var(--slate-700);
}

.detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--slate-500);
}

.contact-list a,
.contact-list span {
  color: var(--navy-900);
  font-weight: 700;
}

.accent-box {
  background: linear-gradient(180deg, rgba(244, 202, 104, 0.12), rgba(255, 255, 255, 0.9));
}

@media (max-width: 760px) {
  .contact-layout,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 1.2rem;
  }
  .page-hero-inner,
  .page-grid,
  .metrics-grid,
  .card-grid-3 {
    grid-template-columns: 1fr;
  }

}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px auto;
  border-radius: 10px;
}

.nav-whatsapp {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: #0a7d63;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-whatsapp-icon {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.button-small {
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
}

.button-primary {
  padding: 1rem 1.5rem;
  background: #d4af37;
  color: #0f1f2d;
  box-shadow: none;
  border: 1px solid #d4af37;
}

.button-primary:hover {
  background: #c79b2e;
  color: #0f1f2d;
  border-color: #c79b2e;
}

.button-secondary {
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--navy-900);
  border: 1px solid rgba(23, 26, 32, 0.9);
}

.button-secondary:hover {
  background: #0f1f2d;
  color: #ffffff;
  border-color: #0f1f2d;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f4ee 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.03);
  color: var(--navy-900);
  border: 1px solid rgba(17, 24, 39, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  color: var(--navy-900);
  max-width: 640px;
}

.hero-copy h1 {
  margin: 1.1rem 0 1rem;
  font-size: clamp(2.8rem, 4.2vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.hero-copy h1 .h1-brand {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.32em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
}

.hero-copy p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 560px;
  color: var(--slate-800);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero .button-secondary {
  background: #ffffff;
  border: 1px solid rgba(23, 26, 32, 0.9);
  color: var(--navy-900);
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--navy-900);
  font-size: 0.96rem;
  font-weight: 600;
}

.trust-list li {
  position: relative;
  padding-left: 1.1rem;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 6px rgba(44, 212, 197, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-image-box {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1.08;
  border-radius: 28px;
  background: linear-gradient(135deg, #f5f8fb 0%, #eef2f7 100%);
  border: 1px solid rgba(17, 24, 39, 0.05);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% 10% 10% 14%;
  background: linear-gradient(135deg, rgba(62, 106, 225, 0.06), rgba(17, 24, 39, 0.02));
  border: 1px solid rgba(17, 24, 39, 0.04);
  border-radius: 30px;
  transform: rotate(-6deg);
}

.hero-image-box::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 106, 225, 0.12), rgba(62, 106, 225, 0));
  top: 9%;
  left: 16%;
}

.car-illustration {
  position: relative;
  width: 72%;
  height: 62%;
  display: grid;
  place-items: center;
  transform: translateY(18px);
}

.car-body {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px 40px 45px 45px;
  background: linear-gradient(135deg, #d9f4ff 0%, #5bc4f9 50%, #0c2f59 100%);
  box-shadow: inset 0 12px 26px rgba(255, 255, 255, 0.35), 0 24px 36px rgba(7, 17, 31, 0.16);
  transform: rotate(-2deg);
}

.window {
  position: absolute;
  top: 18%;
  width: 26%;
  height: 24%;
  background: rgba(232, 246, 255, 0.9);
  border-radius: 16px;
}

.window-front {
  right: 15%;
}

.window-back {
  left: 15%;
}

.light {
  position: absolute;
  bottom: 18%;
  width: 12%;
  height: 8%;
  border-radius: 8px;
  background: #fff7d6;
  box-shadow: 0 0 25px rgba(255, 246, 160, 0.9);
}

.light-front {
  right: 12%;
}

.wheel {
  position: absolute;
  bottom: -12%;
  width: 16%;
  height: 28%;
  background: #1e2a38;
  border-radius: 50%;
  border: 12px solid #dfe2e7;
}

.wheel-front {
  right: 14%;
}

.wheel-back {
  left: 14%;
}

.stats-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  color: var(--navy-900);
}

.stats-card strong {
  font-size: 1.5rem;
}

.stats-card span {
  font-size: 0.8rem;
  color: var(--slate-700);
}

.stats-card-top {
  right: 2%;
  top: 10%;
}

.stats-card-bottom {
  left: 2%;
  bottom: 8%;
}

.mini-badge {
  position: absolute;
  right: 12%;
  bottom: 14%;
  background: rgba(10, 19, 32, 0.96);
  color: var(--white);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.mini-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.mini-badge small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.8;
}

.feature-band {
  padding: 1.5rem 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: -28px;
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 35, 49, 0.08);
  box-shadow: 0 18px 32px rgba(8, 23, 35, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--icon-badge-from), var(--icon-badge-to));
  color: var(--navy-900);
  margin-bottom: 1rem;
}

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

.trust-band {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  padding: 2.2rem 0;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-stat {
  position: relative;
}

.trust-stat + .trust-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.trust-stat strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--teal-500);
}

.trust-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.home-google-card {
  max-width: 380px;
  margin: 0 auto 2rem;
  padding: 1.8rem 1.5rem;
}

.feature-grid h3,
.service-card h3,
.price-card h3,
.review-card strong,
.footer-contact h3,
.footer-cta h3 {
  margin: 0 0 0.4rem;
}

.feature-grid p,
.service-card p,
.review-card p,
.site-footer p,
.footer-contact li,
.section-copy p,
.app-copy p,
.info-card h3,
.faq-list p {
  margin: 0;
  color: var(--slate-800);
}

.section {
  padding: 110px 0;
}

.muted-section {
  background: rgba(17, 29, 44, 0.02);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.section-copy .eyebrow,
.section-heading .eyebrow {
  background: rgba(44, 212, 197, 0.12);
  color: var(--navy-800);
  border-color: rgba(44, 212, 197, 0.14);
}

.section-copy h2,
.section-heading h2,
.app-copy h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  color: var(--navy-900);
  text-wrap: balance;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.faq-whatsapp {
  display: inline-block;
  margin-top: 1.4rem;
}

.faq-side-list {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-lead {
  max-width: 640px;
  margin: 0 auto 2.2rem;
  text-align: center;
  color: var(--slate-700);
}

.included-heading {
  text-align: center;
  margin-top: 3rem;
}

.included-heading h3 {
  margin: 0;
}

.check-list.centered {
  justify-content: center;
  margin-top: 1.2rem;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--navy-800);
  font-weight: 600;
}

.coverage-map-panel {
  margin-top: 1.5rem;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.map-header strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--slate-700);
}

.coverage-map-wrap {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.coverage-map {
  position: relative;
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #edf5ff 0%, #f7fbff 100%);
}

.leeds-map {
  display: block;
  width: 100%;
  height: 320px;
}

.map-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 26px;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 31, 45, 0.92);
  border: 2px solid rgba(212, 175, 115, 0.9);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.map-marker::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(19, 34, 56, 0.92);
  border-right: 2px solid rgba(212, 175, 115, 0.95);
  border-bottom: 2px solid rgba(212, 175, 115, 0.95);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #f7d680 0%, #d7a93b 100%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(9, 18, 28, 0.16);
  overflow: hidden;
  max-width: min(86vw, 260px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(9, 18, 28, 0.2);
}

.whatsapp-icon-wrap {
  width: 66px;
  min-width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #7ae1b3 0%, #28b76d 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-text {
  padding: 0.72rem 0.9rem 0.72rem 0.72rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0d1724;
  font-size: 0.88rem;
  text-align: left;
}

.whatsapp-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 0.2rem;
}

.coverage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-700);
}

.legend-dot {
  display: inline-block;
  margin-right: 0.35rem;
  color: #193a5c;
  font-size: 1.2rem;
  line-height: 1;
}

.legend-dot.alt {
  color: #b78940;
}

.info-panel {
  display: grid;
  gap: 1.2rem;
}

.info-card {
  background: linear-gradient(135deg, #ffffff 0%, #eff8ff 100%);
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 34px rgba(9, 20, 33, 0.08);
  border: 1px solid rgba(13, 20, 28, 0.04);
}

.info-card.accent {
  background: linear-gradient(135deg, var(--navy-900) 0%, #18314f 100%);
  color: var(--white);
}

.info-card.accent p,
.info-card.accent h3 {
  color: var(--white);
}

.label {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 700;
}

.info-card h3 {
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--navy-900);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--icon-badge-from), var(--icon-badge-to));
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy-900);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
}

.small-lead {
  margin: 0 0 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.area-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.1rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.04);
}

.area-card-topline {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(194, 159, 84, 0.14);
  color: var(--navy-900);
  padding: 0.35rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.area-card p {
  margin: 0;
  color: var(--slate-700);
}

.area-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-900);
  font-weight: 700;
}

.area-link::after {
  content: "→";
  color: #a2792a;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.05);
  padding: 1.7rem 1.4rem;
}

.price-card.featured {
  border: 1px solid rgba(178, 136, 63, 0.42);
  transform: translateY(-10px);
  background: linear-gradient(180deg, #fffdf7 0%, #f7f2e4 100%);
}

.popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #d9bb69, #f2d48d 36%, #a2792a 100%);
  color: #171717;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.price-top {
  margin-bottom: 1rem;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(194, 159, 84, 0.14);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 2vw, 2.7rem);
  letter-spacing: -0.06em;
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--slate-500);
  letter-spacing: 0;
}

.price-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  color: var(--slate-700);
}

.price-card li {
  position: relative;
  padding-left: 1.4rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-600);
  font-weight: 800;
}

.story-showcase {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.story-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.story-track {
  position: relative;
  min-height: 560px;
}

.story-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.story-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.story-image {
  position: relative;
  background: #dfeaf8;
}

.story-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  padding: 1rem 1rem 1.6rem;
  background: linear-gradient(135deg, #f4e7be 0%, #f7f2e4 18%, #0b1729 18%, #0b1729 100%);
  border-radius: 0;
  overflow: hidden;
}

.story-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  pointer-events: none;
}

.story-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  display: block;
}

.story-photo-label {
  position: absolute;
  top: 32px;
  right: -84px;
  width: 280px;
  padding: 0.55rem 0;
  background: var(--navy-950);
  border-top: 2px solid rgba(214, 176, 88, 0.96);
  border-bottom: 2px solid rgba(214, 176, 88, 0.96);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 14px 26px rgba(8, 24, 35, 0.32);
  transform: rotate(45deg);
  z-index: 3;
  white-space: normal;
}

.story-photo-label span {
  display: block;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: none;
  margin-top: 0.12rem;
  color: #f7e7b3;
}

.story-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 2rem 2.2rem 2.5rem;
}

.story-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(194, 159, 84, 0.12);
  color: var(--navy-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-content h3 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--navy-900);
}

.story-content > p {
  margin: 0;
  color: var(--slate-700);
  font-size: 1.02rem;
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.story-meta strong,
.story-meta span {
  display: block;
}

.story-meta strong {
  color: var(--navy-900);
  font-size: 1.1rem;
}

.story-meta span {
  color: var(--slate-500);
  font-size: 0.9rem;
}

.story-result {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(44, 212, 197, 0.12);
  color: var(--navy-900);
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.story-content blockquote {
  margin: 1.5rem 0 0;
  padding: 1.1rem 1.2rem;
  background: rgba(15, 23, 42, 0.03);
  border-left: 4px solid rgba(194, 159, 84, 0.8);
  border-radius: 0 18px 18px 0;
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.5;
}

.story-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-900);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 16px 24px rgba(15, 23, 42, 0.06);
}

.story-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.story-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.story-dot.is-active {
  background: linear-gradient(135deg, #d9bb69, #a2792a);
  transform: scale(1.15);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.25rem;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.04);
}

.stars {
  color: #f5b843;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.google-reviews-card {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem;
}

.google-reviews-card .stars {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.google-reviews-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.6rem;
}

.google-reviews-card p {
  color: var(--slate-700);
  margin-bottom: 1.3rem;
}

.review-card p {
  margin-bottom: 1rem;
}

.app-section {
  background: linear-gradient(135deg, #0d1730 0%, #112d49 100%);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.app-copy {
  color: var(--white);
}

.app-copy .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.1);
}

.app-copy h2,
.app-copy p {
  color: var(--white);
}

.phone-mockup {
  display: grid;
  place-items: center;
}

.screen {
  width: min(320px, 100%);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(9, 18, 28, 0.92) 0%, rgba(17, 34, 49, 0.96) 100%);
  padding: 1.2rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 48px rgba(0, 0, 0, 0.25);
}

.screen-header {
  width: 38%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 auto 1rem;
}

.lesson-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.9rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.green { background: #3ad5b3; }
.dot.blue { background: #7bc9ff; }
.dot.amber { background: #f3c55d; }

.lesson-item strong,
.lesson-item small {
  display: block;
  color: #fff;
}

.lesson-item small {
  color: rgba(255, 255, 255, 0.7);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.03);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy-900);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.site-footer {
  background: #07111f;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 4rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #d4af37;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 32px;
  padding-bottom: 2.5rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-logo {
  height: 48px;
  width: auto;
}

.footer-brand .brand-text {
  color: var(--white);
}

.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-cta {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 2rem;
}

@media (max-width: 980px) {
  .nav-inner {
    gap: 4px;
  }

  .nav-menu {
    gap: 0.6rem;
  }

  .hero-grid,
  .split-layout,
  .app-grid,
  .faq-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .four-col,
  .review-grid,
  .pricing-grid,
  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 760px) {
  .story-carousel {
    grid-template-columns: 1fr;
  }

  .story-arrow {
    display: none;
  }

  .story-track {
    min-height: 420px;
  }

  .story-slide {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 360px;
  }

  .story-photo-frame {
    padding: 0.7rem 0.7rem 1.1rem;
  }

  .story-photo-label {
    top: 20px;
    right: -70px;
    width: 220px;
    padding: 0.42rem 0;
    font-size: 0.48rem;
    letter-spacing: 0.08em;
    transform: rotate(45deg);
  }

  .story-photo-label span {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .story-badge {
    left: 12px;
    bottom: 12px;
    font-size: 0.62rem;
  }

  .story-content {
    padding: 1.3rem 1rem 1.5rem;
  }

  .story-content h3 {
    font-size: 2rem;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-luxury {
    height: 48px;
    min-height: 48px;
  }

  .nav-toggle {
    display: block;
    width: 46px;
    height: 46px;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: var(--white);
    border: 0;
    border-top: 2px solid var(--navy-950);
    border-radius: 0;
    box-shadow: var(--shadow);
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .nav-item > a {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 1.2rem;
  }

  .nav-menu.open {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    background: rgba(15, 23, 42, 0.02);
    border: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-item.has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    color: var(--navy-900);
    padding: 0.8rem 1.2rem;
    background: transparent;
    border-left: none;
  }

  .dropdown-menu a:hover {
    background: rgba(15, 23, 42, 0.04);
    border-left-color: transparent;
  }

  .nav-whatsapp {
    display: inline-flex;
  }

  .whatsapp-float {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
    padding: 0.7rem 0;
    flex-direction: column;
    text-align: center;
  }

  .topbar-actions {
    justify-content: center;
  }

  .feature-grid,
  .four-col,
  .review-grid,
  .pricing-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    letter-spacing: -0.05em;
  }

  .hero-visual {
    min-height: 430px;
  }

  .stats-card {
    transform: scale(0.9);
  }

  .trust-band-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .trust-stat + .trust-stat::before {
    left: 50%;
    top: 0;
    bottom: auto;
    width: 32px;
    height: 1px;
    transform: translateX(-50%);
  }
}
