:root {
  --bg: #f4f8fd;
  --surface: #ffffff;
  --surface-2: #eaf2fd;
  --text: #10233f;
  --muted: #60718c;
  --line: rgba(16, 35, 63, 0.12);
  --primary: #1d66cb;
  --primary-strong: #0d56bb;
  --primary-soft: rgba(29, 102, 203, 0.10);
  --shadow: 0 18px 50px rgba(7, 34, 76, 0.12);
  --shadow-soft: 0 10px 28px rgba(7, 34, 76, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1280px;
  --nav-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(29, 102, 203, 0.13), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
main { overflow: clip; }

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(8, 23, 46, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.site-header.scrolled,
.site-header.nav-open {
  background: rgba(248, 251, 255, 0.94);
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: 0 14px 36px rgba(7, 34, 76, 0.12);
}
.nav-shell {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  width: 150px;
  height: auto;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-link,
.nav-cta,
.pill-link,
.pill-btn,
.filter-btn,
.article-link,
.map-link {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}
.nav-link {
  position: relative;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.90rem;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(13, 86, 187, 0.26);
}
.nav-cta:hover,
.pill-btn:hover,
.hero-actions .btn-primary:hover,
.package-card:hover .price-pill,
.article-link:hover,
.map-link:hover,
.form-success.show {
  transform: translateY(-2px);
}


.site-header:not(.scrolled):not(.nav-open) .nav-link {
  color: rgba(255,255,255,0.82);
}
.site-header:not(.scrolled):not(.nav-open) .nav-link:hover,
.site-header:not(.scrolled):not(.nav-open) .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.10);
  box-shadow: none;
}
.site-header:not(.scrolled):not(.nav-open) .nav-cta {
  box-shadow: 0 14px 28px rgba(13, 86, 187, 0.30);
}
.site-header:not(.scrolled):not(.nav-open) .brand img {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.18));
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(8, 21, 40, 0.82) 0%, rgba(12, 42, 84, 0.56) 42%, rgba(14, 41, 83, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 29, 56, 0.10) 0%, rgba(11, 29, 56, 0.28) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  padding: 138px 0 132px;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7db6ff;
  box-shadow: 0 0 0 6px rgba(125, 182, 255, 0.16);
}
.hero h1,
.page-hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero p,
.page-hero p {
  margin: 0;
  max-width: 730px;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  margin-top: 0;
}
.stat-card {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16,35,63,0.08);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}
.stat-card p { margin: 8px 0 0; color: var(--muted); font-size: .98rem; }
.stat-card strong {
  display: block;
  font-size: 1.28rem;
  letter-spacing: -.02em;
}
.stat-card span { color: var(--muted); font-size: 0.98rem; }
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #3b84ec, var(--primary-strong));
  color: #fff;
  box-shadow: 0 20px 38px rgba(13, 86, 187, 0.3);
}
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.hero-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}
.hero-panel h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}
.hero-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.hero-panel li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255,255,255,0.82);
}
.hero-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7db6ff;
  margin-top: 7px;
}
.hero-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
}
.hero-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.strip-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 35, 63, 0.06);
}
.strip-card strong { display: block; margin-bottom: 6px; font-size: 1rem; }
.strip-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.section { padding: 88px 0; }
.section-tight { padding: 68px 0; }
.section-muted { background: linear-gradient(180deg, rgba(29,102,203,0.04) 0%, rgba(255,255,255,0) 100%); }
.section-blue {
  color: #fff;
  background: radial-gradient(circle at top left, rgba(125,182,255,0.2), transparent 22%), linear-gradient(135deg, #0f4fa5 0%, #1d66cb 58%, #2a7ae8 100%);
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.section-head p,
.page-section p.lead,
.lead { margin: 12px 0 0; max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.section-blue .section-head p,
.section-blue p.lead,
.section-blue .card p,
.section-blue .feature-card p,
.section-blue .value-card p,
.section-blue .accordion-body,
.section-blue .meta {
  color: rgba(255,255,255,0.82);
}

.grid-2,
.grid-3,
.grid-4,
.cards-grid,
.blog-grid,
.team-grid,
.support-grid,
.packages-grid,
.service-grid,
.story-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3, .cards-grid, .blog-grid, .packages-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.team-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.support-grid { grid-template-columns: 1.05fr .95fr; }
.service-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
.story-grid { grid-template-columns: .92fr 1.08fr; align-items: center; }
.contact-grid { grid-template-columns: .92fr 1.08fr; }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; align-items: start; }

.card,
.feature-card,
.value-card,
.blog-card,
.team-card,
.contact-card,
.package-card,
.service-card,
.support-card,
.panel,
.map-card,
.form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 35, 63, 0.07);
}
.card,
.feature-card,
.value-card,
.blog-card,
.contact-card,
.support-card,
.panel,
.form-card,
.map-card,
.service-card { padding: 28px; }
.feature-card,
.value-card,
.blog-card,
.team-card,
.package-card,
.service-card,
.support-card,
.card,
.contact-card,
.map-card,
.panel { transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.feature-card:hover,
.value-card:hover,
.blog-card:hover,
.team-card:hover,
.package-card:hover,
.service-card:hover,
.support-card:hover,
.card:hover,
.contact-card:hover,
.map-card:hover,
.panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(29, 102, 203, 0.22);
}
.icon-chip {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(29,102,203,.14), rgba(29,102,203,.24));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(29,102,203,.08);
}
.feature-card h3,
.value-card h3,
.service-card h3,
.blog-card h3,
.package-card h3,
.team-card h3,
.contact-card h3,
.support-card h3,
.panel h3 {
  margin: 18px 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}
