/* ==========================================================================
   Arkay Software Solutions Limited — Global Stylesheet
   Design system: trust-oriented navy + teal, generous whitespace,
   accessible contrast, responsive from 360px up.
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-900: #0a1f44;
  --navy-800: #0f2a5c;
  --navy-700: #16386f;
  --navy-600: #1e4a8a;
  --teal-500: #0fb5ba;
  --teal-400: #2fd0d4;
  --teal-600: #0a9296;
  --gold-500: #f5a623;

  --ink: #14213d;
  --slate-700: #33415c;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --success: #16a34a;

  /* Typography */
  --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-head: "Georgia", "Times New Roman", serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 31, 68, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 31, 68, 0.18);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--navy-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-600); }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.2; font-weight: 700; }

p { margin: 0 0 1rem; }

::selection { background: var(--teal-400); color: var(--navy-900); }

/* Utility ---------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: 96px; }
.section--tight { padding-block: 64px; }
.section--muted { background: var(--slate-50); }
.section--navy {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #dbe7ff;
}
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-600);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--teal-400); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 16px; }
.section-head p { color: var(--slate-500); font-size: 1.08rem; margin: 0; }
.section--navy .section-head p { color: #b9c9ea; }

.text-teal { color: var(--teal-500); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-400); color: var(--navy-900); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.btn--dark { background: var(--navy-800); color: var(--white); }
.btn--dark:hover { background: var(--navy-900); color: var(--white); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { line-height: 1.05; }
.brand__name { font-size: 1.16rem; color: var(--navy-900); display: block; }
.brand__tag { font-family: var(--font-sans); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-600); font-weight: 700; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--slate-700);
  border-radius: var(--radius-sm);
}
.nav__links a:hover { color: var(--navy-900); background: var(--slate-100); }
.nav__links a.active { color: var(--teal-600); }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__toggle span { display: block; height: 2.5px; width: 24px; background: var(--navy-900); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  padding-block: 120px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(10, 31, 68, 0.92), rgba(15, 42, 92, 0.80)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 30%, rgba(15, 181, 186, 0.28), transparent 45%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-400); box-shadow: 0 0 0 4px rgba(47, 208, 212, 0.25); }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5.2vw, 3.8rem); margin: 0 0 22px; }
.hero h1 span { color: var(--teal-400); }
.hero__lead { font-size: 1.2rem; color: #d7e2f7; max-width: 600px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 40px; margin-top: 56px;
  padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__stat .num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--white); }
.hero__stat .label { font-size: 0.86rem; color: #b9c9ea; letter-spacing: 0.03em; }

/* Page banner (interior pages) ------------------------------------------ */
.page-banner {
  position: relative;
  color: var(--white);
  padding-block: 92px;
  background: linear-gradient(120deg, rgba(10, 31, 68, 0.90), rgba(22, 56, 111, 0.82)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
}
.page-banner__inner { position: relative; z-index: 1; max-width: 720px; }
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); margin: 0 0 14px; }
.page-banner p { color: #d7e2f7; font-size: 1.12rem; margin: 0; max-width: 620px; }
.breadcrumb { font-family: var(--font-sans); font-size: 0.85rem; color: #a9bce0; margin-bottom: 18px; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--teal-400); }

/* Trust bar -------------------------------------------------------------- */
.trustbar { background: var(--white); border-bottom: 1px solid var(--slate-100); }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 44px; padding-block: 28px; }
.trustbar__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--slate-500); font-weight: 700; }
.trustbar__item { display: flex; align-items: center; gap: 10px; color: var(--slate-700); font-weight: 600; font-size: 0.95rem; }
.trustbar__item svg { width: 22px; height: 22px; color: var(--teal-600); }

