/* Premium refresh – accurate content edition */

:root {
  --hero-gradient: radial-gradient(circle at 8% 0%, rgba(255,255,255,.14), transparent 55%), linear-gradient(135deg, #0b1726 0%, #12325a 55%, #1f3f6d 100%);
  --accent-green: #2bc3a3;
  --accent-amber: #f7c87a;
  --accent-blue: #4f8bd9;
  --card-glass: color-mix(in oklab, var(--glass), transparent 16%);
  --border-strong: color-mix(in oklab, var(--border), var(--color-text) 12%);
}

body {
  background: linear-gradient(180deg, var(--color-bg) 0%, color-mix(in oklab, var(--color-bg), white 6%) 18%, var(--color-bg) 100%);
}

/* Header */
.header_inner { gap: clamp(12px, 2vw, 28px); }
.header_actions { display: flex; align-items: center; gap: 10px; }
.btn_sm { padding: 8px 16px; font-size: var(--step--1); border-radius: 999px; }
.theme_toggle { margin-left: 6px; background: var(--glass); border-radius: 999px; padding: 8px 10px; }
.header_actions .btn_ghost { border: 1px solid color-mix(in oklab, var(--border), var(--color-text) 18%); }
.nav_menu a.is_active { color: var(--color-primary); font-weight: 700; }

/* Hero */
.hero { position: relative; isolation: isolate; color: #f7fbff; padding-block: clamp(60px, 9vw, 120px); }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-gradient); z-index: -2; }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: clamp(160px, 30vw, 280px); background: linear-gradient(0deg, rgba(15,25,45,.75) 0%, transparent 100%); z-index: -1; }
.hero_layout { display: grid; gap: clamp(32px, 5vw, 72px); grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: start; }
.hero_copy { max-width: 600px; }
.hero .lead { color: color-mix(in oklab, #ffffff, rgba(189,211,239,.05)); text-wrap: balance; }
.hero_points { margin: var(--space-3) 0 var(--space-4); padding: 0; list-style: none; display: grid; gap: 10px; }
.hero_points li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--radius); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); font-weight: 600; }
.hero_points li::before { content: "\2713"; width: 24px; height: 24px; border-radius: 10px; background: rgba(43,195,163,.35); color: #0d221f; display: grid; place-items: center; font-size: var(--step--1); }
.hero_note { margin-top: var(--space-2); font-size: var(--step--1); color: color-mix(in oklab, #ffffff, #cbd5f5 35%); }
.hero_visual { display: grid; gap: 0; border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 20px 44px rgba(6,12,24,.32); }
.hero_visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(110%); }
.hero_visual figcaption { margin: 0; padding: 14px 18px; font-size: var(--step--1); color: color-mix(in oklab, #ffffff, #afbdd6 45%); background: rgba(6,12,24,.6); }

@media (max-width: 960px) {
  .hero_layout { grid-template-columns: 1fr; }
  .hero_visual { order: -1; }
}

/* Section utilities */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: var(--step--1); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: color-mix(in oklab, var(--color-primary), var(--color-text) 30%); }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .4; }
.section_alt { background: color-mix(in oklab, var(--color-bg), white 8%); }
.split { display: grid; gap: clamp(24px, 5vw, 48px); grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: start; }
.section_intro { display: grid; gap: 14px; }

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
}

/* About facts */
.fact_list { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding: 0; margin: 0; }
.fact_list dt { font-weight: 700; font-size: var(--step--1); color: var(--color-muted); }
.fact_list dd { margin: 2px 0 0; font-weight: 600; color: var(--color-text); }
.fact_list div { padding: 18px 20px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--glass); box-shadow: var(--shadow); }

/* Services */
.services_wrap { display: grid; gap: clamp(24px, 4vw, 48px); }
.service_grid { display: grid; gap: clamp(20px, 3vw, 32px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service_card { position: relative; padding: clamp(24px, 3vw, 32px); display: grid; gap: 18px; border-radius: calc(var(--radius) + 4px); background: var(--glass); border: 1px solid var(--border); box-shadow: var(--shadow); }
.service_icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: color-mix(in oklab, var(--color-primary), white 32%); color: #0b1726; font-weight: 700; font-size: var(--step-1); }
.service_card h3 { margin: 0; }
.service_card .bullet { margin: 0; padding-left: 0; list-style: none; color: var(--color-text); display: grid; gap: 6px; font-weight: 600; }
.service_card .bullet li { position: relative; padding-left: 18px; font-size: var(--step--1); }
.service_card .bullet li::before { content: "•"; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.service_card .note { margin: 0; font-size: var(--step--1); color: var(--color-muted); }

/* Pricing */
.table_wrap { overflow: auto; padding: var(--space-3); border-radius: var(--radius); border: 1px solid var(--border); background: var(--glass); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px dashed var(--border); }
th { background: color-mix(in oklab, var(--color-primary), white 82%); color: #232630; font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* Pricing table */
.price_table th { vertical-align: top; width: clamp(140px, 24vw, 200px); }
.price_table th[scope="row"] { background: transparent; font-size: var(--step-0); }
.price_table td { vertical-align: top; }
.price_services { margin: 0; padding: 0; display: grid; gap: 14px; }
.price_services div { margin: 0; }
.price_services dt { margin: 0; font-weight: 700; font-size: var(--step-0); color: var(--color-text); }
.price_services dd { margin: 4px 0 0; font-size: var(--step--1); color: var(--color-muted); }
.price_services .unit { display: inline-block; min-width: 48px; font-weight: 700; }
.price_services .hint { margin-left: 6px; color: color-mix(in oklab, var(--color-muted), white 15%); }

/* Coverage */
.coverage_wrap { display: grid; gap: clamp(20px, 4vw, 36px); }
.coverage_list { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); list-style: none; padding: 0; margin: 0; }
.coverage_list li { padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--glass); box-shadow: var(--shadow); font-weight: 600; }

/* Flow */
.flow_wrap { display: grid; gap: clamp(24px, 4vw, 40px); }
.flow_steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.flow_steps li { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px 26px; background: var(--glass); box-shadow: var(--shadow); display: grid; gap: 14px; }
.step_badge { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; background: color-mix(in oklab, var(--color-primary), white 24%); color: #111; }
.flow_steps h3 { margin: 0; font-size: var(--step-1); }
.flow_steps p { margin: 0; color: var(--color-muted); }

/* FAQ */
.faq_wrap { display: grid; gap: 24px; }
.faq_list { display: grid; gap: 14px; }
.faq_list details { border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; background: var(--glass); box-shadow: var(--shadow); transition: border-color .2s ease, box-shadow .2s ease; }
.faq_list summary { cursor: pointer; font-weight: 700; list-style: none; position: relative; padding-right: 28px; }
.faq_list summary::after { content: "+"; position: absolute; right: 0; top: 0; font-size: var(--step-1); color: var(--color-primary); transition: transform .2s ease; }
.faq_list details[open] { border-color: color-mix(in oklab, var(--color-primary), var(--border) 40%); box-shadow: 0 20px 30px rgba(16, 24, 40, .12); }
.faq_list details[open] summary::after { content: "−"; transform: scale(1.1); }
.faq_list p { margin: 12px 0 0; color: var(--color-muted); }

/* Contact */
.contact_layout { display: grid; gap: clamp(24px, 4vw, 40px); grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); align-items: start; }
.contact_panel { padding: clamp(24px, 4vw, 36px); display: grid; gap: 22px; border-radius: calc(var(--radius) + 6px); border: 1px solid var(--border); background: var(--glass); box-shadow: var(--shadow); }
.contact_actions { display: grid; gap: 12px; }
.contact_meta { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: var(--step--1); color: var(--color-muted); }
.contact_meta a { color: var(--color-primary); font-weight: 600; }
.contact_media { display: grid; gap: 18px; }
.map_frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: #0b1726; }
.map_frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.map_frame figcaption { margin: 0; padding: 12px 16px; font-size: var(--step--1); color: color-mix(in oklab, var(--color-text), var(--color-muted) 45%); background: rgba(255,255,255,.85); }
.contact_badge { padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--glass); box-shadow: var(--shadow); }
.contact_badge ul { margin: 10px 0 0; padding-left: 1.1em; color: var(--color-muted); line-height: 1.6; }
.badge_title { margin: 0; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: .08em; }

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

/* Buttons */
.btn_lg { padding: 14px 24px; font-size: var(--step-0); border-radius: 999px; }
.btn_outline { border: 1px solid color-mix(in oklab, var(--color-primary), var(--border) 55%); color: var(--color-primary); }
.btn_outline:hover { background: color-mix(in oklab, var(--color-primary), white 82%); }
.btn_primary { box-shadow: 0 18px 40px rgba(240, 122, 26, .28); }

/* Footer */
.site_footer { background: color-mix(in oklab, var(--color-bg), white 6%); border-top: 1px solid var(--border); }
.footer_inner { flex-wrap: wrap; }
.toplink { color: var(--color-primary); font-weight: 600; }

/* Dark theme adjustments */
:root[data-theme="dark"] body { background: radial-gradient(circle at 0% -40%, rgba(39,86,158,.2), transparent 60%), #060910; }
:root[data-theme="dark"] .service_card,
:root[data-theme="dark"] .contact_panel,
:root[data-theme="dark"] .testimonial,
:root[data-theme="dark"] .assurance_list li,
:root[data-theme="dark"] .faq_list details,
:root[data-theme="dark"] .flow_steps li,
:root[data-theme="dark"] .fact_list div,
:root[data-theme="dark"] .coverage_list li,
:root[data-theme="dark"] .contact_badge,
:root[data-theme="dark"] .table_wrap {
  background: var(--card-glass);
  border: 1px solid color-mix(in oklab, var(--border), white 6%);
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
:root[data-theme="dark"] .section_alt { background: color-mix(in oklab, var(--color-bg), white 4%); }
:root[data-theme="dark"] .hero_points li { background: rgba(255,255,255,.08); }
:root[data-theme="dark"] .map_frame figcaption { background: rgba(15,21,35,.85); color: #d7deff; }

/* FAQ animation */
@media (prefers-reduced-motion: no-preference) {
  .faq_list details[open] > *:not(summary) { animation: faqReveal .3s ease both; }
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

/* Small screens */
@media (max-width: 520px) {
  .btn_lg { width: 100%; justify-content: center; }
  .cta_row { flex-direction: column; align-items: stretch; }
  .header_actions { flex-direction: row; flex-wrap: wrap; }
}

/* Misc */
.link_arrow::after { content: "\2192"; margin-left: .4em; }
.to_top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .2s ease;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--border);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: var(--step-0);
  font-weight: 700;
}







.nav_toggle {
  color: var(--color-text);
}
.nav_toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
@media (max-width: 880px) {
  .header_inner { flex-wrap: wrap; justify-content: space-between; }
  .nav_toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px;
    height: 36px;
    border: 1px solid color-mix(in oklab, var(--border), var(--color-text) 18%);
    border-radius: 12px;
    background: color-mix(in oklab, var(--glass), var(--color-bg) 8%);
    padding: 0;
  }
  .header_actions { order: 3; width: 100%; justify-content: flex-start; }
}
