:root {
  --bg: #06090f;
  --bg-strong: #0c1630;
  --surface: rgba(9, 19, 41, 0.8);
  --surface-strong: rgba(17, 34, 69, 0.96);
  --text: #f6f8ff;
  --muted: #b2c3de;
  --line: rgba(151, 187, 255, 0.18);
  --brand: #ff5a1f;
  --brand-dark: #ff3d1b;
  --brand-bright: #ffd33f;
  --accent: #27a8ff;
  --accent-deep: #153b97;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 211, 63, 0.16), transparent 22%),
    radial-gradient(circle at 18% 24%, rgba(255, 90, 31, 0.24), transparent 26%),
    radial-gradient(circle at 82% 32%, rgba(39, 168, 255, 0.24), transparent 28%),
    linear-gradient(180deg, #07090d 0%, #091225 42%, #102b79 100%);
}

img {
  max-width: 100%;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-shell {
  overflow: clip;
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(151, 187, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 187, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 88%);
}

.site-shell::after {
  content: "";
  position: absolute;
  top: 6rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 168, 255, 0.22), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.9rem 0;
  transition: background-color 180ms ease, backdrop-filter 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(4, 9, 18, 0.7);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.brand-logo {
  width: 4.4rem;
  height: 4.4rem;
  flex: 0 0 4.4rem;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: rgba(5, 9, 18, 0.75);
  padding: 0.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  border: 1px solid rgba(151, 187, 255, 0.12);
  border-radius: 999px;
  background: rgba(9, 19, 41, 0.42);
  backdrop-filter: blur(12px);
}

.site-nav a:not(.button) {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--brand-bright));
  box-shadow: 0 16px 32px rgba(255, 90, 31, 0.28);
  color: #0e0a07;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(255, 90, 31, 0.34);
}

.button-sm {
  min-height: 2.6rem;
  padding-inline: 1rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid rgba(151, 187, 255, 0.2);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.8fr);
  gap: 2.5rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-card h2,
.cta-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
  font-weight: 700;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.85rem, 6vw, 5.3rem);
  font-weight: 680;
}

.accent-text {
  background: linear-gradient(135deg, #ffcf52, #ff7a30 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading p,
.split-card p,
.contact-copy p,
.service-card p,
.review-card p,
.checklist p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 1.3rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.stat-card {
  position: relative;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.hero-stats span,
.contact-details span,
.footer-inner p,
.panel-kicker,
.panel-band span {
  color: var(--muted);
}

.hero-card {
  position: relative;
  padding-bottom: 2.5rem;
}

.hero-panel,
.plan-card,
.split-card,
.review-card,
.contact-form,
.cta-card {
  border: 1px solid rgba(151, 187, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  padding: 2.1rem 2.1rem 5.8rem;
  background:
    radial-gradient(circle at top, rgba(255, 211, 63, 0.28), transparent 30%),
    linear-gradient(155deg, rgba(255, 61, 27, 0.98), rgba(255, 147, 35, 0.95) 44%, rgba(20, 56, 149, 0.94) 100%);
  color: #fef8f2;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
}

.hero-panel h2 {
  margin: 0.5rem 0 0;
  position: relative;
  z-index: 1;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.04;
  font-weight: 700;
}

.panel-list {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

.panel-band {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.panel-band span,
.trust-items span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 239, 0.85);
  font-size: 0.9rem;
}

.floating-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(8, 19, 44, 0.98), rgba(18, 61, 157, 0.98));
  border: 1px solid rgba(151, 187, 255, 0.16);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  width: max-content;
  max-width: min(100%, 22rem);
}

.floating-card p {
  margin: 0;
  color: rgba(246, 248, 255, 0.8);
}

.floating-card strong {
  display: block;
  margin-top: 0.35rem;
}

.trust-bar {
  padding-bottom: 1rem;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-items span {
  background: rgba(9, 19, 41, 0.7);
  color: var(--text);
  border: 1px solid rgba(151, 187, 255, 0.12);
}

.section {
  padding: 5rem 0;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 12% 0;
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.16), rgba(39, 168, 255, 0.16));
  transform: skewY(-4deg);
  z-index: -1;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.split-card h2,
.cta-card h2,
.contact-copy h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.3rem);
}

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

