:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-alt: #eef6ff;
  --text: #10223a;
  --muted: #4e6480;
  --brand: #cb1f3d;
  --brand-2: #0ea5e9;
  --ok: #0f9d58;
  --shadow: 0 12px 28px rgba(16, 34, 58, 0.1);
  --radius: 16px;
  --container: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbff 0%, #f2f8ff 100%);
  line-height: 1.5;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); line-height: 1.15; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.2; }
h3 { font-size: clamp(1.05rem, 2.4vw, 1.25rem); line-height: 1.25; }

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--brand-2);
  outline-offset: 2px;
}

img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #d7e7f8;
}

.container {
  width: min(var(--container), calc(100% - 2rem - env(safe-area-inset-left) - env(safe-area-inset-right)));
  margin: 0 auto;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--text);
}

.logo-image {
  height: 34px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #f97316);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: var(--text);
  font-weight: 600;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--surface-alt);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  text-align: center;
  min-height: 44px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #f97316);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid #c5d9ef;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(203, 31, 61, 0.28);
}

.btn-secondary:hover {
  border-color: #9fc4e9;
  box-shadow: 0 8px 18px rgba(16, 34, 58, 0.08);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-card {
  background: radial-gradient(circle at top right, #dff3ff, #ffffff 50%);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #d7e7f8;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-main p {
  max-width: 68ch;
}

.hero-main h1 {
  margin: 0.55rem 0 0.85rem;
  max-width: 20ch;
}

.hero-main > p {
  margin: 0.6rem 0;
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 1px solid #c8def6;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: 0 10px 22px rgba(16, 34, 58, 0.09);
}

.hero-panel h3 {
  margin-top: 0;
}

.hero-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.hero-list li {
  margin: 0.4rem 0;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.action-row-center {
  justify-content: center;
}

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

.hero-proof-item {
  background: #ffffff;
  border: 1px solid #d7e7f8;
  border-radius: 12px;
  padding: 0.6rem 0.65rem;
  box-shadow: 0 4px 12px rgba(16, 34, 58, 0.06);
}

.hero-proof-item strong {
  display: block;
  font-size: 0.9rem;
  color: #7f0e27;
}

.hero-proof-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-panel-grid {
  display: grid;
  gap: 0.55rem;
}

.hero-mini-card {
  margin: 0;
  background: #fff;
  border: 1px solid #d7e7f8;
  border-radius: 12px;
  padding: 0.65rem;
}

.hero-mini-card h4 {
  margin: 0 0 0.2rem;
  font-size: 0.85rem;
  color: #7f0e27;
}

.hero-mini-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero-alert {
  margin: 0.7rem 0;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #ffc5d0;
  background: #fff0f4;
  color: #7f0e27;
  font-size: 0.87rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.1rem 0;
}

.badge {
  background: #fff;
  border: 1px solid #d7e7f8;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid #cfe2f6;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(16, 34, 58, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: 0.9;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(16, 34, 58, 0.12);
  border-color: #b9d3ef;
}

.card h3,
.card h2 {
  margin-top: 0.2rem;
}

.card p,
.card li {
  color: #415a77;
}

.section {
  padding: 1.6rem 0 2.8rem;
}

.section h2 {
  margin: 0 0 0.95rem;
  letter-spacing: -0.01em;
}

.section-alt {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.06), rgba(203, 31, 61, 0.03));
  border-top: 1px solid #d7e7f8;
  border-bottom: 1px solid #d7e7f8;
}


.kicker {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  background: #ffe9ee;
  border: 1px solid #ffc5d0;
  color: #8a1028;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.kicker-spotlight {
  font-size: 0.96rem;
  padding: 0.5rem 0.95rem;
  border-width: 2px;
  background: linear-gradient(90deg, #ffe7ed, #fff4ea);
  box-shadow: 0 6px 16px rgba(203, 31, 61, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
}

.fine {
  font-size: 0.9rem;
  color: var(--muted);
}

.checklist {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.checklist li {
  margin: 0.4rem 0;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  color: var(--ok);
  margin-right: 0.5rem;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #d7e7f8;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 1px solid #e4eef9;
}

th {
  background: #f3f9ff;
  font-size: 0.9rem;
}

td, th {
  white-space: nowrap;
}

.footer-slot {
  margin-top: 3rem;
}

.site-footer {
  background: linear-gradient(180deg, #0c1a2c, #091220);
  color: #dce9fb;
  padding: 2rem 0;
}

.site-footer a { color: #8fd9ff; }
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #284266;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(203, 31, 61, 0.12));
}

.footer-cta h3 {
  margin: 0 0 0.25rem;
}

.footer-cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.site-footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-tags {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.footer-brand-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin: 0.5rem 0 0.25rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
}

.footer-tag {
  display: inline-block;
  border: 1px solid #355176;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-size: 0.78rem;
  color: #cae2ff;
}

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

.footer-compliance {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: #9ec1e9;
  font-size: 0.84rem;
  margin-bottom: 0.75rem;
}

.page-mod {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px dashed #4b6388;
  color: #bcd1eb;
  font-size: 0.92rem;
}

.callout {
  background: #fff;
  border: 1px solid #d7e7f8;
  border-radius: 20px;
  padding: 1.55rem;
  box-shadow: 0 8px 18px rgba(16, 34, 58, 0.05);
}

.booking-form {
  display: grid;
  gap: 0.9rem;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #243a56;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #c9dcf2;
  border-radius: 10px;
  padding: 0.64rem 0.7rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #8ebbe8;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
  outline: 0;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.55rem;
}

.consent-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
}

.gshield-captcha {
  border: 1px solid #c6ddf4;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdff, #f1f8ff);
  padding: 0.9rem;
  box-shadow: 0 8px 18px rgba(16, 34, 58, 0.05);
}

.gshield-captcha h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.gshield-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.45rem;
}

.gshield-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid #c6ddf4;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-weight: 700;
  color: #153558;
  background: #fff;
}

.gshield-badge.is-verified {
  border-color: #2f9f69;
  color: #12603d;
  background: #ebfff4;
}

.gshield-badge.is-pending {
  border-color: #c6ddf4;
  color: #153558;
  background: #fff;
}

.brand-logo-vertical {
  max-width: 320px;
}

.brand-logo-icon {
  max-width: 240px;
}

@media (min-width: 1400px) {
  :root { --container: 1240px; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1920px) {
  :root { --container: 1440px; }
  body { font-size: 1.04rem; }
}

@media (max-width: 1100px) {
  .hero {
    padding: 3.2rem 0 2.7rem;
  }
  .hero-card {
    padding: 1.6rem;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .grid-2 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 0.6rem;
  }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .card {
    padding: 1rem;
  }
}

@media (max-width: 760px) {
  .hero { padding-top: 2.5rem; }
  .nav { padding: 0.75rem 0; }
  .hero-card { padding: 1.25rem; }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .nav-links a {
    justify-content: center;
    min-height: 42px;
  }
  .btn {
    width: 100%;
  }
  .action-row {
    gap: 0.5rem;
  }
  .action-row .btn {
    width: 100%;
  }
  .kicker {
    white-space: normal;
  }
  .footer-cta-actions {
    width: 100%;
  }
  .footer-cta-actions .btn {
    flex: 1 1 100%;
  }
  .site-footer-grid {
    grid-template-columns: 1fr;
  }
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  td, th {
    font-size: 0.92rem;
  }
}

@media (max-width: 460px) {
  .nav-links {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 2.1rem 0 2.2rem;
  }
  .badges {
    gap: 0.45rem;
  }
  .badge {
    font-size: 0.8rem;
  }
  .logo {
    font-size: 0.96rem;
  }
  .logo-mark {
    width: 30px;
    height: 30px;
  }
  .section {
    padding: 1rem 0 2.1rem;
  }
  .card {
    padding: 0.85rem;
  }
  th, td {
    padding: 0.7rem;
  }
}

@media (max-width: 360px) {
  .hero-card {
    padding: 1rem;
    border-radius: 16px;
  }
  .nav-links a {
    min-height: 44px;
    font-size: 0.95rem;
  }
  .badge,
  .fine {
    font-size: 0.78rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .btn,
  .nav-links a {
    min-height: 44px;
  }
}

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