.feature-card p,
.value-card p,
.blog-card p,
.team-card p,
.contact-card p,
.package-card p,
.service-card p,
.support-card p,
.panel p,
.card p {
  margin: 0;
  color: var(--muted);
}
.meta { color: var(--muted); font-weight: 600; font-size: .95rem; }

.media-stack,
.image-card,
.team-card img,
.blog-card img,
.service-visual img,
.story-photo img,
.support-photo img {
  border-radius: var(--radius-xl);
}
.media-stack {
  position: relative;
  min-height: 520px;
}
.media-stack img,
.story-photo img,
.service-visual img,
.support-photo img,
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-stack .primary,
.media-stack .secondary {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-stack .primary {
  inset: 0 70px 60px 0;
  border-radius: 32px;
}
.media-stack .secondary {
  width: 48%;
  right: 0;
  bottom: 0;
  height: 56%;
  border-radius: 28px;
  border: 8px solid rgba(255,255,255,0.95);
}
.floating-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}
.floating-badge strong { display:block; font-size:1.2rem; }
.floating-badge span { color: var(--muted); font-size: .93rem; }

.check-list,
.bullet-list,
.package-list,
.footer-links,
.contact-list,
.map-meta,
.stat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list,
.bullet-list,
.package-list,
.contact-list,
.footer-links,
.map-meta { display: grid; gap: 12px; }
.check-list li,
.bullet-list li,
.package-list li,
.contact-list li,
.footer-links a,
.map-meta li,
.stat-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.check-list li::before,
.bullet-list li::before,
.package-list li::before,
.contact-list li::before,
.map-meta li::before,
.stat-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 8px;
  box-shadow: 0 0 0 6px rgba(29,102,203,.12);
}
.section-blue .check-list li::before,
.section-blue .bullet-list li::before,
.section-blue .package-list li::before,
.section-blue .contact-list li::before,
.section-blue .map-meta li::before {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.14);
}
.pill-row,
.filter-row,
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill-link,
.pill-btn,
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16,35,63,.10);
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-weight: 700;
}
.pill-link:hover,
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 14px 24px rgba(13,86,187,.18);
  transform: translateY(-2px);
}
.pill-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(13,86,187,.18);
}

