/* ============================================================
   EXPRESS CREDIT FINANCING — STYLES
   Stack: Pure HTML/CSS/JS. Mobile-first. 375 / 768 / 1024 / 1440.
   ============================================================ */

:root {
  --color-primary:       #1E3A6D;
  --color-primary-hover: #16294F;
  --color-secondary:     #8B92A3;
  --color-accent:        #2C5BA8;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F7F8FB;
  --color-bg-deep:       #0F1F3D;
  --color-text:          #1A2238;
  --color-text-muted:    #5B6478;
  --color-white:         #FFFFFF;
  --color-border:        #E2E5EC;
  --color-success:       #14B86E;

  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --radius-card: 14px;
  --radius-btn:  8px;
  --shadow-card: 0 4px 24px rgba(15, 31, 61, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(15, 31, 61, 0.14);
  --shadow-calc: 0 24px 60px rgba(15, 31, 61, 0.18);

  --container: 1280px;
  --nav-h: 76px;
}

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

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

/* ============================================================
   MOBILE FOUNDATION — touch behaviour, tap delay, safe areas
   ============================================================ */
body {
  -webkit-tap-highlight-color: transparent;
}

/* Honeypot field — moved off-screen so humans never see it but bots usually
   fill it. Submission is silently dropped server-side if it has any value. */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none;
}
a, button, input, select, textarea, label {
  touch-action: manipulation;  /* removes iOS 300ms tap delay */
}
/* Honour iPhone notch / safe-area insets on the sticky nav */
@supports (padding: max(0px)) {
  .nav__inner {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }
}

/* ============================================================
   KEYFRAMES — animate.css-equivalent vocabulary (PCC reference)
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -8px, 0); }
}
@keyframes shineSweep {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-3px) rotate(-5deg); }
  75%      { transform: translateY(-3px) rotate(5deg); }
}
@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent);
}
.eyebrow--light { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--color-accent);
}
.section-title--light { color: var(--color-white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 56ch;
  margin-top: 1.25rem;
  line-height: 1.65;
}

.section-head { margin-bottom: 3rem; position: relative; }
.section-head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  position: relative;
  padding-bottom: 4px;
  display: inline-block;
}
.section-head .eyebrow::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.section-head--center .eyebrow::after {
  transform-origin: center;
}
.section-head.is-in-view .eyebrow::after {
  transform: scaleX(1);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn i { width: 18px; height: 18px; }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%) skewX(-20deg);
  z-index: -1;
  pointer-events: none;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 58, 109, 0.28);
}
.btn--primary:hover::after {
  animation: shineSweep 0.85s ease-out;
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-primary);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ============================================================
   SCROLL PROGRESS BAR (page top)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-fab {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  z-index: 150;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}
.wa-fab svg { position: relative; z-index: 2; }
/* Gentle attention pulse ring */
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 768px) {
  .wa-fab { width: 52px; height: 52px; }
  .wa-fab svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab__pulse { animation: none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  animation: fadeInDown 0.6s ease-out both;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 6px 24px rgba(15, 31, 61, 0.08);
}
.nav.is-scrolled .nav__logo-img {
  height: 38px;
}
.nav__logo-img {
  transition: height 0.3s ease;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--color-accent); }
.nav__links a:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.lang-toggle__btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.lang-toggle__btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.nav__cta i { width: 15px; height: 15px; }
.nav__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  padding: 0.5rem;
  color: var(--color-primary);
}

/* ============================================================
   HERO — split: copy left, calculator right (signature detail)
   ============================================================ */
.hero {
  padding: 4rem 0 5rem;
  /* The linear-gradient is a fallback for when the video doesn't load (mobile / reduced-motion / network fail) */
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 91, 168, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;  /* sits above the video tint so the navy wash still adds depth */
}

/* Background video layer (desktop only — hidden on mobile + reduced motion).
   Slight blur softens busy motion so text stays readable without nuking the video. */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
}
/* White tint over the video — toned down so the video stays visible */
.hero__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(247, 248, 251, 0.52) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;  /* above video + tint + radial wash */
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  background: rgba(44, 91, 168, 0.08);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  /* Reduced from 6vw/5rem — split layout gives the left column less width */
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.04;
  color: var(--color-primary);
  letter-spacing: -0.015em;
}
.hero__title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero__lead {
  margin-top: 1.5rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 52ch;
}

