:root {
  --navy: #0d1f3d;
  --navy-2: #142b52;
  --teal: #5fa8a8;
  --teal-soft: #d8eeee;
  --gold: #c9a463;
  --gold-soft: #f3ead8;
  --ivory: #f7f5f1;
  --paper: #fffdf8;
  --grey: #b8bbb3;
  --ink: #21314a;
  --muted: #667085;
  --line: #e8e1d2;
  --danger: #9e2f2f;
  --success: #1f7a5b;
  --shadow: 0 22px 50px rgba(13, 31, 61, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

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

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

p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

.kicker {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.kicker:before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 241, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 225, 210, .9);
}

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

.brand { display: inline-flex; align-items: center; gap: .85rem; min-width: 205px; }
.brand img { width: 178px; height: auto; }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: .75rem .85rem;
  color: var(--navy);
  font-size: .94rem;
  font-weight: 650;
  border-radius: 999px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { background: var(--gold-soft); color: var(--navy); }

.nav-actions { display: flex; align-items: center; gap: .7rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: .18s ease;
  font-size: .95rem;
}

.btn-primary { background: var(--navy); color: white; box-shadow: 0 12px 24px rgba(13,31,61,.2); }
.btn-primary:hover { transform: translateY(-1px); background: var(--navy-2); }
.btn-secondary { background: white; border-color: var(--line); color: var(--navy); }
.btn-secondary:hover { border-color: var(--gold); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-text { color: var(--navy); font-weight: 800; border-bottom: 2px solid var(--gold); padding-bottom: .1rem; }

.mobile-toggle { display: none; background: white; border: 1px solid var(--line); border-radius: 14px; width: 46px; height: 46px; align-items: center; justify-content: center; }
.mobile-toggle span, .mobile-toggle:before, .mobile-toggle:after { content: ""; display: block; width: 20px; height: 2px; background: var(--navy); margin: 3px 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 82% 13%, rgba(95,168,168,.24), transparent 31%),
    radial-gradient(circle at 10% 92%, rgba(201,164,99,.18), transparent 27%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hero p.lead { font-size: clamp(1.12rem, 1.9vw, 1.42rem); color: #3f4c61; max-width: 730px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.7rem 0 1.5rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.trust-pill { background: rgba(255,255,255,.84); border: 1px solid var(--line); padding: .55rem .8rem; border-radius: 999px; color: var(--navy); font-size: .9rem; font-weight: 700; }

.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.45rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card .logo-icon { width: 120px; margin: 0 auto 1rem; }
.status-card { background: var(--navy); color: white; border-radius: 22px; padding: 1.35rem; margin-top: 1rem; }
.status-card h3 { color: white; margin-bottom: .7rem; }
.status-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.status-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check { color: var(--gold); font-weight: 900; }

.section { padding: clamp(3.5rem, 7vw, 6.2rem) 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 820px; margin-bottom: 2.2rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .kicker:before { display: none; }
.section-head p { font-size: 1.1rem; color: var(--muted); }

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

.card {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(13,31,61,.06);
}
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); }
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 1rem;
  border: 1px solid rgba(201,164,99,.28);
}

.feature-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .72rem; }
.feature-list li { display: flex; gap: .7rem; align-items: flex-start; color: #3f4c61; }
.feature-list li:before { content: "✓"; color: var(--success); font-weight: 900; flex: 0 0 auto; }
.feature-list.cross li:before { content: "×"; color: var(--danger); }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.panel {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.panel h2, .panel h3 { color: white; }
.panel p { color: rgba(255,255,255,.78); }
.panel .feature-list li { color: rgba(255,255,255,.84); }

.steps { counter-reset: step; display: grid; gap: .9rem; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}
.step:before {
  content: counter(step);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.step strong { color: var(--navy); display: block; }
.step span { color: var(--muted); }

.price-card { position: relative; overflow: hidden; }
.price-card.featured { border-color: rgba(201,164,99,.8); box-shadow: var(--shadow); }
.price { color: var(--navy); font-size: 2.35rem; font-weight: 900; letter-spacing: -.04em; margin: .4rem 0 .2rem; }
.price small { font-size: .92rem; color: var(--muted); font-weight: 700; }
.label { display: inline-flex; padding: .35rem .7rem; border-radius: 999px; background: var(--gold-soft); color: var(--navy); font-weight: 900; font-size: .78rem; }

.cta {
  background: linear-gradient(135deg, var(--navy), #10294e 65%, #163761);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  position: relative;
}
.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,.78); max-width: 760px; }
.cta:after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(201,164,99,.18); }

.form-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.25rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; }
.form-field { display: grid; gap: .35rem; }
label { color: var(--navy); font-weight: 800; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8d4c9;
  border-radius: 14px;
  min-height: 48px;
  padding: .75rem .9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 142px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(95,168,168,.22); border-color: var(--teal); }
.full { grid-column: 1 / -1; }
.consent { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted); font-size: .92rem; }
.consent input { width: 18px; min-height: 18px; margin-top: .22rem; }

.notice { background: var(--gold-soft); border-left: 4px solid var(--gold); padding: 1rem; border-radius: 14px; color: var(--navy); }

.footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 3.5rem 0 1.6rem;
}
.footer h3, .footer h4 { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 2rem; }
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: white; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-logo { width: 180px; filter: brightness(0) invert(1); margin-bottom: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2rem; padding-top: 1rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem; font-size: .88rem; }

.breadcrumb { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.breadcrumb a { color: var(--navy); font-weight: 800; }
.page-hero { padding: 4rem 0 3rem; background: linear-gradient(180deg, var(--paper), var(--ivory)); border-bottom: 1px solid var(--line); }
.page-hero p { font-size: 1.15rem; max-width: 820px; color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--gold-soft); color: var(--navy); font-weight: 900; }
tr:last-child td { border-bottom: 0; }

.cookie-banner {
  position: fixed;
  z-index: 999;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .94rem; }

@media (max-width: 980px) {
  .mobile-toggle { display: inline-flex; flex-direction: column; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: .7rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 12px; }
  .nav-actions .btn-secondary { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .navbar { min-height: 74px; }
  .brand img { width: 148px; }
  .nav-links { top: 74px; left: 14px; right: 14px; }
  .hero-actions, .footer-bottom, .cookie-banner { flex-direction: column; align-items: stretch; }
  .grid-2, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .price { font-size: 2rem; }
}


/* WordPress integration */
.custom-logo { max-width: 178px; height: auto; }
.nav-links .menu-item { list-style: none; }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { background: var(--gold-soft); color: var(--navy); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.screen-reader-text { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