/* Grid + cards ----------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(15, 181, 186, 0.35); }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-600));
  color: var(--white);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin: 0 0 12px; }
.card p { color: var(--slate-500); margin: 0 0 16px; font-size: 0.98rem; }
.card__link { font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem; color: var(--teal-600); display: inline-flex; align-items: center; gap: 6px; }
.card__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.card:hover .card__link svg { transform: translateX(4px); }
.card ul { margin: 0; padding-left: 18px; color: var(--slate-500); font-size: 0.95rem; }
.card ul li { margin-bottom: 6px; }

/* Feature split ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split__media .badge-float {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.split__media .badge-float .num { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy-900); font-weight: 700; }
.split__media .badge-float .txt { font-size: 0.82rem; color: var(--slate-500); }
.split h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 18px; }
.split p { color: var(--slate-700); }

.check-list { list-style: none; margin: 22px 0 30px; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--slate-700); }
.check-list svg { width: 22px; height: 22px; flex: none; color: var(--teal-600); margin-top: 2px; }

/* Stats band ------------------------------------------------------------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); }
.stats-band .num span { color: var(--teal-400); }
.stats-band .label { color: #b9c9ea; font-size: 0.95rem; }

/* Industries ------------------------------------------------------------- */
.industry-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end;
  color: var(--white); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.5s ease; }
.industry-card:hover img { transform: scale(1.06); }
.industry-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 31, 68, 0) 30%, rgba(10, 31, 68, 0.92) 100%); z-index: 1; }
.industry-card__body { position: relative; z-index: 2; padding: 28px; }
.industry-card__body h3 { color: var(--white); font-size: 1.35rem; margin: 0 0 8px; }
.industry-card__body p { color: #d7e2f7; font-size: 0.94rem; margin: 0; }

/* Process ---------------------------------------------------------------- */
.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process__step { position: relative; padding-top: 20px; }
.process__step .n {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--teal-500);
  color: var(--navy-900); font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  display: grid; place-items: center; margin-bottom: 18px;
}
.process__step h3 { font-size: 1.15rem; margin: 0 0 8px; }
.process__step p { color: var(--slate-500); font-size: 0.95rem; margin: 0; }

/* Testimonials ----------------------------------------------------------- */
.quote-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); border: 1px solid rgba(10,31,68,0.06); height: 100%; }
.quote-card .stars { color: var(--gold-500); margin-bottom: 14px; letter-spacing: 2px; }
.quote-card blockquote { margin: 0 0 22px; font-size: 1.05rem; color: var(--slate-700); font-style: italic; }
.quote-card .who { display: flex; align-items: center; gap: 14px; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-700), var(--teal-600)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); }
.quote-card .who strong { display: block; color: var(--navy-900); font-family: var(--font-sans); font-size: 0.98rem; }
.quote-card .who span { font-size: 0.85rem; color: var(--slate-500); }