.hero__benefits {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero__benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}
.hero__benefit i {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.hero__cta-row {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* "Calculate your installment" secondary text link under the benefits */
.hero__calc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-primary);
  border-bottom: 1.5px solid var(--color-border);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero__calc-link:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.hero__calc-link i { width: 16px; height: 16px; flex-shrink: 0; color: var(--color-accent); }
.hero__calc-link i:last-child { color: var(--color-secondary); }

/* ===== Hero application form (right column) ===== */
.hero__form {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-calc);
  border: 1px solid var(--color-border);
  position: relative;
  scroll-margin-top: 100px;
}
.hero__form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--color-accent), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero__form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.hero__form-flag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(44, 91, 168, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.hero__form-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}
.hero__form-sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
/* Tighten field spacing inside the hero form */
.hero__form .field { margin-bottom: 0.95rem; }
.hero__form .field-row { margin-bottom: 0.95rem; gap: 0.85rem; }
.hero__form .btn { margin-top: 0.4rem; }
.hero__form .form__note { margin-top: 0.85rem; font-size: 0.78rem; }

/* ===== Jadual Ansuran calculator card (standalone section) ===== */
.calc-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-calc);
  border: 1px solid var(--color-border);
  position: relative;
}
.calc-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--color-accent), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.calc__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.calc__label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1.1;
}
.calc__sublabel {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.calc__field {
  margin-bottom: 1.25rem;
}
.calc__field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.55rem;
}

.calc__amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}
.calc__currency {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-secondary);
}
.calc__amount input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  outline: none;
  width: 100%;
  -moz-appearance: textfield;
}
.calc__amount input::-webkit-outer-spin-button,
.calc__amount input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc__range {
  width: 100%;
  margin-top: 0.85rem;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  outline: none;
}
.calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30, 58, 109, 0.35);
  cursor: pointer;
}
.calc__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30, 58, 109, 0.35);
  cursor: pointer;
}

.calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.calc__field--small select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-btn);
  background: var(--color-bg-alt);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  outline: none;
  cursor: pointer;
  transition: border 0.2s;
}
.calc__field--small select:focus {
  border-color: var(--color-accent);
}

.calc__result {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 12px;
  color: #fff;
  text-align: center;
}
.calc__result-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.calc__result-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.calc__result-prefix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.8);
}
.calc__result-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.calc__result-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.75rem;
}
.calc__result-meta strong { color: #fff; font-weight: 600; }

.calc__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.95rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.93rem;
  transition: all 0.25s;
}
.calc__cta:hover {
  background: var(--color-primary-hover);
}
.calc__cta i { width: 16px; height: 16px; }

.calc__disclaimer {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.85rem;
}

/* ============================================================
   JADUAL ANSURAN — dedicated calculator section
   ============================================================ */
.jadual {
  padding: 6rem 0;
  background: var(--color-bg-alt);  /* fallback if the image fails */
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}
/* KL skyline background layer */
.jadual__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.jadual__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* White tint over the skyline — keeps the dark navy heading, steps,
   and white calculator card clearly readable */
.jadual__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(247, 248, 251, 0.90) 0%, rgba(247, 248, 251, 0.82) 100%);
}
.jadual .container {
  position: relative;
  z-index: 2;
}
.jadual__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
}
.jadual__intro .section-lead { margin-bottom: 0; }
.jadual__steps {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jadual__steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}
.jadual__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #fff;
  color: var(--color-primary);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(15, 31, 61, 0.1);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--color-primary);
  color: #fff;
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: marquee var(--ticker-duration, 40s) linear infinite;
}
.ticker__group {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ticker__dot {
  color: var(--color-secondary);
  margin: 0 0.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--ticker-group-width, 1000px))); }
}

/* ============================================================
   SERVICES — editorial numbered rows
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--color-bg);
}
.services__list {
  margin-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.service-row {
  display: grid;
  grid-template-columns: 64px 140px 1fr 200px;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  transition: padding 0.35s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.service-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 91, 168, 0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  border-radius: 8px;
}
.service-row:hover::after { opacity: 1; }
.service-row:hover::before { transform: scaleY(1); }
.service-row:hover { padding-left: 2rem; }
.service-row:hover .service-row__num { color: var(--color-accent); transform: scale(1.12); }
.service-row:hover .service-row__body h3 { color: var(--color-accent); }
.service-row:hover .service-row__cta { transform: translateX(4px); }

.service-row__num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-secondary);
  line-height: 1;
  font-weight: 400;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
  transform-origin: left center;
}

.service-row__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-alt);
  box-shadow: inset 0 0 0 1px var(--color-border);
  position: relative;
}
.service-row__image::after {
  /* Subtle navy tint overlay to unify mixed image styles (photo + illustration) */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 31, 61, 0) 60%, rgba(15, 31, 61, 0.12) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) brightness(1.02);
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.service-row:hover .service-row__image img {
  filter: saturate(1) brightness(1);
  transform: scale(1.06);
}
.service-row:hover .service-row__image::after {
  opacity: 0;
}

