:root {
  --brand-blue: #225189;
  --brand-blue-dark: #16385f;
  --brand-green: #45c087;
  --brand-orange: #f58a3d;
  --ink: #172033;
  --muted: #5b677a;
  --line: rgba(34, 81, 137, 0.12);
  --bg: #f6f8fb;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(22, 56, 95, 0.1);
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(69, 192, 135, 0.12), transparent 32rem),
    radial-gradient(circle at 80% 12%, rgba(34, 81, 137, 0.12), transparent 30rem),
    var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--brand-blue);
  text-decoration: none;
}

.brand img {
  height: 44px;
  width: auto;
}

.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(34, 81, 137, 0.22);
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(69, 192, 135, 0.3);
  border-radius: 999px;
  background: rgba(69, 192, 135, 0.08);
  color: var(--brand-blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1,
h2,
h3 {
  font-family: Outfit, Inter, Arial, sans-serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  margin-top: 22px;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  color: var(--brand-blue-dark);
  letter-spacing: -0.055em;
}

.hero-highlight {
  color: var(--brand-orange);
  display: inline;
}

.subhead {
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 720px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 9px 13px;
  color: var(--brand-blue-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(34, 81, 137, 0.2);
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid var(--line);
  box-shadow: none;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lead-card {
  padding: 34px;
}

.lead-card h2 {
  color: var(--brand-blue-dark);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lead-card p {
  color: var(--muted);
  margin: 16px 0 24px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.lead-card .hero-actions {
  margin-top: 20px;
}

.field {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8fafc;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.success {
  display: none;
  padding: 18px;
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(69, 192, 135, 0.1);
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section {
  padding: 42px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-header h2 {
  color: var(--brand-blue-dark);
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.035em;
}

.section-header p,
.feature p,
.faq p {
  color: var(--muted);
}

.feature,
.faq {
  padding: 24px;
}

.feature h3,
.faq h3 {
  color: var(--brand-blue-dark);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.proof {
  padding: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.proof img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  max-height: 360px;
  background: #fff;
}

.proof ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.booking {
  text-align: center;
  padding: 36px;
}

.booking iframe {
  width: 100%;
  height: 760px;
  border: 0;
  border-radius: 20px;
  background: #fff;
}

.footer {
  margin-top: 40px;
  padding: 30px 0 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.mobile-call {
  display: none;
}

@media (max-width: 860px) {
  .hero-grid,
  .proof,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .topbar .call-link {
    display: none;
  }

  .mobile-call {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 20;
  }

  .mobile-call .call-link {
    width: 100%;
  }
}
