@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #14304D;
  --navy-dark: #0C2038;
  --steel: #3D6B8C;
  --steel-light: #6E97B5;
  --plomo: #4B5560;
  --plomo-light: #7C868F;
  --bg: #E9EBEE;
  --bg-alt: #FFFFFF;
  --ice: #C7D6E0;
  --line: #D8DEE3;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--navy-dark);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy-dark);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-dark);
  white-space: nowrap;
  line-height: 1;
}

footer .logo { font-size: 26px; }

.logo span { color: var(--steel); }

nav.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--plomo);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--navy-dark);
  border-bottom-color: var(--steel);
}

.btn-whatsapp {
  background: var(--navy-dark);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.btn-whatsapp:hover { background: var(--steel); }

/* Hero */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
}

.hero .eyebrow {
  color: var(--steel);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 52px;
  max-width: 680px;
  margin-bottom: 24px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--plomo);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--navy-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: background 0.15s ease;
}

.btn-primary:hover { background: var(--steel); }

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--navy-dark);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-secondary:hover { border-color: var(--steel); background: var(--bg-alt); }

/* Stat strip */
.stats {
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.stats .wrap {
  display: flex;
  gap: 56px;
  padding: 40px 32px;
  flex-wrap: wrap;
}

.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--navy-dark);
}

.stat .label {
  font-size: 14px;
  color: var(--plomo);
  margin-top: 4px;
}

/* Insurer trust strip — auto-scrolling */
.insurer-strip {
  border-bottom: 1px solid var(--line);
  background: var(--navy-dark);
  padding: 24px 0;
  overflow: hidden;
}

.insurer-strip .strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.insurer-strip .strip-label {
  color: var(--ice);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-left: 32px;
  flex-shrink: 0;
}

.insurer-strip .marquee {
  overflow: hidden;
  flex: 1;
  -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.insurer-strip .marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  animation: scroll-left 26s linear infinite;
}

.insurer-strip .marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.insurer-strip .names {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.insurer-strip .names span {
  background: var(--white);
  border-radius: 6px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.insurer-strip .names img {
  max-height: 34px;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 100;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover { transform: scale(1.07); }

.whatsapp-float svg { width: 28px; height: 28px; }

/* Contact form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}

.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-form-card p.form-sub {
  color: var(--plomo);
  font-size: 15px;
  margin-bottom: 28px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--navy-dark);
  background: var(--bg-alt);
}

.form-field textarea { resize: vertical; min-height: 90px; }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--steel);
  background: var(--white);
}

.form-submit {
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s ease;
}

.form-submit:hover { background: var(--steel); }

/* Video section */
.video-frame {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.video-frame video {
  width: 100%;
  height: auto;
  display: block;
}

/* Category groups with icon header */
.category-intro {
  font-size: 15px;
  color: var(--plomo);
  margin-bottom: 24px;
  max-width: 560px;
}
.category-group { margin-bottom: 56px; }

.category-group:last-child { margin-bottom: 0; }

.category-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--navy-dark);
  padding-bottom: 12px;
}

.category-head h3 {
  font-size: 24px;
}

.category-head .count {
  color: var(--steel);
  font-size: 14px;
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
}

/* Hero with image */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.section-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  margin-bottom: 48px;
}

/* Sections */
section.block {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

section.block.alt { background: var(--bg-alt); }

.section-head { max-width: 620px; margin-bottom: 48px; }

.section-head .eyebrow {
  color: var(--steel);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head h2 { font-size: 34px; margin-bottom: 14px; }

.section-head p { color: var(--plomo); font-size: 17px; }

/* Service list (numbered — genuinely a sequence of distinct offerings) */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-item {
  background: var(--bg);
  padding: 36px;
}

.service-item .n {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 14px;
}

.service-item h3 { font-size: 21px; margin-bottom: 10px; }

.service-item p { color: var(--plomo); font-size: 15px; }

/* Process steps */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child { border-bottom: 1px solid var(--line); }

.process-step .n {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--steel-light);
  font-weight: 600;
}

.process-step h3 { font-size: 21px; margin-bottom: 6px; }

.process-step p { color: var(--plomo); font-size: 15px; max-width: 520px; }

/* Values / about grid */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.value-grid h3 {
  font-size: 21px;
  margin-bottom: 8px;
  border-top: 2px solid var(--navy-dark);
  padding-top: 14px;
}

.value-grid p { color: var(--plomo); font-size: 15px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
}

.contact-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.contact-item .label {
  font-size: 13px;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-item .value { font-size: 18px; color: var(--navy-dark); }

.contact-item a.value:hover { color: var(--steel); }

.contact-card {
  background: var(--navy-dark);
  color: var(--white);
  padding: 44px;
  border-radius: 6px;
}

.contact-card h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-card p { color: var(--ice); font-size: 15px; margin-bottom: 28px; }

/* Footer */
footer {
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer .logo { font-size: 18px; }

footer .foot-links { display: flex; gap: 24px; }

footer .foot-links a { color: var(--plomo); font-size: 14px; }

footer .foot-links a:hover { color: var(--navy-dark); }

footer .copyright { color: var(--plomo-light); font-size: 13px; margin-top: 24px; }

/* Responsive */
@media (max-width: 760px) {
  .header-inner { padding: 16px 20px; }
  nav.main-nav { display: none; }
  .wrap { padding: 0 20px; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 17px; }
  .service-list { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media img { height: 220px; }
  .section-media img { height: 200px; margin-bottom: 32px; }
  .value-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats .wrap { gap: 32px; padding: 28px 20px; }
  section.block { padding: 56px 0; }
}