.package-card {
  position: relative;
  overflow: hidden;
  padding: 30px 30px 96px;
}
.package-card::after {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,102,203,.18), rgba(29,102,203,.04));
}
.package-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16,35,63,.12);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.package-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7a2ff6 0%, #c62df2 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
}
.package-card.standard .package-icon { background: linear-gradient(135deg, #7a2ff6, #9a4bff); }
.package-card.lite .package-icon { background: linear-gradient(135deg, #ff45ba, #ff6647); }
.package-card.plus .package-icon { background: linear-gradient(135deg, #ffb23f, #ff4f81); }
.package-card h3 { font-size: 2.15rem; margin: 16px 0 10px; }
.package-card p { max-width: 520px; }
.package-list { margin-top: 18px; grid-template-columns: repeat(2, minmax(0,1fr)); display: grid; gap: 14px 22px; }
.price-pill {
  position: absolute;
  left: 30px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  padding: 18px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(13,86,187,.22);
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: 0;
}
.blog-card img { aspect-ratio: 16/10; }
.blog-copy { padding: 0 24px 24px; }
.blog-card .meta { margin-top: 20px; }
.article-link {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 10px;
  color: var(--primary-strong);
  font-weight: 800;
}
.article-link::after { content: "→"; }

.team-card {
  overflow: hidden;
  padding: 0;
}
.team-card img { aspect-ratio: 4/4.3; }
.team-copy { padding: 24px; }
.team-role {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: .85rem;
}
.team-copy .contact-list { margin-top: 18px; }

.accordion {
  display: grid;
  gap: 16px;
}
.accordion-item {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(16,35,63,.08);
  background: #fff;
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}
.accordion-trigger span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-strong);
  flex-shrink: 0;
}
.accordion-item.active .accordion-trigger span:last-child { transform: rotate(45deg); }
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.accordion-item.active .accordion-panel { grid-template-rows: 1fr; }
.accordion-body {
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
}
.accordion-item.active .accordion-body { padding-bottom: 24px; }
.form-codes {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.code-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: .86rem;
}

.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: end;
  color: #fff;
}
.page-hero .container { position: relative; z-index: 2; padding: 140px 0 70px; }
.page-hero.small { min-height: 360px; }
.page-body { padding: 82px 0; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.info-card { padding: 22px; border-radius: 22px; background: var(--surface-2); }
.info-card strong { display:block; margin-bottom: 6px; }
.quote-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(29,102,203,.12), rgba(29,102,203,.03));
  border: 1px solid rgba(29,102,203,.12);
}
.quote-card blockquote {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}
.quote-card cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
}

.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 24px;
}
.map-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-strong);
  font-weight: 800;
}

.form-card h3 { margin-top: 0; }
.form-grid { display: grid; gap: 18px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.field label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-weight: 700;
}
.required-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(29,102,203,.12);
}
.input,
.textarea,
.select-display {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(16,35,63,.10);
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.textarea { min-height: 160px; resize: vertical; }
.input:focus,
.textarea:focus,
.select.open .select-display,
.select:focus-within .select-display {
  border-color: rgba(29,102,203,.42);
  box-shadow: 0 0 0 4px rgba(29,102,203,.14);
}
.select {
  position: relative;
}
.select-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.select-display::after {
  content: "▾";
  color: var(--primary-strong);
  font-size: 1rem;
}
.select-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16,35,63,.10);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 30;
}
.select.open .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.select-option {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.select-option:hover,
.select-option[aria-selected="true"] {
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 700;
}
.form-note,
.error-text,
.form-success { font-size: .92rem; }
.form-note { color: var(--muted); }
.error-text { color: #bb2446; min-height: 1.2em; margin-top: 7px; }
.form-actions { display:flex; gap: 12px; align-items:center; flex-wrap:wrap; }
.form-success {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(34, 163, 89, 0.12);
  color: #12603a;
}
.form-success.show { display: inline-flex; }

.footer {
  padding: 70px 0 0;
  background: linear-gradient(180deg, #0f1e34 0%, #091322 100%);
  color: #fff;
}
.footer h3,
.footer h4 { margin-top: 0; }
.footer p { color: rgba(255,255,255,.74); }
.footer .brand img { width: 184px; filter: brightness(0) invert(1); }
.footer-links a,
.footer .pill-link { color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); }
.footer .pill-link:hover { background: var(--primary); }
.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 18px 0 24px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.7); }
.footer-bottom a { color: #fff; font-weight: 700; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .service-grid,
  .story-grid,
  .contact-grid,
  .support-grid,
  .footer-grid,
  .grid-3,
  .cards-grid,
  .blog-grid,
  .packages-grid,
  .team-grid,
  .grid-4,
  .hero-strip .container { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-grid { align-items: start; }
  .hero-panel { max-width: 640px; }
  .media-stack { min-height: 440px; }
}

@media (max-width: 860px) {
  :root { --nav-h: 80px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 12px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(16,35,63,.08);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header.nav-open .nav-menu { display: flex; }
  .nav-link,
  .nav-cta { text-align: center; justify-content: center; }
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .cards-grid,
  .blog-grid,
  .team-grid,
  .support-grid,
  .packages-grid,
  .service-grid,
  .story-grid,
  .contact-grid,
  .footer-grid,
  .hero-strip .container,
  .field-grid,
  .package-list,
  .info-grid { grid-template-columns: 1fr; }
  .hero { min-height: 700px; }
  .hero-grid { padding: 120px 0 80px; }
  .hero-stats { grid-template-columns: 1fr; }
  .media-stack { min-height: 360px; }
  .media-stack .primary { inset: 0 0 110px 0; }
  .media-stack .secondary { width: 62%; height: 44%; }
  .price-pill { right: 24px; left: 24px; min-width: 0; }
  .section-head { flex-direction: column; align-items: start; }
  .page-hero .container { padding: 120px 0 54px; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 22px)); }
  .brand img { width: 148px; }
  .hero h1,
  .page-hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-panel,
  .card,
  .feature-card,
  .value-card,
  .contact-card,
  .support-card,
  .service-card,
  .form-card,
  .map-card,
  .package-card,
  .blog-copy,
  .team-copy { padding-left: 20px; padding-right: 20px; }
  .price-pill { font-size: 1rem; }
  .hero-actions .btn,
  .pill-link,
  .pill-btn { width: 100%; }
  .hero-strip { margin-top: -20px; }
}


