/* =========================================================
   Word Global LLC — Corporate Stylesheet
   Palette: Navy / Corporate Blue
   ========================================================= */

:root {
  --navy: #0a2540;
  --navy-800: #0f2e52;
  --blue: #1f6feb;
  --blue-600: #1859c4;
  --blue-light: #e8f1ff;
  --accent: #17c3b2;
  --ink: #1a2634;
  --slate: #55677d;
  --muted: #8a99ad;
  --line: #e4e9f0;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .06);
  --shadow-md: 0 12px 32px rgba(10, 37, 64, .10);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, .16);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-600); }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--slate); font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 16px;
  cursor: pointer; border: 2px solid transparent; transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(31,111,235,.28); }
.btn-primary:hover { background: var(--blue-600); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(31,111,235,.34); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 17px 36px; font-size: 17px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; color: var(--navy); letter-spacing: -.02em; }
.brand .logo {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.brand small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.logo-img { width: 42px; height: 42px; display: block; flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 26px; color: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-800) 55%, #123b6b 100%);
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 85% 10%, rgba(31,111,235,.35), transparent 60%),
              radial-gradient(500px 400px at 10% 90%, rgba(23,195,178,.20), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 96px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  font-size: 13px; font-weight: 600; color: #dbe7ff; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); margin-bottom: 20px; }
.hero h1 span { color: #7fb0ff; }
.hero p { font-size: 19px; color: #c6d4e8; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 38px; display: flex; gap: 34px; flex-wrap: wrap; }
.hero-trust .t-num { font-size: 30px; font-weight: 800; color: #fff; }
.hero-trust .t-label { font-size: 13px; color: #9fb2ce; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.hero-float {
  position: absolute; left: -26px; bottom: 30px; background: #fff; color: var(--ink);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
}
.hero-float .hf-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--blue-light); display: grid; place-items: center; font-size: 20px; }
.hero-float .hf-num { font-weight: 800; color: var(--navy); font-size: 18px; }
.hero-float .hf-txt { font-size: 12px; color: var(--slate); }

/* ---------- Logo strip ---------- */
.logos { padding: 34px 0; border-bottom: 1px solid var(--line); }
.logos p { text-align: center; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: .72; }
.logos-row span { font-weight: 800; font-size: 20px; color: var(--slate); letter-spacing: -.02em; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ic {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-light); font-size: 26px; margin-bottom: 20px;
}
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--slate); font-size: 15.5px; }
.card ul { list-style: none; margin-top: 16px; }
.card ul li { color: var(--slate); font-size: 14.5px; padding-left: 24px; position: relative; margin-bottom: 6px; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ---------- Stats band ---------- */
.stats { background: var(--navy); color: #fff; }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats .num { font-size: clamp(32px, 4vw, 46px); font-weight: 800; color: #fff; }
.stats .num span { color: var(--accent); }
.stats .lbl { color: #9fb2ce; font-size: 15px; margin-top: 6px; }

/* ---------- About / Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 480px; object-fit: cover; }
.split h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.split > div > p { color: var(--slate); font-size: 17px; margin-bottom: 18px; }
.feature-list { list-style: none; margin-top: 24px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; background: var(--blue-light); display: grid; place-items: center; font-size: 19px; }
.feature-list strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 2px; }
.feature-list span { color: var(--slate); font-size: 15px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { position: relative; padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .n { font-size: 14px; font-weight: 800; color: #fff; background: var(--blue); width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { color: var(--slate); font-size: 15px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; }
.quote .stars { color: #f5a623; margin-bottom: 14px; letter-spacing: 2px; }
.quote p { color: var(--ink); font-size: 16px; font-style: italic; margin-bottom: 22px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote .who strong { display: block; font-size: 15px; color: var(--navy); }
.quote .who span { font-size: 13px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg); padding: 60px; color: #fff; text-align: center;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(500px 300px at 80% 20%, rgba(255,255,255,.14), transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-band p { color: #d7e4fb; font-size: 18px; max-width: 560px; margin: 0 auto 28px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.contact-info > p { color: var(--slate); font-size: 17px; margin-bottom: 30px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-item .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--blue-light); display: grid; place-items: center; font-size: 20px; }
.info-item strong { display: block; color: var(--navy); font-size: 15px; }
.info-item span, .info-item a { color: var(--slate); font-size: 15px; }
.info-item a:hover { color: var(--blue); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fbfcfe; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,111,235,.14); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field small { color: var(--muted); font-size: 12.5px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-msg { display:none; margin-top:16px; padding:12px 16px; border-radius:11px; font-size:14.5px; font-weight:600; }
.form-msg.ok { display:block; background:#e7f8f5; color:#0e7d70; border:1px solid #bfe9e2; }
.form-msg.err { display:block; background:#fdecec; color:#c0392b; border:1px solid #f4c9c4; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #b9c7dc; padding: 70px 0 30px; }
.footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand small { color: #8ea3c2; }
.footer p { color: #93a6c4; font-size: 15px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .02em; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul li a { color: #b9c7dc; font-size: 15px; }
.footer ul li a:hover { color: #fff; }
.footer .fcontact li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10); margin-top: 50px; padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 14px; color: #8ea3c2; }
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .links a { color: #8ea3c2; font-size: 14px; }
.footer-bottom .links a:hover { color: #fff; }

/* ---------- Legal / policy pages ---------- */
.legal-hero { background: linear-gradient(115deg, var(--navy), var(--navy-800)); color: #fff; padding: 70px 0 56px; }
.legal-hero h1 { color: #fff; font-size: clamp(30px, 5vw, 44px); margin-bottom: 12px; }
.legal-hero p { color: #c6d4e8; font-size: 16px; }
.legal-body { padding: 64px 0 90px; }
.legal-body .wrap { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-size: 24px; margin: 40px 0 14px; }
.legal-body h3 { font-size: 18px; margin: 26px 0 10px; color: var(--navy-800); }
.legal-body p { color: var(--slate); margin-bottom: 16px; font-size: 16.5px; }
.legal-body ul { margin: 0 0 18px 22px; color: var(--slate); }
.legal-body ul li { margin-bottom: 9px; font-size: 16px; }
.legal-body a { font-weight: 600; }
.legal-toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 40px; }
.legal-toc strong { display: block; color: var(--navy); margin-bottom: 12px; font-size: 15px; }
.legal-toc ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.legal-toc ul li a { color: var(--blue); font-size: 15px; font-weight: 600; }
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-weight: 600; color: #dbe7ff; }
.back-home:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; padding-bottom: 70px; }
  .hero-visual img { height: 360px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-img { order: -1; }
  .split-img img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 16px; box-shadow: var(--shadow-md);
  }
  .cards, .quotes, .steps, .form-row, .footer .cols, .legal-toc ul { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 26px; }
  .hero-float { left: 10px; right: 10px; bottom: -24px; }
  .hero-visual { margin-bottom: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
}
