@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --blue: #2e7dff;
  --blue-dark: #1554b8;
  --navy: #0b2447;
  --navy-soft: #17365f;
  --sky: #eaf2ff;
  --ice: #f5f7fa;
  --white: #ffffff;
  --ink: #162033;
  --muted: #667085;
  --line: #dfe6ef;
  --gold: #d8a33a;
  --shadow: 0 18px 50px rgba(11, 36, 71, 0.11);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }
.section-soft { background: var(--ice); }
.section-blue { color: var(--white); background: var(--navy); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ''; background: currentColor; }
.section-blue .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: #8fb9ff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: 'Playfair Display', Georgia, serif; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 5.2vw, 4.9rem); line-height: 1.07; }
h2 { margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.14; }
h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.15rem; line-height: 1.35; }
.section-blue h2, .section-blue h3 { color: var(--white); }
.lead { color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.section-blue .lead { color: #c8d6e9; }
.section-heading { max-width: 730px; margin-bottom: 50px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::after { width: 28px; height: 2px; content: ''; background: currentColor; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .93rem;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(46, 125, 255, .25); }
.btn-primary:hover { background: #176beb; }
.btn-light { color: var(--navy); background: var(--white); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-weight: 700; }
.text-link::after { content: '→'; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.topbar { color: #d8e4f5; background: #071a34; font-size: .82rem; }
.topbar-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--white); }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(223,230,239,.85); background: rgba(255,255,255,.96); transition: box-shadow .25s ease; backdrop-filter: blur(14px); }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(11,36,71,.08); }
.header-inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 1 310px; }
.brand img { width: min(290px, 100%); max-height: 58px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a:not(.btn) { position: relative; padding: 10px 14px; color: #344054; font-size: .92rem; font-weight: 600; }
.site-nav > a:not(.btn)::after { position: absolute; right: 14px; bottom: 5px; left: 14px; height: 2px; content: ''; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.site-nav > a.active:not(.btn), .site-nav > a:not(.btn):hover { color: var(--navy); }
.site-nav > a.active:not(.btn)::after, .site-nav > a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav .btn { min-height: 44px; margin-left: 12px; padding: 9px 18px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); transition: .2s ease; }

.hero { position: relative; min-height: 700px; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { position: absolute; inset: 0; content: ''; background: linear-gradient(90deg, rgba(5,27,57,.4) 0%, rgba(5,27,57,.05) 52%, rgba(5,27,57,.03) 100%); }
.hero-inner { position: relative; z-index: 1; display: flex; min-height: 700px; align-items: center; }
.hero-copy { width: min(650px, 56%); padding: 85px 0 115px; }
.hero h1 { max-width: 650px; margin-bottom: 24px; font-size: clamp(2.8rem, 5vw, 4.75rem); }
.hero .hero-lead { max-width: 610px; color: #dce8f7; font-size: 1.1rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: #e8f0fb; font-size: .86rem; font-weight: 600; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust span::before { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; content: '✓'; color: var(--white); background: rgba(255,255,255,.15); font-size: .7rem; }
.trust-strip { position: relative; z-index: 2; margin-top: -54px; }
.trust-grid { display: grid; overflow: hidden; border: 1px solid rgba(223,230,239,.9); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 30px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.split { display: grid; align-items: center; gap: 70px; grid-template-columns: 1fr 1fr; }
.media-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--sky); box-shadow: var(--shadow); }
.media-card img { width: 100%; height: 560px; object-fit: cover; }
.media-card.short img { height: 450px; }
.media-badge { position: absolute; right: 24px; bottom: 24px; max-width: 220px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.5); border-radius: 16px; color: var(--white); background: rgba(11,36,71,.9); backdrop-filter: blur(12px); }
.media-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.45rem; }
.media-badge span { color: #d5e2f3; font-size: .79rem; }
.check-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list.two-col { grid-template-columns: 1fr 1fr; }
.check-list li { position: relative; padding-left: 30px; color: #344054; font-weight: 600; }
.check-list li::before { position: absolute; top: .23em; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; content: '✓'; color: var(--blue-dark); background: var(--sky); font-size: .68rem; font-weight: 800; }

.cards { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); border-color: #b9cff2; box-shadow: var(--shadow); }
.icon-box { display: grid; width: 48px; height: 48px; margin-bottom: 20px; place-items: center; border-radius: 13px; color: var(--blue); background: var(--sky); font-size: 1.3rem; }
.card p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }
.service-card { min-height: 265px; }
.service-card::before { position: absolute; top: 0; left: 0; width: 0; height: 3px; content: ''; background: var(--blue); transition: width .25s ease; }
.service-card:hover::before { width: 100%; }
.service-number { margin-bottom: 22px; color: #9bb9e7; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; }
.product-banner { display: grid; overflow: hidden; margin-top: 44px; border-radius: var(--radius); color: var(--white); background: var(--navy); grid-template-columns: 1.05fr .95fr; }
.product-banner img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.product-banner-copy { align-self: center; padding: 58px; }
.product-banner-copy p { color: #c7d5e8; }

.process-grid { display: grid; gap: 24px; counter-reset: step; grid-template-columns: repeat(4, 1fr); }
.process-step { position: relative; padding: 28px 24px 10px 0; counter-increment: step; }
.process-step::before { display: grid; width: 52px; height: 52px; margin-bottom: 24px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: '0' counter(step); color: #9ec2ff; font-weight: 700; background: rgba(255,255,255,.06); }
.process-step:not(:last-child)::after { position: absolute; top: 26px; right: 14px; left: 70px; height: 1px; content: ''; background: rgba(255,255,255,.18); }
.process-step p { color: #b9c9dc; font-size: .9rem; }

.testimonial-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.quote-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.quote-mark { color: var(--blue); font-family: Georgia, serif; font-size: 3.5rem; line-height: .8; }
.quote-card blockquote { margin: 12px 0 24px; color: #344054; }
.quote-author { padding-top: 20px; border-top: 1px solid var(--line); }
.quote-author strong { display: block; color: var(--navy); }
.quote-author span { color: var(--muted); font-size: .82rem; }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 2px; border: 0; color: var(--navy); background: transparent; cursor: pointer; text-align: left; font-weight: 700; }
.faq-icon { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 50%; color: var(--blue-dark); background: var(--sky); font-size: 1.25rem; transition: transform .2s ease; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: grid; overflow: hidden; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { min-height: 0; }
.faq-answer p { margin: 0; padding: 0 54px 24px 2px; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.cta-band { padding: 80px 0; color: var(--white); background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { max-width: 760px; margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-inner p { margin-bottom: 0; color: #e4efff; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 12px; }

.page-hero { position: relative; overflow: hidden; padding: 105px 0 100px; color: var(--white); background: var(--navy); }
.page-hero::before { position: absolute; top: -180px; right: -110px; width: 540px; height: 540px; border: 1px solid rgba(143,185,255,.25); border-radius: 50%; content: ''; box-shadow: 0 0 0 95px rgba(143,185,255,.04), 0 0 0 190px rgba(143,185,255,.025); }
.page-hero-copy { position: relative; z-index: 1; max-width: 790px; }
.page-hero h1 { margin-bottom: 22px; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.page-hero p { max-width: 720px; margin-bottom: 0; color: #c8d6e9; font-size: 1.12rem; }
.breadcrumbs { display: flex; gap: 9px; margin-top: 28px; color: #a9bed7; font-size: .84rem; }
.breadcrumbs a:hover { color: var(--white); }

.value-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.value-card { padding: 30px; border-top: 3px solid var(--blue); border-radius: 0 0 var(--radius-sm) var(--radius-sm); background: var(--white); box-shadow: 0 10px 30px rgba(11,36,71,.07); }
.value-card p { margin-bottom: 0; color: var(--muted); }
.stats { display: grid; gap: 1px; overflow: hidden; margin-top: 40px; border-radius: var(--radius); background: rgba(255,255,255,.18); grid-template-columns: repeat(3, 1fr); }
.stat { padding: 32px; background: rgba(255,255,255,.06); }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; }
.stat span { color: #b8cae0; font-size: .84rem; }

.service-list { display: grid; gap: 0 42px; grid-template-columns: 1fr 1fr; }
.service-row { display: grid; padding: 26px 0; border-bottom: 1px solid var(--line); grid-template-columns: 48px 1fr; }
.service-row .service-index { color: var(--blue); font-family: 'Playfair Display', serif; font-weight: 700; }
.service-row p { margin-bottom: 0; color: var(--muted); }
.commitment-box { padding: 60px; border-radius: var(--radius); color: var(--white); background: linear-gradient(135deg, #0b2447, #173f78); }
.commitment-box p { color: #c5d4e7; }

.contact-grid { display: grid; gap: 55px; grid-template-columns: .85fr 1.15fr; }
.contact-list { display: grid; gap: 16px; margin-top: 30px; }
.contact-item { display: grid; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); grid-template-columns: 46px 1fr; }
.contact-item .icon-box { width: 34px; height: 34px; margin: 0; font-size: 1rem; }
.contact-item strong { display: block; color: var(--navy); font-size: .9rem; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .9rem; }
.contact-item a:hover { color: var(--blue-dark); }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .84rem; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cfd8e5; border-radius: 10px; outline: 0; color: var(--ink); background: var(--white); }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 145px; padding: 13px 15px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,125,255,.12); }
.form-note, .form-status { margin: 14px 0 0; color: var(--muted); font-size: .76rem; }
.map-wrap { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 480px; border: 0; }

.site-footer { color: #c1cee0; background: #071a34; }
.footer-main { display: grid; gap: 50px; padding: 75px 0 55px; grid-template-columns: 1.55fr .7fr 1fr 1.2fr; }
.footer-brand img { width: 265px; padding: 10px; border-radius: 8px; background: var(--white); }
.footer-brand p { max-width: 360px; margin: 22px 0; color: #aebed2; font-size: .9rem; }
.footer-title { margin: 5px 0 20px; color: var(--white); font-size: .86rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #b9c8db; font-size: .88rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: grid; gap: 12px; color: #b9c8db; font-size: .88rem; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa3bd; font-size: .78rem; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 14px; color: var(--white); background: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

@media (max-width: 1020px) {
  .topbar { display: none; }
  .header-inner { min-height: 74px; }
  .brand { max-width: 250px; }
  .site-nav > a:not(.btn) { padding-inline: 10px; }
  .site-nav .btn { margin-left: 4px; }
  .hero, .hero-inner { min-height: 650px; }
  .hero-copy { width: 60%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { gap: 45px; }
  .cards, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2)::after { display: none; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; cursor: pointer; }
  .site-nav { position: absolute; z-index: 99; top: 100%; right: 0; left: 0; display: flex; min-height: calc(100vh - 74px); padding: 30px 20px; flex-direction: column; align-items: stretch; gap: 2px; visibility: hidden; background: var(--white); opacity: 0; transform: translateY(-10px); transition: .2s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a:not(.btn) { padding: 15px 6px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav > a:not(.btn)::after { display: none; }
  .site-nav .btn { margin: 18px 0 0; }
  .menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-image { object-position: 60% center; }
  .hero::after { background: linear-gradient(90deg, rgba(5,27,57,.94), rgba(5,27,57,.68) 70%, rgba(5,27,57,.22)); }
  .hero-copy { width: 74%; }
  .split { grid-template-columns: 1fr; }
  .split .media-card { order: -1; }
  .product-banner { grid-template-columns: 1fr; }
  .product-banner img { height: 360px; min-height: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 58px 0; }
  .header-inner { min-height: 68px; }
  .brand { max-width: 225px; }
  .site-nav { min-height: calc(100vh - 68px); }
  .hero, .hero-inner { min-height: 660px; }
  .hero-image { object-position: 67% center; }
  .hero::after { background: rgba(5,27,57,.78); }
  .hero-copy { width: 100%; padding: 80px 0 120px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .hero .hero-lead { font-size: 1rem; }
  .trust-strip { margin-top: -42px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-heading { margin-bottom: 34px; }
  .media-card img { height: 420px; }
  .media-card.short img { height: 340px; }
  .media-badge { right: 14px; bottom: 14px; left: 14px; max-width: none; }
  .check-list.two-col, .cards, .testimonial-grid, .process-grid, .service-list { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .product-banner-copy { padding: 36px 26px; }
  .product-banner img { height: 280px; }
  .page-hero { padding: 82px 0 78px; }
  .stats { grid-template-columns: 1fr; }
  .commitment-box { padding: 36px 25px; }
  .contact-form { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .map-wrap iframe { height: 390px; }
  .cta-band { padding: 65px 0; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-main { gap: 38px; padding-top: 58px; grid-template-columns: 1fr; }
  .footer-bottom { padding: 20px 0; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
/* @vn-deploy:1787104055191 */