.service-card {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(9, 19, 41, 0.58);
  border: 1px solid rgba(151, 187, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 31, 0.5);
  background: rgba(11, 24, 52, 0.74);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-card h3,
.plan-header p {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.plan-layout,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.plan-card {
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.plan-header strong {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
}

.plan-header strong span {
  font-size: 1rem;
  color: var(--muted);
}

.plan-card ul {
  padding-left: 1.1rem;
  line-height: 2;
  margin: 1.5rem 0;
}

.split-card {
  padding: 2rem;
}

.checklist {
  display: grid;
  gap: 1rem;
}

.checklist div {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(9, 19, 41, 0.58);
  border: 1px solid rgba(151, 187, 255, 0.12);
}

.checklist strong {
  display: block;
  margin-bottom: 0.35rem;
}

.review-card {
  margin: 0;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface);
}

.review-card footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.reviews-widget {
  margin-top: 1.75rem;
  border: 1px solid rgba(151, 187, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reviews-widget iframe {
  display: block;
  width: 100%;
  min-height: 1000px;
  border: 0;
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(151, 187, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow);
}

.reviews-cta p {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-page-hero {
  padding-top: 8rem;
  padding-bottom: 2rem;
}

.reviews-page-intro {
  max-width: 52rem;
}

.reviews-page-intro h1 {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.reviews-page-section {
  padding-top: 1rem;
}

.reviews-page-shell {
  border: 1px solid rgba(151, 187, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.reviews-page-shell iframe {
  display: block;
  width: 100%;
  min-height: 1200px;
  border: 0;
}

.cta-section {
  padding-top: 1rem;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(10, 22, 48, 0.95), rgba(18, 61, 157, 0.95));
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--surface);
}

.booking-card {
  align-content: start;
}

.booking-card h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.booking-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(151, 187, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(178, 195, 222, 0.7);
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(151, 187, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border: 1px solid rgba(151, 187, 255, 0.14);
  border-radius: 14px;
  background: rgba(9, 19, 41, 0.82);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: #f6f8ff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .plan-layout,
  .split-grid,
  .contact-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-card {
    margin-top: 1rem;
    padding-bottom: 0;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .cta-card,
  .footer-inner,
  .reviews-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-page-shell iframe {
    min-height: 1000px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand-logo {
    width: 3.8rem;
    height: 3.8rem;
    flex-basis: 3.8rem;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-copy span {
    font-size: 0.8rem;
  }

  .header-inner {
    align-items: flex-start;
  }

  .brand {
    max-width: calc(100% - 4.25rem);
  }

  .site-header {
    padding: 0.8rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(151, 187, 255, 0.12);
    border-radius: 20px;
    background: rgba(7, 13, 26, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .button-ghost,
  .plan-card .button,
  .cta-card .button,
  .booking-card .button,
  .booking-card .button-ghost,
  .reviews-cta .button {
    width: 100%;
  }

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

  .section {
    padding: 4rem 0;
  }

  .reviews-page-hero {
    padding-top: 6.5rem;
  }

  .reviews-page-intro h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .reviews-page-shell iframe {
    min-height: 880px;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 3.4rem;
    height: 3.4rem;
    flex-basis: 3.4rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
  }

  .site-nav {
    left: 0.625rem;
    right: 0.625rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-panel,
  .split-card,
  .plan-card,
  .review-card,
  .contact-form,
  .cta-card,
  .reviews-cta,
  .reviews-page-shell {
    border-radius: 22px;
  }

  .hero-panel {
    padding: 1.6rem 1.35rem 4.9rem;
  }

  .service-card,
  .checklist div,
  .review-card,
  .plan-card,
  .contact-form,
  .cta-card {
    padding: 1.2rem;
  }

  .booking-card h3 {
    font-size: 1.4rem;
  }

  .floating-card {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }

  .footer-inner {
    gap: 0.5rem;
  }
}
