/* ============================================================
   INFINITY CAPITAL MY — STYLES
   Stack: Pure HTML/CSS/JS. Mobile-first. 375 / 768 / 1024 / 1440.
   Design language: white-dominant, RHB-inspired blue, bento grid,
                    vertical timeline, full-bleed photographic hero.
   ============================================================ */

:root {
  --color-primary:        #0167AF;
  --color-primary-hover:  #014A85;
  --color-sky:            #5BC2E7;
  --color-sky-soft:       #E6F5FB;
  --color-red:            #ED3F41;
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F4F8FB;
  --color-bg-deep:        #062B45;
  --color-text:           #0F172A;
  --color-text-muted:     #5A6B82;
  --color-white:          #FFFFFF;
  --color-border:         #E1E8F0;
  --color-success:        #14B86E;

  --font-heading: 'Syne', 'DM Sans', sans-serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-card:   20px;
  --radius-btn:    999px;
  --shadow-card:   0 8px 32px rgba(1, 103, 175, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(1, 103, 175, 0.16);
  --shadow-calc:   0 30px 80px rgba(1, 103, 175, 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;
}
a, button, input, select, textarea, label {
  touch-action: manipulation;  /* removes iOS 300ms tap delay */
}
/* Honour iPhone notch / safe-area insets on the fixed nav */
@supports (padding: max(0px)) {
  .nav__inner {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1.5rem, env(safe-area-inset-right));
  }
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -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.5rem;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@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 pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}
@keyframes floatY {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -10px, 0); }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding: 0.35rem 0.9rem;
  background: var(--color-sky-soft);
  border-radius: 999px;
}
.eyebrow--light {
  color: #fff;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  color: var(--color-text);
  letter-spacing: -0.025em;
  margin-top: 1rem;
}
.section-title .ink { color: var(--color-primary); }
.section-title .ink-red { color: var(--color-red); position: relative; }
.section-title .ink-red::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 4px;
  background: var(--color-red);
  border-radius: 4px;
}
.section-title--light { color: #fff; }
.section-title--light .ink { color: var(--color-sky); }

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

.section-head { margin-bottom: 3rem; }
.section-head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   BUTTONS (pill-shaped — opposite of Express Credit's square btns)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn i { width: 18px; height: 18px; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--sm i { width: 15px; height: 15px; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(1, 103, 175, 0.35);
}

.btn--outline-light {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: translateY(-2px);
}

.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
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-sky), var(--color-primary));
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============================================================
   NAVBAR — transparent over hero, solidifies on scroll
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
  animation: fadeInDown 0.5s ease-out both;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(1, 103, 175, 0.08);
  border-bottom-color: var(--color-border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;            /* don't let the right-side cluster squeeze the logo */
  transition: opacity 0.2s ease, background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}
.nav__logo:hover { opacity: 0.92; }
.nav__logo-img {
  height: 42px;
  width: auto;
  max-width: none;           /* override global img { max-width: 100% } so wide wordmark renders at natural width */
  display: block;
  border-radius: 6px;
  transition: height 0.3s ease;
}

/* When nav is transparent over the dark hero, give the logo a soft white pill so it reads cleanly */
.nav:not(.is-scrolled) .nav__logo {
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.nav:not(.is-scrolled) .nav__logo-img {
  height: 36px;
}
.nav:not(.is-scrolled) .nav__links a {
  color: #fff;
}
.nav:not(.is-scrolled) .lang-toggle {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}
.nav:not(.is-scrolled) .lang-toggle__btn {
  color: rgba(255,255,255,0.85);
}
.nav:not(.is-scrolled) .lang-toggle__btn.is-active {
  background: #fff;
  color: var(--color-primary);
}
.nav:not(.is-scrolled) .nav__burger { color: #fff; }

.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: currentColor;
  transition: width 0.3s ease;
}
.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);
  transition: background 0.3s, border-color 0.3s;
}
.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__burger {
  display: none;
  padding: 0.5rem;
  color: var(--color-text);
}