.hero-support {
  position: relative;
  margin-top: -72px;
  z-index: 3;
}
.hero-support .container {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.hero-copy { max-width: 780px; }

.section-blue .value-card {
  background: rgba(255,255,255,0.95);
  color: var(--text);
}
.section-blue .value-card h3 { color: var(--text); }
.section-blue .value-card p { color: var(--muted); }

.cta-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}
.cta-photo {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}
.cta-photo img { width:100%; height:100%; object-fit:cover; }

.footer .brand img { width: 194px; filter: none; }
.footer-pills { display:flex; flex-wrap:wrap; gap:12px; }
.footer .pill-link { padding: 10px 16px; font-size: .95rem; box-shadow:none; }
.footer-links a { display:block; padding: 5px 0; }
.footer-links { list-style:none; margin:0; padding:0; display:grid; gap:6px; }
.contact-list a { color: inherit; font-weight: 600; }
.contact-list a:hover { color: var(--primary-strong); }
.input::placeholder, .textarea::placeholder { color: #93a1b5; }

@media (max-width: 1120px) {
  .hero-support .container { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .site-header:not(.scrolled):not(.nav-open) { background: rgba(248, 251, 255, 0.94); border-bottom: 1px solid rgba(16, 35, 63, 0.08); box-shadow: 0 14px 36px rgba(7, 34, 76, 0.12); }
  .site-header:not(.scrolled):not(.nav-open) .nav-link { color: var(--muted); }
  .site-header:not(.scrolled):not(.nav-open) .nav-link:hover,
  .site-header:not(.scrolled):not(.nav-open) .nav-link.active { color: var(--text); background: rgba(255,255,255,0.88); box-shadow: var(--shadow-soft); }
  .hero-grid { padding: 126px 0 116px; }
  .hero-support { margin-top: -52px; }
  .hero-support .container, .cta-media-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer .pill-link { font-size: .9rem; padding: 9px 14px; }
}


/* v3 refinements */
.hero-support {
  margin-top: -78px;
  padding-bottom: 14px;
}
.hero-support .container {
  align-items: stretch;
}
.hero-support .stat-card,
.hero-strip .strip-card {
  height: 100%;
}
.hero-strip {
  margin-top: 8px;
}
.hero-strip .container {
  align-items: stretch;
}
.icon-chip svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: currentColor;
}
.team-card img {
  width: 100%;
  aspect-ratio: 3 / 3.85;
  object-fit: cover;
  object-position: center top;
}
.team-copy .contact-list {
  gap: 10px;
}
.contact-button,
.team-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(16,35,63,.10);
  background: rgba(29,102,203,.08);
  color: var(--text);
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.contact-button:hover,
.team-contact-btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 14px 24px rgba(13,86,187,.18);
}
.team-card .contact-list li,
.team-card .contact-list li::before {
  display: none;
}
.team-card .contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-dashboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.nav-dashboard:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
}
.site-header.scrolled .nav-dashboard,
.site-header.nav-open .nav-dashboard {
  color: var(--primary-strong);
  background: rgba(29,102,203,.08);
  border-color: rgba(29,102,203,.16);
}
.site-header.scrolled .nav-dashboard:hover,
.site-header.nav-open .nav-dashboard:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.dashboard-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: radial-gradient(circle at top right, rgba(29,102,203,.18), transparent 30%), linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}
.dashboard-card {
  width: min(720px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(16,35,63,.08);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(7,34,76,.14);
  padding: 44px;
  text-align: center;
}
.dashboard-card h1 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.dashboard-card p {
  margin: 0 auto 28px;
  max-width: 540px;
  color: var(--muted);
  font-size: 1.06rem;
}
.dashboard-mark {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 2.2rem;
  box-shadow: 0 18px 36px rgba(13,86,187,.25);
}
@media (max-width: 860px) {
  .nav-dashboard { text-align: center; justify-content: center; }
}
@media (max-width: 560px) {
  .hero-support { margin-top: -34px; }
  .hero-strip { margin-top: 4px; }
  .dashboard-card { padding: 34px 22px; border-radius: 24px; }
}


.team-card .contact-list { margin-top: 18px; gap: 10px; }
.team-card .contact-list li { align-items: center; }
.team-card .contact-list li a { color: var(--text); text-decoration: none; }
.team-card .contact-list li a:hover { color: var(--primary-strong); }
.team-contact-btn { all: unset; }
.team-card img { height: 360px; object-fit: cover; object-position: center top; }

.support-highlights { padding-top: 8px; }
.support-highlights-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.support-item { background: var(--surface); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-soft); border: 1px solid rgba(16,35,63,.07); }
.support-item h3 { margin: 0 0 10px; font-size: 1.12rem; letter-spacing: -0.02em; }
.support-item p { margin: 0; color: var(--muted); }