/* Products --------------------------------------------------------------- */
.product {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center;
  background: var(--white); border: 1px solid rgba(10,31,68,0.08);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.product + .product { margin-top: 40px; }
.product--reverse .product__media { order: 2; }
.product__media { min-height: 320px; position: relative; }
.product__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product__body { padding: 44px; }
.product__tag { display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--teal-600); background: rgba(15,181,186,0.1); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.product__body h3 { font-size: 1.6rem; margin: 0 0 14px; }
.product__body p { color: var(--slate-500); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill { font-size: 0.8rem; font-weight: 600; color: var(--slate-700); background: var(--slate-100); padding: 6px 14px; border-radius: 999px; }

/* CTA band --------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius);
  padding: 64px 56px; color: var(--white);
  background: linear-gradient(120deg, var(--navy-900), var(--teal-600));
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-band__text { position: relative; z-index: 1; max-width: 620px; }
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0 0 12px; }
.cta-band p { color: #dbe7ff; margin: 0; }
.cta-band__actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; }
.info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.info-item__icon { width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--slate-100); color: var(--teal-600); display: grid; place-items: center; }
.info-item__icon svg { width: 22px; height: 22px; }
.info-item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.info-item p { margin: 0; color: var(--slate-500); font-size: 0.96rem; }

.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 40px; border: 1px solid rgba(10,31,68,0.06); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--navy-800); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem;
  padding: 13px 16px; border: 1.5px solid var(--slate-300); border-radius: var(--radius-sm);
  background: var(--slate-50); color: var(--ink); transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 181, 186, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 0.85rem; color: var(--slate-500); margin-top: 6px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(22, 163, 74, 0.1); color: var(--success); border: 1px solid rgba(22,163,74,0.3); }
.form-status.err { background: rgba(220, 38, 38, 0.08); color: #dc2626; border: 1px solid rgba(220,38,38,0.3); }

/* Value / about ---------------------------------------------------------- */
.value-item { display: flex; gap: 18px; align-items: flex-start; }
.value-item__icon { width: 50px; height: 50px; flex: none; border-radius: 12px; background: linear-gradient(135deg, var(--navy-700), var(--teal-600)); color: #fff; display: grid; place-items: center; }
.value-item__icon svg { width: 24px; height: 24px; }
.value-item h3 { font-size: 1.15rem; margin: 0 0 6px; }
.value-item p { color: var(--slate-500); font-size: 0.96rem; margin: 0; }

.team-card { text-align: center; }
.team-card .photo { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius); object-fit: cover; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.team-card h3 { font-size: 1.15rem; margin: 0 0 4px; }
.team-card .role { color: var(--teal-600); font-weight: 600; font-size: 0.9rem; font-family: var(--font-sans); }

.coming-soon {
  max-width: 560px; margin-inline: auto; text-align: center;
  background: var(--white); border: 1px dashed var(--slate-300);
  border-radius: var(--radius); padding: 56px 40px; box-shadow: var(--shadow-sm);
}
.coming-soon__icon {
  width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; color: var(--white);
  background: linear-gradient(135deg, var(--navy-700), var(--teal-600));
}
.coming-soon__icon svg { width: 32px; height: 32px; }
.coming-soon h3 { font-size: 1.5rem; margin: 0 0 10px; }
.coming-soon p { color: var(--slate-500); margin: 0; font-size: 1rem; }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid rgba(10,31,68,0.1); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: var(--white); }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--navy-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q .icon { flex: none; width: 24px; height: 24px; transition: transform var(--transition); color: var(--teal-600); }
.faq__item.open .faq__q .icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq__a p { padding: 0 24px 22px; margin: 0; color: var(--slate-500); }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #b9c9ea; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { color: #91a6ce; font-size: 0.95rem; margin: 18px 0 22px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: #b9c9ea; font-size: 0.94rem; }
.footer ul a:hover { color: var(--teal-400); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--teal-400); margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: background var(--transition), transform var(--transition); }
.socials a:hover { background: var(--teal-600); transform: translateY(-3px); color: #fff; }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.86rem; color: #7f95bd; }
.footer-bottom a { color: #7f95bd; }
.footer-bottom a:hover { color: var(--teal-400); }

/* Cookie consent banner -------------------------------------------------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 940px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--navy-900); color: #dbe7ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.show { opacity: 1; transform: none; }
.cookie-banner__text { margin: 0; font-size: 0.92rem; flex: 1 1 320px; color: #cdd9f2; }
.cookie-banner__text a { color: var(--teal-400); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex: none; }
.cookie-banner .btn { padding: 10px 22px; font-size: 0.9rem; }
.cookie-banner .btn--ghost { border-color: rgba(255,255,255,0.4); }
@media (max-width: 560px) {
  .cookie-banner { padding: 16px 18px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* Reveal on scroll ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .product { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media, .product--reverse .product__media { order: 0; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product__media { min-height: 260px; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--white);
    padding: 16px 20px 28px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform var(--transition);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 12px; border-radius: var(--radius-sm); }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .nav__toggle { display: flex; }
  .section { padding-block: 68px; }
  .hero { padding-block: 88px; }
  .hero__stats { gap: 26px; }
  .cta-band { padding: 44px 30px; }
  .grid--3, .grid--4, .field-row { grid-template-columns: 1fr; }
  .split__media .badge-float { left: 12px; bottom: 12px; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .stats-band, .footer-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .product__body, .form-card { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