/* ============================================================
   HERO — full-bleed photographic
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Fallback gradient if Unsplash image fails */
.hero__bg--fallback {
  background: linear-gradient(135deg, #062B45 0%, #0167AF 60%, #5BC2E7 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(6, 43, 69, 0.85) 0%, rgba(1, 103, 175, 0.7) 60%, rgba(91, 194, 231, 0.45) 100%);
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
/* Split-layout variant: hero copy on left, application form on right */
.hero__container--split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero__copy { min-width: 0; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-red);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  /* Reduced from 6.5vw / 5.5rem because the split layout gives less horizontal room */
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.hero__title-accent {
  color: var(--color-sky);
  font-style: italic;
}

.hero__lead {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  line-height: 1.6;
}

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

.hero__pills {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero__pill:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.2);
}
.hero__pill i {
  width: 16px;
  height: 16px;
  color: var(--color-sky);
}

/* "Try the calculator" secondary text link under the pills (left column) */
.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: rgba(255,255,255,0.85);
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero__calc-link:hover {
  color: #fff;
  border-bottom-color: var(--color-sky);
}
.hero__calc-link i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-sky);
}
.hero__calc-link i:last-child { color: rgba(255,255,255,0.7); }

/* ============================================================
   HERO APPLICATION FORM (right column, white card on dark hero)
   ============================================================ */
.hero__form {
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.06);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
  position: relative;
  min-width: 0;
}
.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-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red);
  background: rgba(237, 63, 65, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.hero__form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}
.hero__form-sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
/* Tighten internal field spacing for the in-hero form */
.hero__form .field { margin-bottom: 0.95rem; }
.hero__form .field-row { margin-bottom: 0.95rem; gap: 0.85rem; }
.hero__form .field label {
  font-size: 0.72rem;
  margin-bottom: 0.35rem;
}
.hero__form .field input,
.hero__form .field select {
  padding: 0.7rem 0;
  font-size: 0.95rem;
}
.hero__form .btn { margin-top: 0.5rem; }
.hero__form .form__note {
  margin-top: 0.85rem;
  font-size: 0.75rem;
}

/* ============================================================
   CONTACT — "prefer to talk?" alternative variant
   ============================================================ */
.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: 0 auto 2rem;
  text-align: center;
}
.contact__alt-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.contact__details--row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  padding: 1.75rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact__details--row li { font-size: 0.88rem; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  padding: 3rem 0;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-sky) 100%);
  color: #fff;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.25);
}
.stats__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}
.stats__num-prefix {
  font-size: 0.5em;
  opacity: 0.8;
  order: -1;
}
.stats__label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

/* ============================================================
   ABOUT — image left, text right
   ============================================================ */
.about {
  padding: 7rem 0;
  background: var(--color-bg);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about__visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: visible;
}
.about__visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.about__visual-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card-hover);
  z-index: 2;
}
.about__visual-badge i {
  width: 32px;
  height: 32px;
  color: var(--color-red);
}
.about__visual-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1;
}
.about__visual-badge span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.about__copy .about__lead {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.about__list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}
.about__list i {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES — BENTO GRID
   ============================================================ */
.services {
  padding: 7rem 0;
  background: var(--color-bg-alt);
}
.bento {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.25rem;
}
.bento__card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  display: block;
  color: #fff;
  background: var(--color-primary);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
}
.bento__card--featured {
  grid-column: span 2;
  grid-row: span 2;
}
.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.bento__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
  filter: saturate(0.9);
}
.bento__card:hover .bento__img {
  transform: scale(1.07);
  filter: saturate(1.05);
}
.bento__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6, 43, 69, 0.25) 0%,
      rgba(6, 43, 69, 0.55) 40%,
      rgba(6, 43, 69, 0.92) 100%);
}
.bento__card--featured .bento__overlay {
  background:
    linear-gradient(120deg,
      rgba(6, 43, 69, 0.85) 0%,
      rgba(6, 43, 69, 0.55) 45%,
      rgba(6, 43, 69, 0.35) 100%),
    linear-gradient(180deg,
      rgba(6, 43, 69, 0.1) 60%,
      rgba(6, 43, 69, 0.85) 100%);
}
.bento__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-shadow: 0 1px 12px rgba(6, 43, 69, 0.55);
}
.bento__tag {
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  background: var(--color-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.bento__content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.bento__card--featured .bento__content h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.85rem;
}
.bento__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 42ch;
}
.bento__card--featured .bento__content p {
  font-size: 1.05rem;
  max-width: 48ch;
}
.bento__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bento__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}
.bento__arrow i { width: 16px; height: 16px; }
.bento__card:hover .bento__arrow {
  background: var(--color-sky);
  transform: rotate(45deg) translate(2px, -2px);
}

/* ============================================================
   JADUAL ANSURAN — dedicated centered section
   ============================================================ */
