:root {
  --navy: #062b46;
  --navy-2: #0b3f63;
  --teal: #078aa6;
  --gold: #d99a18;
  --sand: #f6f1e7;
  --white: #ffffff;
  --muted: #667085;
  --text: #152333;
  --line: #e6edf2;
  --shadow: 0 18px 45px rgba(6, 43, 70, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

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

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 9px 0;
}
.topbar-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.topbar a { color: rgba(255,255,255,.95); }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6, 43, 70, .08);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 18px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; min-width: 220px; }
.logo-wrap img { width: 154px; height: auto; }
.logo-fallback { font-weight: 800; letter-spacing: .04em; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 650; color: var(--navy); }
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang { font-weight: 800; color: var(--navy); display: flex; gap: 6px; align-items: center; }
.lang a { padding: 7px 9px; border-radius: 999px; }
.lang a.active { background: var(--sand); color: var(--teal); }
.menu-toggle { display: none; border: 0; background: var(--navy); color: white; border-radius: 12px; padding: 10px 12px; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #14100a; box-shadow: 0 14px 30px rgba(217,154,24,.22); }
.btn-primary:hover { background: #e5aa2c; }
.btn-dark { background: var(--navy); color: white; }
.btn-outline { border-color: rgba(6,43,70,.2); color: var(--navy); background: white; }
.btn-white { background: white; color: var(--navy); }
.btn-small { padding: 10px 14px; font-size: 14px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  background: linear-gradient(100deg, rgba(6,43,70,.92) 0%, rgba(6,43,70,.78) 42%, rgba(6,43,70,.16) 70%, rgba(6,43,70,.06) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(7,138,166,.22), transparent 34%);
  z-index: -1;
}
.hero-content { max-width: 640px; color: white; padding: 90px 0; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: 13px; font-weight: 900; }
.hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: .98; margin: 14px 0 20px; letter-spacing: -0.05em; }
.hero p { font-size: 20px; color: rgba(255,255,255,.9); max-width: 580px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: white; padding: 9px 12px; border-radius: 999px; font-size: 14px; font-weight: 800; }

.section { padding: 92px 0; }
.section.alt { background: var(--sand); }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.05; margin: 10px 0 12px; color: var(--navy); letter-spacing: -0.04em; }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(6,43,70,.06);
}
.card-img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; background: linear-gradient(135deg, #e6f6fa, #f8f2df); }
.card-body { padding: 22px; }
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 22px; line-height: 1.15; }
.card p { margin: 0 0 16px; color: var(--muted); }
ul.clean { list-style: none; padding: 0; margin: 0 0 18px; }
ul.clean li { padding: 6px 0 6px 24px; position: relative; color: #35485b; }
ul.clean li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); position: absolute; left: 0; top: 16px; }

.video-card {
  background: var(--navy);
  border-radius: 30px;
  padding: 24px;
  color: white;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
}
.video-frame {
  min-height: 360px;
  background: linear-gradient(135deg, rgba(7,138,166,.45), rgba(217,154,24,.26)), var(--poster-image);
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
}
.play-circle { width: 86px; height: 86px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--navy); font-size: 32px; box-shadow: 0 18px 50px rgba(0,0,0,.22); }
.video-copy h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.05; margin: 0 0 14px; }
.video-copy p { color: rgba(255,255,255,.82); margin: 0 0 22px; }

.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 28px rgba(6,43,70,.06); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images figure { margin: 0; position: relative; }
.ba-images img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.label { position: absolute; left: 10px; top: 10px; background: rgba(6,43,70,.86); color: white; padding: 5px 9px; border-radius: 999px; font-size: 12px; font-weight: 900; }
.ba-card .card-body { padding: 18px; }

.feature-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { padding: 24px; border-radius: var(--radius); background: white; border: 1px solid var(--line); }
.feature strong { color: var(--navy); display: block; font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); margin: 0; }

.area-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-list span { background: white; border: 1px solid var(--line); padding: 10px 14px; border-radius: 999px; color: var(--navy); font-weight: 800; }

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  border-radius: 34px;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}
.cta-band h2 { margin: 0 0 8px; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.04em; }
.cta-band p { margin: 0; color: rgba(255,255,255,.82); }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: white; padding: 92px 0; }
.page-hero h1 { font-size: clamp(42px, 6vw, 66px); margin: 10px 0 14px; letter-spacing: -0.05em; line-height: 1; }
.page-hero p { color: rgba(255,255,255,.84); font-size: 19px; max-width: 740px; }
.breadcrumb { color: var(--gold); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }

.service-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; padding: 34px; border-radius: 30px; background: white; border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(6,43,70,.06); margin-bottom: 26px; }
.service-row.reverse { grid-template-columns: 1.1fr .9fr; }
.service-row img { border-radius: 24px; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--sand); }
.service-row h2 { color: var(--navy); font-size: 36px; line-height: 1.05; margin: 0 0 12px; }
.service-note { font-size: 14px; color: var(--muted); background: var(--sand); padding: 12px 14px; border-radius: 14px; margin: 14px 0; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.filter-btn { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 800; color: var(--navy); }
.filter-btn.active { background: var(--navy); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { border-radius: 18px; overflow: hidden; position: relative; background: var(--sand); border: 1px solid var(--line); }
.gallery-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; left: 10px; bottom: 10px; right: 10px; background: rgba(6,43,70,.84); color: white; border-radius: 12px; padding: 8px 10px; font-size: 13px; font-weight: 800; }

.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photo-grid img { border-radius: 22px; width: 100%; object-fit: cover; aspect-ratio: 4 / 5; background: var(--sand); }
.about-photo-grid img:first-child { grid-row: span 2; aspect-ratio: 4 / 5.7; }
.about-copy h2 { color: var(--navy); font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin: 0 0 18px; }
.about-copy p { color: var(--muted); font-size: 18px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
.contact-card, .form-card { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: 0 12px 32px rgba(6,43,70,.06); }
.contact-card h3, .form-card h3 { margin-top: 0; color: var(--navy); }
.contact-list { display: grid; gap: 14px; }
.contact-list a, .contact-list div { padding: 14px; background: var(--sand); border-radius: 16px; color: var(--navy); font-weight: 800; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; background: #fbfdff; color: var(--text); }
textarea { min-height: 130px; resize: vertical; }
.form-help { color: var(--muted); font-size: 14px; margin: 8px 0 18px; }

.footer { background: #041d30; color: rgba(255,255,255,.82); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .8fr; gap: 24px; margin-bottom: 34px; }
.footer h4 { color: white; margin: 0 0 12px; }
.footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.82); }
.footer-logo { max-width: 170px; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; font-size: 14px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

.placeholder-note { background: #fff7e2; border: 1px solid #f2d68c; border-radius: 16px; padding: 14px; color: #5b4100; font-weight: 700; }

@media (max-width: 980px) {
  .grid-4, .feature-list, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .before-after-grid { grid-template-columns: 1fr; }
  .video-card, .service-row, .service-row.reverse, .about-layout, .contact-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 640px; background: linear-gradient(100deg, rgba(6,43,70,.94) 0%, rgba(6,43,70,.78) 70%, rgba(6,43,70,.4) 100%); }
}

@media (max-width: 760px) {
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .menu-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; left: 16px; right: 16px; top: 77px; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 16px; flex-direction: column; align-items: flex-start; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-actions .btn { display: none; }
  .logo-wrap img { width: 128px; }
  .hero-content { padding: 70px 0; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 18px; }
  .section { padding: 64px 0; }
  .grid-4, .grid-2, .feature-list, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 30px; border-radius: 24px; }
  .video-frame { min-height: 260px; }
}

/* V2 refinements: stronger trust cards and clearer service language */
.feature {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(6,43,70,.08);
  border-color: rgba(7,138,166,.22);
}
.feature-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(7,138,166,.12), rgba(217,154,24,.15));
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
}
.feature strong {
  font-size: 19px;
}
.hero-cta .btn-white,
.cta-buttons .btn-white {
  border: 1px solid rgba(6,43,70,.08);
}
.card h3,
.service-row h2 {
  text-wrap: balance;
}
@media (max-width: 740px) {
  .feature-icon { width: 40px; height: 40px; border-radius: 14px; }
}


/* V3 layout refinements: cleaner header, visible hero image, cleaner trust cards */
.topbar { display: none; }
.header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); }
.nav { padding: 12px 0; }
.logo-wrap { min-width: 150px; }
.logo-wrap img { width: 116px; max-height: 92px; object-fit: contain; }

.hero {
  min-height: auto;
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy), #0b4166 64%, #e9f5f8 64%);
}
.hero::before,
.hero::after { display: none; }
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .82fr);
  align-items: center;
  gap: 42px;
}
.hero-content { padding: 0; max-width: 620px; }
.hero h1 { font-size: clamp(40px, 5.5vw, 66px); }
.hero-media {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #e2f7fb, #f8f1da);
  border: 1px solid rgba(255,255,255,.7);
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(6,43,70,.16);
}
.hero-badge small { display: block; color: var(--muted); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }

.feature { padding: 26px; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(7,138,166,.12), rgba(217,154,24,.16));
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .hero { padding: 54px 0; background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { min-height: 340px; order: -1; }
  .hero-media img { min-height: 340px; }
}

@media (max-width: 760px) {
  .nav { padding: 10px 0; }
  .logo-wrap img { width: 94px; }
  .hero { padding: 36px 0 54px; }
  .hero h1 { font-size: 38px; }
  .hero-media { min-height: 280px; border-radius: 24px; }
  .hero-media img { min-height: 280px; }
  .hero-badge { left: 14px; right: 14px; bottom: 14px; border-radius: 14px; }
}


/* V4 conversion refinements: process steps, clearer contact actions */
.cta-note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
}
.process-section { background: linear-gradient(180deg, #ffffff, #f7fbfc); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(6,43,70,.06);
}
.process-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 900;
  margin-bottom: 16px;
}
.process-step h3 {
  color: var(--navy);
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}
.process-step p { margin: 0; color: var(--muted); }
.how-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.how-band h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.how-band p { color: rgba(255,255,255,.8); margin: 0; }
.mini-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mini-process-item {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 18px;
}
.mini-process-item strong { display: block; color: white; margin-bottom: 6px; }
.mini-process-item p { font-size: 14px; }
.contact-list a.contact-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
}
.contact-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: white;
  color: var(--teal);
  font-weight: 900;
}
.contact-text strong { display: block; line-height: 1.15; }
.contact-text small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  word-break: break-word;
}
@media (max-width: 980px) {
  .process-grid, .mini-process { grid-template-columns: 1fr 1fr; }
  .how-band { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .process-grid, .mini-process { grid-template-columns: 1fr; }
  .process-step { padding: 20px; }
  .how-band { padding: 26px; border-radius: 24px; }
  .contact-list a.contact-link { padding: 13px; gap: 10px; }
  .contact-icon { width: 34px; height: 34px; flex-basis: 34px; border-radius: 12px; }
}
