* {
  box-sizing: border-box;
}

:root {
  --blue: #0e5f79;
  --blue-dark: #09384b;
  --aqua: #46bfd4;
  --sand: #f6efe3;
  --gold: #c79a4b;
  --ink: #172026;
  --muted: #66737d;
  --line: rgba(23, 32, 38, 0.11);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 57, 77, 0.14);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: all 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 12px 28px rgba(14, 95, 121, 0.25);
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: rgba(23, 32, 38, 0.72);
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,250,243,0.98) 0%, rgba(255,250,243,0.85) 43%, rgba(255,250,243,0.18) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 45%;
  background: radial-gradient(circle at center, rgba(70,191,212,0.2), transparent 55%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  gap: 54px;
  align-items: center;
  padding: 140px 0 80px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(199, 154, 75, 0.28);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #916a25;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 18px 0;
  color: var(--blue-dark);
}

h1 {
  font-size: clamp(48px, 7vw, 86px);
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
}

p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.hero-copy p {
  max-width: 650px;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 18px 36px rgba(14, 95, 121, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(14, 95, 121, 0.14);
  color: var(--blue-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 999px;
  color: rgba(23,32,38,0.75);
  font-weight: 700;
  font-size: 14px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-top: 0;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.hero-card li:first-child {
  border-top: 0;
}

.hero-card strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: 96px 0;
}

.two-col,
.feature-grid,
.contact-grid,
.candidate-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.intro {
  background: white;
}

.image-feature {
  background: linear-gradient(180deg, #fff, #f7fbfb);
}

.feature-image {
  min-height: 620px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.feature-sea {
  background-image: url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1200&q=85");
}

.feature-text p {
  max-width: 580px;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.benefit span {
  font-size: 26px;
}

.benefit strong,
.benefit small {
  display: block;
}

.benefit strong {
  margin: 10px 0 6px;
}

.benefit small {
  color: var(--muted);
  line-height: 1.5;
}

.relic-section {
  background: #fffaf3;
}

.relic-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.relic-copy {
  padding: 36px 24px 36px 0;
}

.relic-card {
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.relic-one {
  background-image: url("https://images.unsplash.com/photo-1601581875039-e899893d520c?auto=format&fit=crop&w=900&q=85");
}

.relic-two {
  margin-top: 54px;
  background-image: url("https://images.unsplash.com/photo-1579014826743-0e9d81b7be75?auto=format&fit=crop&w=900&q=85");
}

.cards-section,
.process,
.faq {
  background: white;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

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

.card,
.step,
.lead-form,
.contact-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(15,57,77,0.08);
}

.card {
  padding: 30px;
}

.card-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  padding: 26px;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
}

.candidate {
  background:
    linear-gradient(rgba(9,56,75,0.72), rgba(9,56,75,0.72)),
    url("https://images.unsplash.com/photo-1533104816931-20fa691ff6ca?auto=format&fit=crop&w=1800&q=85") center/cover fixed;
}

.candidate h2,
.candidate p,
.candidate .section-label {
  color: #fff;
}

.candidate .section-label {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.candidate-box {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 50px;
  backdrop-filter: blur(10px);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 750;
  color: var(--blue-dark);
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
  font-weight: 900;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--blue-dark);
}

details p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact {
  background: linear-gradient(180deg, #f7fbfb, #fffaf3);
}

.contact-copy {
  align-self: start;
}

.contact-note {
  padding: 20px;
  margin-top: 28px;
  color: var(--blue-dark);
  font-weight: 800;
  background: rgba(255,255,255,0.74);
}

.lead-form {
  padding: 30px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 14px;
}

input,
select {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(23,32,38,0.14);
  border-radius: 15px;
  padding: 0 15px;
  font: inherit;
  outline: none;
  background: #fff;
}

input:focus,
select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(70,191,212,0.12);
}

.checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox input {
  height: 20px;
  margin: 2px 0 0;
}

.btn-full {
  width: 100%;
  font-size: 16px;
}

.form-hint {
  font-size: 13px;
  text-align: center;
  margin: 0;
}

.footer {
  padding: 28px 0;
  background: var(--blue-dark);
  color: rgba(255,255,255,0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(140%);
  width: min(560px, calc(100% - 32px));
  background: var(--blue-dark);
  color: #fff;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 80;
  transition: transform 0.3s ease;
  text-align: center;
  font-weight: 700;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .two-col,
  .feature-grid,
  .contact-grid,
  .candidate-box,
  .relic-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 118px;
  }

  .hero-card {
    max-width: 560px;
  }

  .feature-image {
    min-height: 430px;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .relic-copy {
    padding-right: 0;
  }

  .relic-two {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 12px 0;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 10px 14px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,250,243,0.95) 0%, rgba(255,250,243,0.82) 55%, rgba(255,250,243,0.32) 100%),
      url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1000&q=85") center/cover;
  }

  .section {
    padding: 68px 0;
  }

  .hero-card,
  .candidate-box,
  .lead-form,
  .card,
  .step {
    border-radius: 22px;
  }

  .benefits,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .relic-card {
    min-height: 300px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