.jadual {
  position: relative;
  padding: 7rem 0;
  background: var(--color-sky-soft);
  overflow: hidden;
}
.jadual__bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 194, 231, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.jadual__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.jadual__lead {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 48ch;
}
.jadual__steps {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: step;
}
.jadual__steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}
.jadual__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  color: var(--color-primary);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(1, 103, 175, 0.12);
  flex-shrink: 0;
}

/* Calculator card */
.calc {
  background: #fff;
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: var(--shadow-calc);
  position: relative;
}
.calc__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.calc__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.calc__sublabel {
  display: block;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
.calc__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-sky-soft);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.calc__badge i { width: 12px; height: 12px; }

.calc__field { margin-bottom: 1.5rem; }
.calc__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}

.calc__amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
}
.calc__currency {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-muted);
}
.calc__amount input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--color-text);
  outline: none;
  width: 100%;
  -moz-appearance: textfield;
  letter-spacing: -0.02em;
}
.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: 1rem;
  -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: 22px;
  height: 22px;
  background: var(--color-primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(1, 103, 175, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
}
.calc__range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(1, 103, 175, 0.4);
  cursor: pointer;
}
.calc__range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.calc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.calc__chip {
  padding: 0.6rem 1rem;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: all 0.2s ease;
  min-width: 56px;
}
.calc__chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.calc__chip.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: scale(1.04);
}

.calc__result {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-sky) 100%);
  border-radius: 16px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc__result::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.calc__result-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  position: relative;
}
.calc__result-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  position: relative;
}
.calc__result-prefix {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
}
.calc__result-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.calc__result-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.75rem;
  position: relative;
}
.calc__result-meta strong { color: #fff; font-weight: 700; }

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

/* ============================================================
   PROCESS — vertical alternating timeline
   ============================================================ */
.process {
  padding: 7rem 0;
  background: var(--color-bg);
}
.timeline {
  margin-top: 4rem;
  position: relative;
  padding: 1rem 0;
}
.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}
.timeline__line::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(180deg, var(--color-primary), var(--color-sky));
  transition: height 0.1s linear;
}
.timeline__item {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem;
  margin-bottom: 2rem;
}
.timeline__item--left { padding-right: 3.5rem; text-align: right; }
.timeline__item--right { left: 50%; padding-left: 3.5rem; }

.timeline__item::before {
  /* dot on center line */
  content: '';
  position: absolute;
  top: 2.25rem;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(1, 103, 175, 0.1);
  z-index: 2;
}
.timeline__item--left::before {
  right: -8px;
}
.timeline__item--right::before {
  left: -8px;
}

.timeline__card {
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.timeline__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-sky);
  margin-bottom: 0.5rem;
}
.timeline__card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.timeline__card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIAL — single large card
   ============================================================ */
.testimonial {
  padding: 6rem 0;
  background: var(--color-bg-alt);
}
.testimonial__card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.testimonial__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-sky));
}
.testimonial__avatar {
  position: relative;
}
.testimonial__avatar img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 6px solid var(--color-sky-soft);
  background: var(--color-sky-soft);
}
.testimonial__avatar--fallback {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--color-sky-soft);
}
.testimonial__avatar--fallback::after {
  content: attr(data-initial);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 5rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.testimonial__avatar::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 24px;
  width: 22px;
  height: 22px;
  background: var(--color-red);
  border: 4px solid #fff;
  border-radius: 50%;
}
.testimonial__quote-icon {
  width: 36px;
  height: 36px;
  color: var(--color-sky);
  margin-bottom: 1rem;
}
.testimonial__quote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.testimonial__person strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
}
.testimonial__person span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ============================================================
   CONTACT — blue background, floating form
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--color-bg-deep) 0%, var(--color-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 194, 231, 0.25) 0%, transparent 70%);
  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.78);
  margin: 1.25rem 0 2rem;
  max-width: 48ch;
  line-height: 1.7;
}
.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.88);
  line-height: 1.5;
}
.contact__details i {
  width: 18px;
  height: 18px;
  color: var(--color-sky);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact__details a:hover { color: #fff; text-decoration: underline; }

/* 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.3);
}
.contact__form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

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

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.field__optional {
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 0.4rem;
  opacity: 0.7;
}

.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.25s ease;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  /* Signature: red accent on the active field (the only place red appears in the form) */
  border-bottom-color: var(--color-red);
}
.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: var(--color-red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  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: 56px;
  width: auto;
  border-radius: 8px;
  background: #fff;
  padding: 6px 10px;
}
.footer__col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.1rem;
}
.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-sky); }

