:root {
  --text: #172033;
  --muted: #5f6b7a;
  --light: #f6f9fc;
  --line: #dde7ef;
  --brand: #15aeb8;
  --brand-dark: #163e92;
  --accent: #e9f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 32, 51, 0.12);
  --shadow-soft: 0 14px 35px rgba(23, 32, 51, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(860px, 100%); }

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo img { width: 360px; max-width: 100%; height: auto; }
nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 700; }
nav a:hover { color: var(--brand-dark); }

.hero {
  background:
    radial-gradient(circle at top left, rgba(21,174,184,0.12), transparent 38%),
    linear-gradient(135deg, #f7fbff 0%, #eef7fb 55%, #f8fbfe 100%);
  padding: 64px 0 78px;
}
.hero-grid-professional {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 42px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--brand-dark);
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
}
h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.06;
  margin: 18px 0;
  letter-spacing: -1.7px;
}
.lead { font-size: 20px; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
}
.btn.primary { background: linear-gradient(90deg, var(--brand-dark), var(--brand)); color: var(--white); box-shadow: var(--shadow-soft); }
.btn.primary:hover { transform: translateY(-1px); }
.btn.secondary { background: var(--white); border-color: var(--line); color: var(--brand-dark); }
.btn.secondary:hover { border-color: var(--brand); color: var(--brand); }
.note, .small { color: var(--muted); font-size: 14px; }
.mini-points { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.mini-points span {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
}
.hero-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
}
.floating-icon-wrap {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #f4fbfd;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.floating-icon-wrap img { width: 40px; }
.hero-floating-card strong { display: block; font-size: 18px; margin-bottom: 4px; }
.hero-floating-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }

.section { padding: 76px 0; }
.section.alt { background: var(--light); }
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; margin: 0 0 16px; letter-spacing: -1px; }
.section-intro { color: var(--muted); font-size: 19px; max-width: 780px; margin-bottom: 26px; }

.trust-strip { padding-top: 34px; }
.trust-grid, .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-card, .card, .checklist, .cta-box, .content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.trust-card, .card { padding: 26px; }
.trust-card h3, .card h3, .checklist h3 { margin-top: 0; font-size: 23px; }
.trust-card p, .card p, .split p, .faq p, .content-card p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr .82fr; gap: 28px; align-items: start; }
.checklist { padding: 28px; }

ul { padding-left: 21px; }
li { margin: 9px 0; }

.cta-section { background: linear-gradient(135deg, #163e92, #11b5ba); }
.cta-box { text-align: center; padding: 48px 24px; }
.cta-box h2 { color: var(--text); }
.cta-box p { color: var(--muted); max-width: 700px; margin-left: auto; margin-right: auto; }

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  background: var(--white);
}
.faq summary { cursor: pointer; font-weight: 800; }

.inner-page h1 { font-size: clamp(34px, 5vw, 52px); letter-spacing: -1px; }
.content-card { padding: 28px; margin-top: 18px; }

.site-footer { background: #101827; color: var(--white); padding: 38px 0; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-brand img { width: 260px; max-width: 100%; margin-bottom: 12px; }
.site-footer p, .site-footer a { color: #cbd5e1; }
.footer-links a { display: block; margin-bottom: 8px; }
.footer-links a:hover { color: #fff; }

@media (max-width: 980px) {
  .hero-grid-professional, .split, .trust-grid, .cards { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .logo img { width: 300px; }
  .hero { padding: 44px 0 54px; }
  h1 { letter-spacing: -1px; }
  .hero-floating-card {
    position: static;
    margin: 16px;
  }
}

@media (max-width: 540px) {
  .container { width: min(100% - 20px, 1180px); }
  .logo img { width: 240px; }
  nav { gap: 14px; }
  .lead { font-size: 18px; }
  .hero-actions .btn { width: 100%; }
}


/* Search landing page */
.search-hero {
  background:
    radial-gradient(circle at top left, rgba(21,174,184,0.16), transparent 38%),
    linear-gradient(135deg, #f7fbff 0%, #eef7fb 55%, #ffffff 100%);
  padding: 58px 0 74px;
}

.search-hero-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 42px;
  align-items: center;
}

.search-copy h1 {
  max-width: 760px;
}

.search-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  margin: 30px 0 14px;
  max-width: 720px;
}

.search-panel h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 8px;
}

.search-panel p {
  color: var(--muted);
}

.search-form label {
  display: block;
  font-weight: 800;
  color: var(--text);
  margin: 18px 0 8px;
}

.search-row {
  display: flex;
  gap: 10px;
}

.search-row input {
  flex: 1;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  font-size: 17px;
  color: var(--text);
  background: #fbfdff;
}

.search-row input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(21,174,184,.12);
}

.search-row button {
  min-height: 56px;
  border: 0;
  border-radius: 14px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.search-row button:hover {
  transform: translateY(-1px);
}

.form-note {
  font-size: 13px;
  margin: 10px 0 0;
}

.landing-card-wrap {
  position: relative;
}

.landing-image-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.landing-image-card img {
  width: 100%;
  height: auto;
}

.quick-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: -24px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

.quick-card img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f4fbfd;
  border: 1px solid var(--line);
  padding: 6px;
}

.quick-card strong {
  display: block;
  margin-bottom: 2px;
}

.quick-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.landing-benefits {
  padding-top: 86px;
}

.final-search {
  background: linear-gradient(135deg, #f6fbff, #eef9fb);
}

@media (max-width: 980px) {
  .search-hero-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    position: static;
    margin: 16px;
  }
}

@media (max-width: 650px) {
  .search-row {
    flex-direction: column;
  }

  .search-row button {
    width: 100%;
  }

  .search-panel {
    padding: 22px;
  }
}
