/* =================================================================
   Caerus Consulting Co., Ltd.
   Corporate consulting theme — light, professional, trustworthy.
   Brand accent gradient (from logo): cyan #289cd7 -> purple #6b3d94
   ================================================================= */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-tint: #eaf0f6;
  --panel: #ffffff;

  /* Ink / text */
  --ink: #122036;          /* headings */
  --text: #36465c;         /* body */
  --text-dim: #5d6b7e;
  --muted: #8a97a8;
  --line: #e5eaf1;
  --line-strong: #d4dce6;

  /* Brand */
  --cyan: #289cd7;
  --blue: #4584c4;
  --violet: #6e479a;
  --purple: #6b3d94;
  --brand: #2e6ea8;        /* primary professional blue (UI, links, icons) */
  --brand-dark: #1f4e7a;
  --navy: #122a45;         /* dark sections / footer */
  --navy-2: #0e2236;

  --grad: linear-gradient(95deg, #289cd7 0%, #4584c4 38%, #6e479a 72%, #6b3d94 100%);
  --grad-tint: linear-gradient(95deg, rgba(40,156,215,0.10), rgba(110,71,154,0.10));

  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(18,32,54,0.05), 0 4px 14px rgba(18,32,54,0.05);
  --shadow: 0 10px 30px -14px rgba(18,32,54,0.22), 0 4px 10px -6px rgba(18,32,54,0.10);
  --shadow-lg: 0 30px 60px -24px rgba(18,32,54,0.28);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
::selection { background: rgba(46,110,168,0.18); }

/* Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }
.section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: rgba(255,255,255,0.82); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

/* Brand accent text (used sparingly) */
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-accent { color: var(--brand); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); }
.section--navy .eyebrow { color: #7fb4dd; }

/* Headlines */
.display { font-size: clamp(2.4rem, 5.2vw, 3.9rem); line-height: 1.05; letter-spacing: -0.03em; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.025em; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--text-dim); line-height: 1.62; }
.section--navy .lead { color: rgba(255,255,255,0.78); }
.measure { max-width: 720px; } .measure-sm { max-width: 560px; }
.center { text-align: center; } .center.measure, .center.measure-sm { margin-inline: auto; }
.dim { color: var(--text-dim); } .muted { color: var(--muted); }
.section--navy .dim { color: rgba(255,255,255,0.74); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 10px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.btn svg { width: 17px; height: 17px; transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -12px rgba(46,110,168,0.7); }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(46,110,168,0.7); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.section--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.section--navy .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -20px rgba(18,32,54,0.5); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 22px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 38px; height: 38px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.brand__sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__links a { display: inline-block; padding: 9px 13px; font-size: 14.5px; font-weight: 500; color: var(--text-dim); border-radius: 8px; transition: color .2s var(--ease), background .2s var(--ease); }
.nav__links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav__links a.is-active { color: var(--brand); font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__cta .btn { padding: 11px 20px; }

.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 50%; width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transform: translateX(-50%); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__toggle span { top: 50%; margin-top: -1px; } .nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav__toggle.is-open span::after { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 76px 0 0; z-index: 65; background: #fff; padding: 26px; transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; display: flex; flex-direction: column; }
.mobile-menu.is-open { transform: none; }
.mobile-menu a { padding: 16px 6px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu a.is-active { color: var(--brand); }
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 90px); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 360px; background: radial-gradient(60% 100% at 80% 0%, rgba(40,156,215,0.08), transparent 60%); pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; position: relative; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.85rem); line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 22px; color: var(--ink); }
.hero__lead { font-size: clamp(1.06rem, 1.5vw, 1.24rem); color: var(--text-dim); max-width: 540px; margin-bottom: 30px; }
.hero__trust { display: flex; align-items: center; gap: 20px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero__trust .t { display: flex; flex-direction: column; }
.hero__trust .t .n { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.hero__trust .t .l { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.hero__trust .sep { width: 1px; height: 34px; background: var(--line); }

.hero__media { position: relative; }
.hero__media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); aspect-ratio: 4/4.4; }
.hero__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__media .floatcard {
  position: absolute; left: -22px; bottom: 28px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 13px; max-width: 250px;
}
.hero__media .floatcard .ic { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: var(--grad-tint); color: var(--brand); flex-shrink: 0; }
.hero__media .floatcard .ic svg { width: 21px; height: 21px; }
.hero__media .floatcard .k { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.98rem; line-height: 1.1; }
.hero__media .floatcard .v { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.hero__media .accent { position: absolute; right: -14px; top: -14px; width: 96px; height: 96px; border-radius: 16px; background: var(--grad); opacity: 0.16; z-index: -1; }

/* ---------- Logo / trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.strip__inner { display: flex; align-items: center; gap: 14px 34px; flex-wrap: wrap; justify-content: center; padding: 22px 0; }
.strip__item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--text-dim); }
.strip__item svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Section head ---------- */
.section-head { margin-bottom: clamp(38px, 5vw, 58px); }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.split--media { grid-template-columns: 1fr 1fr; }

.gcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.gcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.gcard__icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-tint); color: var(--brand); margin-bottom: 20px; }
.gcard__icon svg { width: 24px; height: 24px; }
.gcard h3 { font-size: 1.24rem; margin-bottom: 10px; }
.gcard p { color: var(--text-dim); font-size: 15.5px; }
.gcard .num-chip { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--brand); letter-spacing: 0.06em; display: block; margin-bottom: 14px; }
.gcard .best-for { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted); }
.gcard .best-for strong { color: var(--ink); font-weight: 600; }

