/* =========================================================
   Hurricane Shield Systems — Modern static site
   Design system + components
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette — coastal storm */
  --navy-950: #061626;
  --navy-900: #0a2540;
  --navy-800: #0f3357;
  --navy-700: #13456f;
  --blue-600: #1b6fb3;
  --sky-500: #0ea5e9;
  --sky-400: #38bdf8;
  --orange-500: #e2531e;
  --orange-400: #f4702e;
  --orange-600: #c0431a;

  --ink: #0f1b2a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--slate-50);
  --surface: var(--white);
  --text: var(--ink);
  --text-muted: var(--slate-500);
  --border: var(--slate-200);
  --accent: var(--orange-500);
  --accent-hover: var(--orange-600);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", var(--font-sans);

  /* Radii & shadows */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(6, 22, 38, 0.06), 0 1px 3px rgba(6, 22, 38, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 37, 64, 0.18);
  --shadow-glow: 0 18px 40px rgba(14, 165, 233, 0.25);

  --maxw: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--sky-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section { padding-block: clamp(60px, 9vw, 110px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--alt { background: var(--surface); }
.section--navy {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(14, 165, 233, 0.18), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #dbe7f2;
}
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.section--navy .eyebrow { color: var(--sky-400); }
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-top: 14px;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.075rem;
  color: var(--text-muted);
}
.section--navy .section-head p { color: #aec4d8; }

.lead { font-size: 1.12rem; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  color: #fff;
  box-shadow: 0 10px 24px rgba(226, 83, 30, 0.32);
}
.btn--primary:hover { box-shadow: 0 16px 34px rgba(226, 83, 30, 0.42); }

.btn--solid {
  background: var(--navy-900);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--solid:hover { background: var(--navy-800); }

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--slate-200);
}
.btn--ghost:hover { border-color: var(--navy-700); background: var(--white); }

.btn--light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255, 255, 255, 0.16); }

.btn--lg { padding: 16px 32px; font-size: 1.02rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.06);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { font-size: 1.06rem; line-height: 1.05; }
.brand__name span { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky-500); }
.brand__logo { height: 60px; width: auto; display: block; }
.footer-brand .brand__logo { height: 64px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--slate-700);
  border-radius: var(--r-full);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover { color: var(--navy-900); background: var(--slate-100); }
.nav__links a.is-active { color: var(--navy-900); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}
.nav__toggle span::before { transform: translate(-50%, -7px); }
.nav__toggle span::after { transform: translate(-50%, 7px); }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #e7f0f8;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 9vw, 120px);
  background:
    radial-gradient(900px 420px at 88% 8%, rgba(14,165,233,0.28), transparent 60%),
    radial-gradient(700px 360px at 6% 100%, rgba(226,83,30,0.14), transparent 55%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.82rem;
  font-weight: 500;
  color: #cfe2f1;
  backdrop-filter: blur(6px);
}
.hero__badge b { color: #fff; font-weight: 700; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky-400); box-shadow: 0 0 0 4px rgba(56,189,248,0.25); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  margin-top: 22px;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--sky-400), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: #b9cee0;
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  max-width: 30em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 44px);
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__stat span { font-size: 0.86rem; color: #9fb6cb; }

/* Hero collage */
.hero__media { position: relative; }
.hero__collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hero__collage figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--navy-800);
}
.hero__collage img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero__collage figure:first-child { grid-row: span 2; }
.hero__collage figure:first-child img { aspect-ratio: 3/4.2; }
.hero__floatcard {
  position: absolute;
  left: -10px;
  bottom: -22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-lg);
  color: var(--navy-900);
  backdrop-filter: blur(4px);
}
.hero__floatcard .ic {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--sky-400), var(--blue-600));
  color: #fff;
}
.hero__floatcard .ic svg { width: 20px; height: 20px; }
.hero__floatcard b { display: block; font-size: 0.95rem; }
.hero__floatcard span { font-size: 0.78rem; color: var(--slate-500); }

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--navy-950);
  color: #c6d6e5;
  padding-block: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trustbar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  font-size: 0.92rem;
}
.trustbar__item { display: inline-flex; align-items: center; gap: 10px; }
.trustbar__item svg { width: 20px; height: 20px; color: var(--sky-400); flex: none; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature__ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(14,165,233,0.14), rgba(27,111,179,0.12));
  color: var(--blue-600);
  margin-bottom: 18px;
}
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; }
.feature p { margin-top: 10px; color: var(--text-muted); font-size: 0.97rem; }

