:root {
  --navy: #062B50;
  --navy-dark: #071D35;
  --red: #E3262E;
  --red-hover: #c41f26;
  --white: #FFFFFF;
  --bg-light: #F4F6F8;
  --text-secondary: #5b6b7c;
  --text-primary: #3d4c5c;
  --muted-light: #9fb0c3;
  --muted-lighter: #c7d3e0;
  --border-card: #e6eaef;
  --border-input: #d7dee5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1a2733;
  -webkit-font-smoothing: antialiased;
  background: #fff;
}

h1, h2, h3 { font-family: 'Sora', sans-serif; margin: 0; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--navy); }

input, select, textarea { font-family: 'Inter', sans-serif; }
img, svg { max-width: 100%; }

::selection { background: var(--red); color: #fff; }

.wrap { max-width: 1280px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* Fade-up animation */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp .6s ease both; }

/* ---------- Top contact bar ---------- */
.topbar { background: var(--navy-dark); color: #fff; font-size: 13px; }
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 9px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; min-width: 0; }
.topbar-link { color: #fff; display: flex; align-items: center; gap: 6px; font-weight: 500; min-width: 0; overflow-wrap: anywhere; }
.topbar-link:hover { color: #fff; opacity: .85; }
.topbar-trust { color: var(--muted-light); display: flex; align-items: center; gap: 6px; }
.btn-topbar {
  background: var(--red); color: #fff; padding: 7px 16px; border-radius: 6px; font-weight: 600; white-space: nowrap;
}
.btn-topbar:hover { background: var(--red-hover); color: #fff; }

/* ---------- Header / nav ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.07);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  min-width: 0;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-text { line-height: 1.05; white-space: nowrap; flex: none; }
.logo-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); letter-spacing: .5px; white-space: nowrap; }
.logo-title span { color: var(--red); font-weight: 800; }
.logo-sub { font-size: 9px; font-weight: 600; letter-spacing: 1.5px; color: var(--text-secondary); white-space: nowrap; }

.desktop-nav { display: flex; gap: 22px; flex: none; }
.desktop-nav a { color: var(--navy); font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.desktop-nav a:hover { color: var(--red); }

.menu-btn { display: none; background: none; border: none; padding: 6px; cursor: pointer; }

.mobile-nav { display: none; flex-direction: column; padding: 8px 24px 18px; border-top: 1px solid #eee; gap: 2px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 0; color: var(--navy); font-weight: 600; }
.mobile-nav .btn-mobile-cta {
  margin-top: 8px; background: var(--red); color: #fff; text-align: center; padding: 11px; border-radius: 6px; font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; height: clamp(76px, 9.75vw, 140px); pointer-events: none; }
.hero-photo { width: 100%; height: auto; display: block; }
.btn-primary {
  background: var(--red); color: #fff; padding: 15px 28px; border-radius: 7px; font-weight: 700; font-size: 15.5px; white-space: nowrap; display: inline-block;
}
.btn-primary:hover { background: var(--red-hover); color: #fff; }
.btn-outline {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); padding: 15px 28px; border-radius: 7px; font-weight: 700; font-size: 15.5px; white-space: nowrap; display: inline-block;
}
.btn-outline:hover { border-color: #fff; color: #fff; }
.placeholder-caption {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: #6b7d8f;
}
.placeholder-caption span { font-family: ui-monospace, monospace; font-size: 12px; text-align: center; padding: 0 20px; }

/* ---------- Trust value cards ---------- */
.trust-section { background: var(--bg-light); padding: 56px 24px 70px; margin-top: -40px; border-radius: 20px 20px 0 0; position: relative; z-index: 2; }
.grid-4 { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.trust-card { background: #fff; border-radius: 10px; padding: 28px 22px; border: 1px solid var(--border-card); box-shadow: 0 10px 28px rgba(6, 43, 80, 0.05); min-width: 0; }
.trust-card h3 { font-size: 17px; color: var(--navy); margin-top: 14px; font-weight: 700; }
.trust-card p { color: var(--text-secondary); font-size: 14px; margin-top: 6px; line-height: 1.5; }

/* ---------- Services ---------- */
.section { padding: 90px 24px; }
.section-intro { max-width: 640px; margin: 0 auto; text-align: center; }
.section-intro h2 { font-size: 34px; color: var(--navy); font-weight: 800; letter-spacing: -.3px; }
.section-intro p { color: var(--text-secondary); font-size: 16.5px; margin-top: 16px; line-height: 1.6; }

.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; margin-top: 52px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.service-card { border: 1px solid var(--border-card); border-radius: 10px; padding: 28px; transition: border-color .15s ease, transform .2s ease, box-shadow .2s ease; box-shadow: 0 10px 26px rgba(6, 43, 80, 0.04); min-width: 0; }
.service-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(6, 43, 80, 0.07); }
.service-card h3 { color: var(--navy); font-size: 18.5px; font-weight: 700; margin-top: 16px; }
.service-card p { color: var(--text-secondary); font-size: 14.5px; margin-top: 8px; line-height: 1.55; }

/* ---------- About ---------- */
.about-section { padding: 90px 24px; background: var(--bg-light); }
.about-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 60px; align-items: center; }
.about-image { border-radius: 10px; overflow: hidden; position: relative; border: 1px solid #e0e5ea; background: #fff; aspect-ratio: 1586 / 992; }
.about-photo { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.about-copy h2 { font-size: 32px; color: var(--navy); font-weight: 800; letter-spacing: -.3px; line-height: 1.2; }
.about-copy p.body { color: var(--text-primary); font-size: 16.5px; line-height: 1.7; margin-top: 22px; }
.pull-quote {
  border-left: 3px solid var(--red); padding-left: 18px; margin-top: 26px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 19px; color: var(--navy); line-height: 1.4;
}

/* ---------- Why choose us ---------- */
.why-section { background: var(--navy); padding: 90px 24px; }
.why-section h2 { color: #fff; font-size: 34px; font-weight: 800; text-align: center; letter-spacing: -.3px; }
.why-grid { max-width: 1280px; margin: 56px auto 0; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 32px 24px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-badge {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; color: var(--red);
  border: 1.5px solid rgba(227,38,46,.5); border-radius: 50%; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.why-item h3 { color: #fff; font-size: 16px; font-weight: 700; margin-top: 4px; }

/* ---------- Safety ---------- */
.safety-section { padding: 90px 24px; background: #fff; }
.safety-intro { max-width: 1000px; margin: 0 auto; text-align: center; }
.safety-intro h2 { font-size: 34px; color: var(--navy); font-weight: 800; letter-spacing: -.3px; }
.safety-intro p { color: var(--text-secondary); font-size: 16.5px; margin-top: 14px; line-height: 1.6; }
.grid-2 { max-width: 900px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px 40px; }
.safety-item { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 600; font-size: 15px; }
.safety-item svg { flex: none; }
.safety-badge-bar {
  max-width: 900px; margin: 44px auto 0; background: var(--navy); border-radius: 12px; padding: 22px 30px;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.safety-badge-bar span { color: #fff; font-weight: 700; font-size: 15px; }

/* ---------- Process ---------- */
.process-section { padding: 90px 24px; background: var(--bg-light); }
.process-section h2 { font-size: 32px; color: var(--navy); font-weight: 800; text-align: center; letter-spacing: -.3px; }
.process-step { text-align: center; min-width: 0; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.process-step h3 { color: var(--navy); font-size: 18px; font-weight: 700; margin-top: 18px; }
.process-step p { color: var(--text-secondary); font-size: 14.5px; margin-top: 8px; line-height: 1.55; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); padding: 70px 24px; text-align: center; }
.cta-band h2 { color: #fff; font-size: 32px; font-weight: 800; letter-spacing: -.3px; }
.cta-band p { color: #ffd9da; font-size: 16.5px; margin-top: 14px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.btn-cta-navy { background: var(--navy); color: #fff; padding: 15px 28px; border-radius: 7px; font-weight: 700; font-size: 15.5px; white-space: nowrap; }
.btn-cta-navy:hover { background: var(--navy-dark); color: #fff; }
.btn-cta-white { background: #fff; color: var(--red); padding: 15px 28px; border-radius: 7px; font-weight: 700; font-size: 15.5px; white-space: nowrap; }
.btn-cta-white:hover { background: #f4f4f4; color: var(--red); }

/* ---------- Contact ---------- */
.contact-section { padding: 90px 24px; background: #fff; }
.contact-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 56px; }
.contact-grid h2 { font-size: 30px; color: var(--navy); font-weight: 800; letter-spacing: -.3px; }
.contact-grid > div:first-child > p { color: var(--text-secondary); font-size: 15.5px; margin-top: 12px; line-height: 1.6; }
.contact-card { margin-top: 32px; background: var(--bg-light); border-radius: 12px; padding: 26px; box-shadow: 0 10px 24px rgba(6, 43, 80, 0.04); }
.contact-card .name { font-weight: 700; color: var(--navy); font-size: 17px; }
.contact-card .title { color: var(--text-secondary); font-size: 14px; margin-top: 2px; }
.contact-card .links { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.contact-card .links a { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 600; font-size: 14.5px; }
.contact-card .links a svg { flex: none; }

.success-panel { background: var(--bg-light); border-radius: 12px; padding: 48px; text-align: center; box-shadow: 0 12px 30px rgba(6, 43, 80, 0.04); }
.success-panel svg { margin: 0 auto; display: block; }
.success-panel h3 { color: var(--navy); font-size: 20px; font-weight: 700; margin-top: 16px; }
.success-panel p { color: var(--text-secondary); font-size: 14.5px; margin-top: 8px; max-width: 380px; margin-left: auto; margin-right: auto; line-height: 1.6; }

form.contact-form {
  background: var(--bg-light); border-radius: 12px; padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  box-shadow: 0 12px 30px rgba(6, 43, 80, 0.04);
}
.form-full { grid-column: span 2; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; box-sizing: border-box; padding: 11px 13px; border-radius: 7px; border: 1px solid var(--border-input); font-size: 14.5px;
}
.field select { background: #fff; }
.field textarea { resize: vertical; font-family: inherit; }
.field input.error, .field select.error { border-color: var(--red); }
.field-error { color: var(--red); font-size: 12.5px; margin-top: 5px; }
.radio-row { display: flex; gap: 16px; padding-top: 6px; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-primary); white-space: nowrap; font-weight: 400; }
.radio-row input[type="radio"] {
  width: auto;
  min-height: 0;
  padding: 0;
  flex: none;
}
.btn-submit {
  width: 100%; background: var(--red); color: #fff; border: none; padding: 15px; border-radius: 7px;
  font-weight: 700; font-size: 15.5px; cursor: pointer;
}
.btn-submit:hover { background: var(--red-hover); }
.form-note { color: #8b98a5; font-size: 11.5px; margin-top: 10px; text-align: center; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-dark); padding: 56px 24px 28px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,1fr) minmax(0,1fr); gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; color: #fff; white-space: nowrap; }
.footer-logo-title span { color: var(--red); }
.footer-logo-sub { font-weight: 600; font-size: 10.5px; color: var(--muted-light); letter-spacing: 1.5px; white-space: nowrap; }
.footer-desc { color: var(--muted-light); font-size: 14px; margin-top: 16px; line-height: 1.6; max-width: 340px; }
.footer-col-title { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-links span { color: var(--muted-light); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px; margin: 40px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  color: #6f8194; font-size: 12.5px; text-align: center;
}

.section-intro h2,
.section-intro p,
.trust-card h3,
.trust-card p,
.service-card h3,
.service-card p,
.about-copy h2,
.about-copy p,
.why-item h3,
.process-step h3,
.process-step p,
.contact-grid h2,
.contact-card .links a {
  overflow-wrap: anywhere;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  body { overflow-x: hidden; }
  .topbar-inner {
    padding: 8px 18px;
    justify-content: center;
    gap: 10px;
  }
  .topbar-left {
    width: 100%;
    justify-content: center;
    gap: 8px 16px;
    text-align: center;
  }
  .topbar-trust {
    width: 100%;
    justify-content: center;
  }
  .btn-topbar { display: none; }
  .header-inner { padding: 12px 18px; }
  .logo-link { min-width: 0; }
  .logo-link > svg { width: 31px; height: 31px; flex: none; }
  .logo-text { min-width: 0; white-space: normal; }
  .logo-title { font-size: 13px; }
  .logo-sub { font-size: 8px; letter-spacing: 1.1px; }
  .desktop-nav { display: none !important; }
  .menu-btn { display: block !important; }
  .mobile-nav {
    padding: 8px 18px 18px;
    box-shadow: 0 12px 20px rgba(6, 43, 80, 0.08);
  }
  .mobile-nav a {
    padding: 12px 2px;
    font-size: 15px;
  }
  .hero { min-height: 0; height: auto; background: #062b50; }
  .hero-photo { width: 100%; height: auto; }
  .hero-wave { height: 58px; }
  .hero-copy { max-width: 92%; }
  .hero-copy h1 { font-size: clamp(2.2rem, 8vw, 3.3rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .trust-section {
    margin-top: -18px;
    padding: 34px 18px 48px;
    border-radius: 16px 16px 0 0;
  }
  .grid-4 { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  form.contact-form { grid-template-columns: 1fr !important; }
  .form-full { grid-column: span 1 !important; }
  .section,
  .about-section,
  .why-section,
  .safety-section,
  .process-section,
  .contact-section {
    padding: 58px 18px;
  }
  .grid-4,
  .grid-3,
  .why-grid,
  .grid-2 {
    gap: 16px;
  }
  .grid-3 { margin-top: 32px; }
  .why-grid { margin-top: 34px; }
  .section-intro h2,
  .why-section h2,
  .safety-intro h2,
  .cta-band h2 {
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.18;
  }
  .section-intro p,
  .safety-intro p,
  .cta-band p,
  .about-copy p.body {
    font-size: 15.5px;
  }
  .trust-card,
  .service-card,
  .contact-card,
  form.contact-form,
  .success-panel {
    border-radius: 8px;
  }
  .trust-card,
  .service-card {
    padding: 22px;
  }
  .about-grid { gap: 30px; }
  .about-copy h2,
  .process-section h2,
  .contact-grid h2 {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.2;
  }
  .pull-quote { font-size: 17px; }
  .why-grid {
    grid-template-columns: 1fr !important;
  }
  .why-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    padding: 15px;
  }
  .safety-item {
    align-items: flex-start;
    line-height: 1.45;
  }
  .safety-badge-bar {
    margin-top: 30px;
    padding: 18px;
    border-radius: 8px;
    text-align: center;
  }
  .cta-band { padding: 54px 18px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-cta-navy,
  .btn-cta-white {
    width: 100%;
    padding: 14px 18px;
  }
  .contact-grid { gap: 28px; }
  .contact-grid > div:first-child > svg {
    width: min(230px, 100%);
  }
  .contact-card { padding: 22px; }
  .contact-card .links a {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }
  form.contact-form {
    padding: 22px;
    gap: 16px;
  }
  .field input,
  .field select,
  .field textarea {
    min-height: 46px;
    font-size: 16px;
    padding: 12px 13px;
  }
  .field textarea { min-height: 118px; }
  .radio-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .radio-row label {
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--border-input);
    border-radius: 7px;
    background: #fff;
    justify-content: flex-start;
    white-space: normal;
  }
  .btn-submit {
    min-height: 48px;
    padding: 14px 18px;
  }
  .form-note { line-height: 1.45; }
  footer.site-footer { padding: 44px 18px 24px; }
}

@media (max-width: 520px) {
  .topbar { font-size: 12.5px; }
  .topbar-left { align-items: center; }
  .topbar-link {
    max-width: 100%;
    justify-content: center;
  }
  .hero-photo { min-height: 0; }
  .section,
  .about-section,
  .why-section,
  .safety-section,
  .process-section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .trust-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about-image { border-radius: 8px; }
  .service-card h3,
  .process-step h3 {
    font-size: 17px;
  }
  .contact-card,
  form.contact-form,
  .success-panel {
    padding: 18px;
  }
  .radio-row {
    grid-template-columns: 1fr;
  }
  .footer-logo-title { font-size: 14px; }
  .footer-logo-sub { font-size: 9.5px; }
}