/* ticks */
.ticks { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 27px; font-size: 14.5px; color: var(--text-dim); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--grad-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e6ea8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* feature row */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 11px; display: grid; place-items: center; background: var(--grad-tint); color: var(--brand); }
.section--navy .feature__icon { background: rgba(255,255,255,0.08); color: #7fb4dd; }
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { color: var(--text-dim); font-size: 14.5px; }
.section--navy .feature p { color: rgba(255,255,255,0.72); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-size: 14px; font-weight: 500; color: var(--text); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.chip:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }
.section--soft .chip { background: #fff; }

/* ---------- Media frame ---------- */
.media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; transition: transform .8s var(--ease); }
.media:hover img { transform: scale(1.04); }
.media__badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.94); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13px; font-family: var(--font-display); font-weight: 600; color: var(--ink);
}
.media__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.stat { padding: 32px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.7rem); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.stat .l { font-size: 13.5px; color: var(--text-dim); margin-top: 10px; }
.section--navy .stats { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.12); }
.section--navy .stat { border-color: rgba(255,255,255,0.12); }
.section--navy .stat .n { color: #fff; } .section--navy .stat .l { color: rgba(255,255,255,0.6); }

/* ---------- Service list ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc { display: grid; grid-template-columns: 74px 1fr auto; gap: 26px; align-items: center; padding: 28px 16px; border-bottom: 1px solid var(--line); position: relative; transition: background .25s var(--ease), padding .25s var(--ease); }
.svc::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad); transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease); }
.svc:hover { background: var(--bg-soft); padding-left: 22px; }
.svc:hover::before { transform: scaleY(1); }
.svc__no { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--brand); }
.svc__main h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 7px; }
.svc__main p { color: var(--text-dim); font-size: 15px; max-width: 64ch; }
.svc__main em { font-style: normal; color: var(--muted); }
.svc__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.svc__tags span { font-size: 12.5px; color: var(--text-dim); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px; }
.svc__arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--text-dim); transition: all .25s var(--ease); }
.svc:hover .svc__arrow { background: var(--brand); border-color: var(--brand); color: #fff; transform: rotate(-45deg); }
.svc__arrow svg { width: 19px; height: 19px; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 18px; }
.tstep { display: grid; grid-template-columns: 72px 1fr; gap: 24px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tstep:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tstep__no { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; width: 58px; height: 58px; border-radius: 15px; display: grid; place-items: center; background: var(--grad-tint); color: var(--brand); }
.tstep h3 { font-size: 1.28rem; margin-bottom: 9px; }
.tstep p { color: var(--text-dim); font-size: 15px; }

/* ---------- Industry tiles (image top, text below — corporate) ---------- */
.itile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; height: 100%; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.itile:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.itile__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.itile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.itile:hover .itile__img img { transform: scale(1.06); }
.itile .tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,0.95); color: var(--brand); box-shadow: var(--shadow-sm); }
.itile__body { padding: 24px; }
.itile__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.itile__body p { color: var(--text-dim); font-size: 14.5px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; border-radius: clamp(18px, 3vw, 28px); padding: clamp(48px, 6vw, 84px) clamp(28px, 5vw, 64px); text-align: center; background: linear-gradient(150deg, var(--navy), var(--navy-2)); color: #fff; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 12% 0%, rgba(40,156,215,0.28), transparent 60%), radial-gradient(50% 80% at 88% 20%, rgba(110,71,154,0.26), transparent 60%); pointer-events: none; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 16px; letter-spacing: -0.025em; }
.cta p { color: rgba(255,255,255,0.8); max-width: 620px; margin-inline: auto; margin-bottom: 30px; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.34); }
.cta .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 5vw, 56px); align-items: start; }
.contact-detail { display: grid; gap: 16px; }
.citem { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.citem:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.citem__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; display: grid; place-items: center; background: var(--grad-tint); color: var(--brand); }
.citem__icon svg { width: 20px; height: 20px; }
.citem .label { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-family: var(--font-display); font-weight: 600; }
.citem .value { font-size: 15px; color: var(--ink); font-weight: 500; }
.citem .value a:hover { color: var(--brand); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.field label .req { color: var(--brand); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15px; color: var(--ink); padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a97a8' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(46,110,168,0.12); }
.form__note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form__success { display: none; align-items: center; gap: 12px; padding: 15px 18px; background: rgba(46,110,168,0.08); border: 1px solid rgba(46,110,168,0.3); border-radius: 12px; color: var(--ink); font-size: 15px; margin-bottom: 22px; }
.form__success.show { display: flex; }
.form__success svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; }

/* ---------- Page hero ---------- */
.page-hero { padding: clamp(56px, 7vw, 92px) 0 clamp(40px, 5vw, 56px); background: var(--bg-soft); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: 0; top: 0; width: 40%; height: 100%; background: radial-gradient(80% 90% at 90% 10%, rgba(40,156,215,0.08), transparent 65%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); letter-spacing: -0.03em; margin-bottom: 18px; max-width: 16ch; }
.page-hero .lead { max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 20px; font-family: var(--font-display); font-weight: 500; }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--navy), var(--navy-2)); color: rgba(255,255,255,0.66); padding: clamp(56px, 7vw, 84px) 0 30px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-about { max-width: 320px; margin-top: 18px; color: rgba(255,255,255,0.6); font-size: 14.5px; }
.footer-tagline { font-family: var(--font-display); font-weight: 600; margin-top: 18px; font-size: 1.02rem; color: #fff; }
.footer-brand .brand__name { color: #fff; } .footer-brand .brand__sub { color: rgba(255,255,255,0.5); }
.footer-col h4 { font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.13em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.64); font-size: 14.5px; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact div { margin-bottom: 12px; }
.footer-contact .lbl { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 3px; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 520px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--media { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 880px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .form-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; gap: 10px; } .svc__arrow { display: none; }
  .tstep { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .container { padding-inline: 18px; }
  .hero__media .floatcard { left: 10px; }
}

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 13px; border: 1px solid var(--line-strong); border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--ink);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.lang-switch:hover { border-color: var(--brand); color: var(--brand); background: var(--bg-soft); }
.lang-switch--m { display: block; text-align: center; margin-top: 12px; }
@media (max-width: 880px) { .nav .lang-switch { display: none; } }

/* ---------- Form character counter ---------- */
.form__count { font-size: 12.5px; color: var(--muted); text-align: right; margin-top: 5px; font-variant-numeric: tabular-nums; }
.form__count.is-near { color: var(--brand); }
.form__count.is-max { color: #c0392b; font-weight: 600; }

/* ---------- Cookie consent ---------- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  max-width: 760px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 16px 18px;
  display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  transform: translateY(160%); opacity: 0;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.cookie-bar.show { transform: none; opacity: 1; }
.cookie-bar p { margin: 0; font-size: 14px; color: var(--text); flex: 1 1 300px; line-height: 1.5; }
.cookie-bar a { color: var(--brand); font-weight: 600; }
.cookie-bar__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar button { font-family: var(--font-display); font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: 9px; border: 1.5px solid var(--line-strong); background: #fff; color: var(--ink); transition: all .2s var(--ease); }
.cookie-bar__accept { background: var(--brand); border-color: var(--brand); color: #fff; }
.cookie-bar__accept:hover { background: var(--brand-dark); }
.cookie-bar__decline:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--text); font-size: 16px; line-height: 1.72; }
.legal ul { padding-left: 22px; margin: 0 0 18px; }
.legal li { margin-bottom: 7px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.legal a { color: var(--brand); text-decoration: underline; }

/* ---------- Footer legal links ---------- */
.footer-legal { display: flex; gap: 8px 18px; flex-wrap: wrap; align-items: center; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-legal a:hover { color: #fff; }