/* ---------- Split / showcase ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__media--stack {
  border: none; box-shadow: none; overflow: visible;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.split__media--stack img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1/1;
  border: 1px solid var(--border);
}
.split__media--stack img:first-child { grid-column: span 2; aspect-ratio: 16/9; }

.split__body h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.split__body > p { margin-top: 18px; color: var(--text-muted); font-size: 1.06rem; }

.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .tick {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  color: #059669;
  margin-top: 2px;
}
.check-list .tick svg { width: 15px; height: 15px; }
.check-list b { font-weight: 600; color: var(--navy-900); }
.check-list span { display:block; color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card__media { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--slate-100); }
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 13px;
  border-radius: var(--r-full);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.92);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.product-card__tag.is-featured { background: linear-gradient(135deg, var(--orange-400), var(--orange-500)); color: #fff; }
.product-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-size: 1.32rem; }
.product-card__body p { margin-top: 10px; color: var(--text-muted); font-size: 0.98rem; flex: 1; }
.product-card__thumbs { display: flex; gap: 8px; margin-top: 18px; }
.product-card__thumbs img {
  width: 54px; height: 42px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.product-card__thumbs img:hover { border-color: var(--sky-400); transform: translateY(-2px); }
.product-card__link {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--blue-600); font-size: 0.95rem;
}
.product-card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.product-card:hover .product-card__link svg { transform: translateX(4px); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gallery figure {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--slate-100);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 0.5s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  color: #e7f0f8;
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 80px);
  background:
    radial-gradient(800px 360px at 85% -20%, rgba(14,165,233,0.24), transparent 60%),
    linear-gradient(165deg, var(--navy-800), var(--navy-950));
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.3rem); margin-top: 16px; }
.page-hero p { color: #b9cee0; margin-top: 16px; font-size: 1.1rem; max-width: 40em; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.86rem; color: #8fa8bf; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--sky-400); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(34px, 5vw, 60px);
  align-items: start;
}
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card__ic {
  flex: none;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  color: var(--sky-400);
}
.contact-card__ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.05rem; }
.contact-card a, .contact-card p { color: var(--text-muted); font-size: 1rem; margin-top: 4px; }
.contact-card a:hover { color: var(--blue-600); }
.contact-card .big { font-size: 1.32rem; font-weight: 700; color: var(--navy-900); font-family: var(--font-display); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy-900); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--slate-50);
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--sky-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(56,189,248,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* ---------- Links page ---------- */
.link-group { margin-bottom: clamp(40px, 6vw, 64px); }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.logo-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.logo-card__img {
  aspect-ratio: 16/10;
  display: grid; place-items: center;
  background: var(--slate-100);
  padding: 14px;
}
.logo-card__img img { max-height: 100%; width: auto; object-fit: contain; }
.logo-card__cap {
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border-top: 1px solid var(--border);
}
.logo-card__cap b { font-size: 0.96rem; color: var(--navy-900); }
.logo-card__cap svg { width: 16px; height: 16px; color: var(--slate-400); flex: none; }

.link-list { display: grid; gap: 12px; }
.link-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.link-row:hover { transform: translateX(4px); border-color: var(--sky-400); box-shadow: var(--shadow-sm); }
.link-row__ic {
  flex: none; width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(14,165,233,0.1);
  color: var(--blue-600);
}
.link-row__ic svg { width: 20px; height: 20px; }
.link-row__txt b { display: block; color: var(--navy-900); font-size: 1rem; }
.link-row__txt span { font-size: 0.88rem; color: var(--text-muted); }
.link-row__go { margin-left: auto; color: var(--slate-400); }
.link-row__go svg { width: 18px; height: 18px; }

/* ---------- Reviews page ---------- */
.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  margin-bottom: clamp(28px, 4vw, 44px);
  background: rgba(226, 83, 30, 0.1);
  border: 1px solid rgba(226, 83, 30, 0.4);
  border-radius: var(--r-md);
  color: var(--slate-700);
  font-size: 0.95rem;
}
.notice svg { width: 22px; height: 22px; color: var(--orange-600); flex: none; margin-top: 2px; }
.notice b { color: var(--navy-900); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { display: inline-flex; gap: 3px; color: var(--orange-500); }
.stars svg { width: 18px; height: 18px; }
.stars .is-empty { color: var(--slate-200); }
.review-card__body { margin-top: 16px; color: var(--slate-700); font-size: 1rem; flex: 1; }
.review-card__author {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.review-card__avatar {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--sky-400), var(--blue-600));
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.review-card__author b { display: block; color: var(--navy-900); font-size: 0.98rem; }
.review-card__author span { font-size: 0.86rem; color: var(--text-muted); }

/* ---------- Jobs page ---------- */
.job-grid { display: grid; gap: 22px; }
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.job-card__head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  justify-content: space-between;
}
.job-card__head h3 { font-size: 1.32rem; }
.job-card__tag {
  padding: 6px 13px;
  border-radius: var(--r-full);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  background: rgba(14, 165, 233, 0.12);
  color: var(--blue-600);
}
.job-card__meta {
  margin-top: 8px;
  display: inline-flex; flex-wrap: wrap; gap: 8px 16px;
  font-size: 0.9rem; color: var(--text-muted);
}
.job-card > p { margin-top: 14px; color: var(--text-muted); font-size: 1rem; }
.job-card .check-list { margin-top: 18px; margin-bottom: 24px; }
.job-card .check-list .tick { background: rgba(14,165,233,0.12); color: var(--blue-600); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 68px);
  overflow: hidden;
  background:
    radial-gradient(700px 300px at 85% 10%, rgba(14,165,233,0.3), transparent 60%),
    linear-gradient(150deg, var(--navy-800), var(--navy-950));
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band__inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 16em; }
.cta-band p { color: #b9cee0; margin-top: 12px; max-width: 34em; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: #9fb6cb;
  padding-top: clamp(48px, 6vw, 72px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 44px;
}
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 0.94rem; max-width: 30ch; color: #8fa8bf; }
.footer-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 0.94rem; color: #aec4d8; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--sky-400); flex: none; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 0.86rem; color: #7e96ad;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 5vw;
  background: rgba(6,22,38,0.92);
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: fade 0.25s ease; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.4rem; line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 24px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.25s ease, visibility 0.25s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links a { padding: 13px 16px; font-size: 1.02rem; }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active { background: var(--slate-100); }
  .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