/* tighten nav to keep single row */
.nav-link { white-space: nowrap; }
.nav-dashboard { white-space: nowrap; padding: 9px 15px; font-size: 0.93rem; }
.nav-cta { white-space: nowrap; padding: 11px 16px; margin-left: 6px; }

@media (max-width: 1180px) {
  .support-highlights-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 840px) {
  .support-highlights-grid { grid-template-columns: 1fr; }
}


/* v5 final refinements */
.icon-chip svg,
.value-card .icon-chip svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.value-card .icon-chip {
  align-items: center;
  justify-content: center;
}

/* Restore clean team contact rows */
.team-card {
  display: flex;
  flex-direction: column;
}
.team-card .contact-list {
  display: grid !important;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}
.team-card .contact-list li {
  display: flex !important;
  align-items: center;
  gap: 12px;
}
.team-card .contact-list li::before {
  content: "";
  display: inline-block !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(29,102,203,.14);
  flex-shrink: 0;
}
.team-card .contact-list li a {
  color: var(--text) !important;
  text-decoration: none;
  font-weight: 500;
}
.team-card .contact-list li a:hover {
  color: var(--primary-strong) !important;
}
.team-contact-btn,
.contact-button {
  all: unset;
}

/* Redesigned support highlights */
.support-highlights {
  padding-top: 20px;
}
.support-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-top: 18px;
}
.support-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58));
  border: 1px solid rgba(29,102,203,.10);
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: 0 18px 44px rgba(7,34,76,.08);
  backdrop-filter: blur(12px);
}
.support-item::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #64a7ff);
}
.support-item::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,102,203,.10), rgba(29,102,203,0));
}
.support-item .support-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(29,102,203,.14), rgba(29,102,203,.05));
  color: var(--primary-strong);
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(29,102,203,.10);
}
.support-item .support-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.support-item h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  letter-spacing: -.02em;
}
.support-item p {
  margin: 0;
  color: var(--muted);
  max-width: 38ch;
}
@media (max-width: 840px) {
  .support-highlights-grid { grid-template-columns: 1fr; }
}

/* Footer social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--primary);
  border-color: var(--primary);
}
.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}


/* v6 go-live fixes */
.section-blue .value-card .icon-chip {
  background: linear-gradient(135deg, rgba(29,102,203,.16), rgba(29,102,203,.08)) !important;
  color: var(--primary-strong) !important;
  box-shadow: inset 0 0 0 1px rgba(29,102,203,.14), 0 8px 18px rgba(7,34,76,.06) !important;
}
.section-blue .value-card .icon-chip svg,
.section-blue .value-card .icon-chip svg * {
  stroke: var(--primary-strong) !important;
  fill: none !important;
  opacity: 1 !important;
  vector-effect: non-scaling-stroke;
}
.section-blue .value-card .icon-chip svg {
  width: 30px !important;
  height: 30px !important;
  overflow: visible;
}
.footer-social {
  margin-top: 22px;
  margin-bottom: 18px;
}
.footer-pills {
  row-gap: 14px;
}