.service-row__body h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.service-row__body p {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.6;
}
.service-row__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  text-align: right;
}
.service-row__amount {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(44, 91, 168, 0.08);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 6px;
  white-space: nowrap;
}
.service-row__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.2s, transform 0.35s cubic-bezier(.2,.7,.2,1);
  display: inline-block;
}
.service-row__cta:hover { color: var(--color-accent); }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 6rem 0;
  background: var(--color-bg-alt);
}
.process__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.process-card:hover::after { transform: scaleX(1); }

/* Image at top of card with the step number badge floating over it */
.process-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.process-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.process-card:hover .process-card__img img {
  filter: saturate(1);
  transform: scale(1.05);
}
/* Subtle bottom-fade so the number badge always reads */
.process-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,31,61,0) 55%, rgba(15,31,61,0.35) 100%);
  pointer-events: none;
}

.process-card__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  background: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 31, 61, 0.18);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.process-card:hover .process-card__num {
  transform: translateY(-2px);
}

.process-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}
.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.process-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================================
   WHY US
   ============================================================ */
.why {
  padding: 6rem 0;
  background: var(--color-bg);  /* fallback when video isn't shown */
  position: relative;
  overflow: hidden;
}
/* Background video layer */
.why__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
}
/* White tint — toned down so the video stays visible */
.why__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(247, 248, 251, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.why .container {
  position: relative;
  z-index: 2;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: flex-start;
}
.why__head .section-lead { margin-bottom: 2rem; }

.why__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.why__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-primary);
  line-height: 1;
  font-weight: 400;
}
.why__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.why__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.why__badge {
  padding: 1.75rem 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.why__badge:hover {
  background: #fff;
  border-color: var(--color-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.why__badge i {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  transition: transform 0.4s ease;
}
.why__badge:hover i {
  animation: iconBob 0.6s ease-in-out;
}
.why__badge h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.why__badge p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================================
   CONTACT — deep navy split
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: var(--color-bg-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 91, 168, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
}

.contact__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin: 1.25rem 0 2rem;
  max-width: 48ch;
  line-height: 1.65;
}

.contact__details {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
/* Target both the placeholder <i> and the <svg> lucide swaps it for,
   and use the sky accent so icons stay visible on the deep-navy background. */
.contact__details i,
.contact__details svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  stroke: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact__details a:hover { color: #fff; text-decoration: underline; }

/* ===== Contact "prefer to talk" alternative variant (form lives in the hero) ===== */
.contact--alt { padding: 5rem 0; }
.contact__alt {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact__alt-head .section-title { margin-bottom: 1.25rem; }
.contact__alt .contact__lead {
  margin: 1.25rem auto 2rem;
  text-align: center;
}
.contact__alt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-2px);
}
.contact__details--row {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.75rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact__details--row li { font-size: 0.9rem; }
/* Two-item variant (address + hours, no phone) — centre the pair */
.contact__details--two {
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 2.5rem;
}

/* Form */
.contact__form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-card);
  color: var(--color-text);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.contact__form-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.field { margin-bottom: 1.1rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.field-row .field { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.field__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-secondary);
  margin-left: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0;
  border: 0;
  border-bottom: 1.5px solid var(--color-border);
  background: transparent;
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--color-accent);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select { cursor: pointer; }

.form__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}
.form__status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}
.form__status.is-success { color: var(--color-success); }
.form__status.is-error   { color: #d63440; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A1428;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  max-width: 32ch;
  line-height: 1.55;
}
.footer__logo {
  height: 50px;
  width: auto;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}
.footer__col h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--color-accent); }