.footer__newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.newsletter {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
  padding: 4px;
}
.newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter button {
  width: 38px;
  height: 38px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
}
.newsletter button i { width: 14px; height: 14px; }
.newsletter button:hover { background: var(--color-sky); }

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer__permit strong { color: #fff; font-weight: 600; }

.footer__poweredby {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  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-sky);
  border-bottom-color: var(--color-sky);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero split layout collapses to single column on tablet; form drops below copy */
  .hero { min-height: auto; padding: calc(var(--nav-h) + 2rem) 0 3.5rem; }
  .hero__container--split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__form { max-width: 560px; width: 100%; margin: 0 auto; }
  .hero__pills { margin-top: 1.5rem; }
  .hero__calc-link { margin-top: 1.25rem; }

  .about__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__visual img { height: 400px; }
  .about__visual-badge { bottom: -22px; right: 1rem; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .bento__card--featured { grid-column: span 2; grid-row: span 1; }

  .jadual__grid { grid-template-columns: 1fr; gap: 3rem; }

  .timeline__item { padding: 1.5rem 2rem; }
  .timeline__item--left { padding-right: 2.5rem; }
  .timeline__item--right { padding-left: 2.5rem; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__details--row { grid-template-columns: 1fr; }

  .testimonial__card { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; text-align: center; }
  .testimonial__avatar img { width: 140px; height: 140px; margin: 0 auto; }
  .testimonial__quote-icon { margin-left: auto; margin-right: auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@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.5rem;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text) !important;
  }
  .nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .nav__cta span { display: none; }

  /* Mobile nav: shrink the logo so it fits next to lang toggle + Apply + burger
     without being squashed. Also tighten the white pill padding. */
  .nav__logo-img { height: 34px; }
  .nav.is-scrolled .nav__logo-img { height: 30px; }
  .nav:not(.is-scrolled) .nav__logo { padding: 3px 8px; }
  .nav:not(.is-scrolled) .nav__logo-img { height: 30px; }
  .nav__inner { gap: 0.5rem; }
  .nav__actions { gap: 0.5rem; }

  .hero { min-height: auto; padding: calc(var(--nav-h) + 1.5rem) 0 2.5rem; }
  .hero__container--split { gap: 2rem; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 2.8rem); }
  .hero__pills { margin-top: 1.5rem; gap: 0.5rem; }
  .hero__pill { font-size: 0.78rem; padding: 0.5rem 0.85rem; }
  .hero__cta-row .btn { flex: 1; justify-content: center; }
  .hero__form { padding: 1.5rem; }
  .hero__form-title { font-size: 1.4rem; }
  .hero__form .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero__form .field-row .field { margin-bottom: 0.95rem; }
  .contact--alt { padding: 3.5rem 0; }
  .contact__alt-actions { flex-direction: column; }
  .contact__alt-actions .btn { width: 100%; justify-content: center; }

  .stats { padding: 2.5rem 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .stats__item + .stats__item::before { display: none; }
  .stats__item:nth-child(odd) + .stats__item::before {
    display: block;
    top: 50%; transform: translateY(-50%);
    left: -1rem;
    height: 60%;
    width: 1px;
  }

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

  .bento { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .bento__card--featured { grid-column: span 1; }

  .calc { padding: 1.75rem; }
  .calc__result-value { font-size: 2.3rem; }
  .calc__amount input { font-size: 1.7rem; }

  /* Timeline collapses to single column with left line */
  .timeline__line { left: 18px; transform: none; }
  .timeline__item {
    width: 100%;
    padding: 0.5rem 0 2rem 3rem;
    text-align: left !important;
    left: 0 !important;
  }
  .timeline__item--left { padding-right: 0; }
  .timeline__item::before {
    left: 10px !important;
    right: auto !important;
    top: 1.5rem;
  }

  .contact__form { padding: 1.75rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 1.25rem; }

  /* Mobile footer: brand on its own row, then Loans | Company side-by-side,
     then Newsletter 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;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero__container { padding: 0 1rem; }
  .hero__pills { flex-direction: column; align-items: flex-start; }
  .hero__pill { width: auto; }

  /* Smallest phones: shrink logo + lang toggle so nothing collides */
  .nav__logo-img,
  .nav:not(.is-scrolled) .nav__logo-img { height: 26px; }
  .nav:not(.is-scrolled) .nav__logo { padding: 3px 6px; }
  .lang-toggle__btn { padding: 0.3rem 0.55rem; font-size: 0.7rem; }

  .calc__chip { padding: 0.55rem 0.85rem; font-size: 0.85rem; min-width: 48px; }
  .calc__result-value { font-size: 2rem; }
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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