.footer__permit {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.footer__permit strong { color: #fff; font-weight: 600; letter-spacing: 0.04em; }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

.footer__poweredby {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
}
.footer__poweredby a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-left: 0.4rem;
  transition: color 0.2s ease;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
}
.footer__poweredby a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.footer__address { max-width: 50ch; text-align: right; }

/* ============================================================
   RESPONSIVE — 1024 / 768 / 375
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero collapses: copy on top, application form below (form stays prominent, near the fold) */
  .hero__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__form { max-width: 520px; margin: 0 auto; width: 100%; }
  .hero__left { max-width: 620px; }

  /* Jadual calculator section stacks: intro on top, calculator below */
  .jadual__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .calc-card { max-width: 520px; margin: 0 auto; width: 100%; }

  .why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__details--row { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }

  .service-row { grid-template-columns: 50px 120px 1fr 180px; gap: 1.25rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 880px) {
  .service-row {
    grid-template-columns: 50px 1fr 160px;
    grid-template-areas:
      "num   image image"
      "num   body  meta";
    column-gap: 1rem;
    row-gap: 1rem;
  }
  .service-row__num   { grid-area: num; align-self: start; padding-top: 0.5rem; }
  .service-row__image { grid-area: image; aspect-ratio: 16 / 9; max-height: 180px; }
  .service-row__body  { grid-area: body; }
  .service-row__meta  { grid-area: meta; }
}

@media (max-width: 768px) {
  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }
  .nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .nav__cta span { display: none; }
  .nav__cta { padding: 0.55rem; }
  .nav__cta i { width: 16px; height: 16px; }

  .hero { padding: 2.5rem 0 3.5rem; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 2.7rem); line-height: 1.05; }
  .hero__lead { font-size: 1rem; }
  .hero__benefits { gap: 0.85rem; }
  .hero__benefit { font-size: 0.85rem; }
  .hero__cta-row .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero__form { padding: 1.5rem; }
  .hero__form-title { font-size: 1.45rem; }
  .hero__form .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero__form .field-row .field { margin-bottom: 0.95rem; }
  .calc-card { padding: 1.5rem; }
  .calc__result-value { font-size: 2.2rem; }
  .calc__amount input { font-size: 1.6rem; }

  .services, .process, .why, .contact, .jadual { padding: 4rem 0; }

  /* Contact alternative: stack the two CTAs full-width */
  .contact__alt-actions { flex-direction: column; }
  .contact__alt-actions .btn { width: 100%; justify-content: center; }

  .section-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  .service-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "num"
      "body"
      "meta";
    gap: 0.85rem;
    padding: 1.75rem 0;
  }
  .service-row:hover { padding-left: 0; }
  .service-row__num { grid-area: num; font-size: 1.6rem; padding-top: 0; }
  .service-row__image {
    grid-area: image;
    aspect-ratio: 16 / 9;
    max-height: 220px;
    width: 100%;
  }
  .service-row__body { grid-area: body; }
  .service-row__body h3 { font-size: 1.5rem; }
  .service-row__meta {
    grid-area: meta;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  /* Mobile: keep the four steps as a 2×2 grid (not stacked single column) */
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .process-card__body { padding: 1rem 1rem 1.25rem; }
  .process-card h3 { font-size: 1.05rem; }
  .process-card p { font-size: 0.85rem; line-height: 1.45; }
  .process-card__num { font-size: 0.85rem; padding: 0.25rem 0.55rem; top: 0.6rem; left: 0.6rem; }
  .process-card__img { aspect-ratio: 16 / 11; }
  /* Mobile: keep the six benefits as a 2-per-row grid (not stacked single column) */
  .why__badges { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .why__badge { padding: 1.25rem 1rem; }
  .why__badge i { width: 24px; height: 24px; margin-bottom: 0.6rem; }
  .why__badge h4 { font-size: 1rem; }
  .why__badge p { font-size: 0.82rem; line-height: 1.45; }
  .why__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .why__stat-num { font-size: 2rem; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 1.1rem; }

  /* Mobile footer: brand on its own row, then Services | Company side-by-side,
     then Licence on its own row. Keeps the footer compact. */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer__grid > :nth-child(1),
  .footer__grid > :nth-child(4) {
    grid-column: 1 / -1;
  }
  .footer__bottom { justify-content: flex-start; text-align: left; }
  .footer__address { text-align: left; }
}

@media (max-width: 480px) {
  .nav__logo-img { height: 36px; }
  .hero__container { padding: 0 1rem; }
  .hero__benefits { flex-direction: column; gap: 0.6rem; }

  .calc__row { gap: 0.75rem; }
  .calc__amount input { font-size: 1.4rem; }
  .calc__result-value { font-size: 1.9rem; }

  .container { padding: 0 1rem; }
  .service-row__body h3 { font-size: 1.35rem; }
  .service-row__body p { font-size: 0.92rem; }
}

/* ============================================================
   IOS — prevent input zoom on focus
   ============================================================ */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
  .calc__amount input { font-size: 1.6rem !important; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker__track { animation: none; }
  /* Respect motion preferences — fall back to static gradient bg */
  .hero__video, .hero__tint,
  .why__video,  .why__tint { display: none; }
}


:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
