﻿@font-face {
  font-family: 'STC Bold';
  src: url('../fonts/STC Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
  --navy: #0b1f36;
  --navy-soft: #112e4b;
  --navy-deep: #081628;
  --orange: #ef7d20;
  --orange-soft: #fff2e6;
  --sand: #f6f1e8;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --surface-accent: #eef4fa;
  --line: #d9e3ee;
  --text: #16314c;
  --text-soft: #587089;
  --white: #ffffff;
  --success: #1e9e63;
  --shadow: 0 28px 72px rgba(11, 31, 54, 0.14);
  --soft-shadow: 0 16px 44px rgba(11, 31, 54, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'STC Bold', Tajawal, Cairo, Arial, sans-serif;
  color: var(--text);
  background: #fbfcfe;
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1220px, calc(100% - 36px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  top: -80px;
  right: 18px;
  z-index: 200;
  background: var(--orange);
  color: var(--navy-deep);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.top-bar {
  background: var(--navy-deep);
  color: #d8e2ee;
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.top-mini, .top-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 46, 75, 0.08);
}
.nav-exact-header {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.brand img {
  width: 84px;
  height: 60px;
  object-fit: contain;
}
.brand h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  color: var(--navy);
}
.brand p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links-exact {
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
  color: #233b57;
  font-size: 15px;
  font-weight: 800;
}
.nav-links-exact a {
  position: relative;
  white-space: nowrap;
  padding: 10px 0;
  transition: color .2s ease;
}
.nav-links-exact a:hover { color: var(--orange); }
.nav-links-exact .has-arrow { padding-left: 16px; }
.nav-links-exact .has-arrow::before {
  content: '⌄';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-54%);
  color: #60758d;
  font-size: 12px;
}
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.lang-btn,
.quote-btn,
.mobile-toggle,
.btn,
.small-btn,
.btn-ghost {
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.lang-btn,
.quote-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}
.lang-btn {
  display: none;
  background: #fff;
  color: var(--navy);
}
.quote-btn {
  background: #334c68;
  color: var(--white);
  border-color: #334c68;
  border-radius: 6px;
  padding-inline: 24px;
}
.quote-btn:hover,
.lang-btn:hover,
.mobile-toggle:hover,
.btn:hover,
.small-btn:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}
.mobile-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 109;
  background: rgba(8, 22, 40, 0.45);
  display: none;
}
.menu-overlay.open { display: block; }
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  z-index: 110;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .28s ease;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.mobile-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--surface-accent);
  color: var(--navy);
  font-weight: 800;
}
.close-menu {
  border: 0;
  background: var(--orange);
  color: var(--navy-deep);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.05s ease, transform 6s ease;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 22, 40, .95) 0%, rgba(8, 22, 40, .86) 36%, rgba(8, 22, 40, .2) 100%);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 50px;
  padding: 76px 0 120px;
}
.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge {
  padding: 10px 14px;
  border-inline-start: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.08);
  color: #ffcb95;
}
.eyebrow {
  color: var(--orange);
  margin-bottom: 12px;
}
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.14;
  letter-spacing: -.03em;
}
.hero p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 19px;
  line-height: 1.95;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn,
.btn-ghost,
.small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}
.btn {
  border-radius: 999px;
  padding: 15px 28px;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy-deep);
  box-shadow: 0 18px 36px rgba(239,125,32,.25);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.26);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.btn-ghost {
  border-radius: 999px;
  padding: 14px 24px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  color: #c8d4e2;
  font-size: 15px;
}
.hero-links a {
  color: #24d366;
  font-weight: 900;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-point {
  padding: 10px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #e4edf7;
  font-size: 14px;
  font-weight: 700;
}
.hero-side .hero-card {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(3, 14, 29, 0.74);
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(16px);
}
.panel-kicker {
  color: #ffcb95;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-card h3 {
  margin: 12px 0 14px;
  font-size: 28px;
  line-height: 1.45;
  color: #fff;
}
.hero-card p {
  color: #cad6e3;
  font-size: 15px;
  line-height: 1.9;
}
.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-bottom: 0; }
.hero-stat b {
  font-size: 38px;
  color: #ffcb95;
}
.hero-stat span {
  color: #d6e2ee;
  font-weight: 700;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.hero-dot.active {
  width: 34px;
  background: var(--orange);
}

.trust-bar {
  background: #fff;
  border-block: 1px solid rgba(17, 46, 75, .08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  background: var(--orange);
  color: var(--navy-deep);
  font-weight: 900;
}
.center-check { margin: 0 auto 14px; }
.context-icon,
.list-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--teal));
}
.context-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.context-icon svg,
.list-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.list-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  margin-top: 4px;
}
.stats {
  background: linear-gradient(180deg, var(--sand) 0%, #fbf8f2 100%);
  padding: 42px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.stat-card,
.card,
.partner,
.badge-card,
.journey-card {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid rgba(17, 46, 75, .08);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}
.stat-card,
.card,
.journey-card {
  padding: 28px;
}
.stat-card {
  text-align: center;
}
.stat-card b {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: var(--navy);
}
.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}
.section-light { background: #fbfcfe; }
.section-sand { background: linear-gradient(180deg, #fffaf4 0%, #f6f1e8 100%); }
.section-accent {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
}
.section-heading {
  margin-bottom: 34px;
}
.split-heading {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: end;
}
.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.section-desc {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.95;
  max-width: 760px;
}
.center { text-align: center; }
.center .section-desc { margin-inline: auto; }
.text-on-dark { color: #fff; }
.muted-on-dark { color: #d2deea; }

.about-grid,
.contact-grid,
.dual-grid {
  display: grid;
  gap: 28px;
}
.about-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}
.about-copy,
.contact-copy { align-self: start; }
.lead {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.65;
  font-weight: 900;
}
.about-body {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.95;
}
.point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px;
  margin: 10px 0;
  border: 1px solid rgba(239,125,32,.12);
  border-radius: var(--radius-md);
  background: var(--orange-soft);
  font-weight: 700;
  color: var(--text);
}
.dark-panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.mini-grid {
  display: grid;
  gap: 16px;
}
.mini-card {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 22px;
}
.mini-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
}
.mini-card p {
  margin: 0;
  color: #d3deea;
  line-height: 1.9;
}
.grid-3,
.grid-4,
.grid-5,
.journey-grid {
  display: grid;
  gap: 20px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.journey-grid { grid-template-columns: repeat(4, 1fr); }
.kicker-number {
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .08em;
}
.card h3,
.partner,
.badge-card,
.journey-card h3 {
  color: var(--navy);
}
.card p,
.badge-card,
.partner,
.journey-card p { color: var(--text-soft); }
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  min-height: 420px;
}
html[dir='ltr'] .service-card { text-align: left; }
.service-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff7ed 0%, #eef5fb 100%);
  color: var(--navy);
  border: 1px solid rgba(239,125,32,.22);
  font-size: 32px;
  font-weight: 900;
}
.service-card h3 {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.45;
}
.service-card ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-soft);
}
.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-card li::before {
  content: none;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.small-btn {
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
}
.small-btn:hover { background: var(--orange); color: var(--navy-deep); }
.journey-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.journey-step {
  display: inline-flex;
  min-width: 48px;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffcb95;
  font-weight: 900;
}
.journey-card h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 20px;
}
.journey-card p {
  margin: 0;
  color: #d3deea;
  line-height: 1.9;
}
.project-image {
  height: 170px;
  border-radius: 22px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
  position: relative;
  overflow: hidden;
}
.project-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-dashboard.svg') center / cover no-repeat;
  opacity: .45;
}
.meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 800;
  text-align: center;
}
.partner,
.badge-card {
  padding: 24px 18px;
  text-align: center;
  font-weight: 800;
}
.article-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}
.cta-band {
  padding: 0 0 28px;
}
.cta-band-inner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 50%, #294d6b 100%);
  color: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.cta-band-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.3;
}
.cta-band-inner p {
  margin: 0;
  color: #d3deea;
  line-height: 1.9;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.compact-section { padding-top: 68px; }
.dual-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.compact-grid { margin-top: 22px; }

.contact-grid {
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
}
.contact-grid > .form {
  min-height: 0;
}
.contact-box {
  margin-top: 24px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  box-shadow: var(--soft-shadow);
}
.contact-box p {
  margin: 0 0 10px;
  color: #e4edf7;
}
.contact-box p:last-child { margin-bottom: 0; }
.form {
  display: grid;
  gap: 12px;
}
.field-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
  color: var(--text);
  font-size: 15px;
}
.input:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(239,125,32,.14);
}
.btn-block { width: 100%; }

.footer {
  position: relative;
  overflow: hidden;
  background: #061426;
  color: #fff;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(239,125,32,.18), transparent 24rem), linear-gradient(180deg, #0b2138 0%, #061426 100%);
}
.footer .container { position: relative; z-index: 1; }
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr .85fr .8fr 1.1fr;
  gap: 28px;
  padding: 72px 0 38px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-img {
  width: 82px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
}
.footer-logo-wrap h3,
.footer-links-block h3,
.footer-contact-block h3,
.footer-contact-block h4 {
  margin: 0 0 14px;
  color: #fff;
}
.footer-logo-wrap p,
.footer-desc,
.footer-links-block a,
.footer-contact-block p b,
.footer-bottom-bar {
  color: #d4dfeb;
}
.footer-desc {
  margin: 0;
  line-height: 1.95;
  font-size: 14px;
}
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
}
.footer-social-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
.footer-links-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-links-block a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.footer-links-block a::before {
  content: '‹';
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}
.footer-contact-block p {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  margin: 0 0 12px;
}
.footer-contact-block p span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239,125,32,.12);
  color: var(--orange);
  font-weight: 900;
}
.footer-contact-block h4 {
  margin-top: 20px;
  font-size: 16px;
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-payments span {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #e2ebf4;
  font-size: 12px;
  font-weight: 800;
}
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 14px;
}
.footer-bottom-bar div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 70;
}
.floating-whatsapp {
  right: 20px;
  bottom: 96px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #052b17;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(37,211,102,.28);
}
.back-to-top {
  left: 20px;
  bottom: 96px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}
.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(11,31,54,.96);
  backdrop-filter: blur(14px);
}
.sticky-mobile-cta a {
  display: grid;
  place-items: center;
  gap: 4px;
  color: #fff;
  padding: 10px 4px;
  font-size: 12px;
}
.sticky-mobile-cta span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(239,125,32,.18);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
#servicesGrid .service-card,
#servicesGrid .fade-in {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.page-hero {
  padding: 118px 0 46px;
  background: linear-gradient(180deg, #f8fafc 0%, #f3ecdf 100%);
}
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
}
.page-hero p {
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
  max-width: 760px;
}
.page-body { padding: 0 0 88px; }
.page-layout {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 26px;
  align-items: start;
}
.page-panel {
  background: #fff;
  border: 1px solid rgba(17,46,75,.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--soft-shadow);
}
.page-panel h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 28px;
}
.page-panel p,
.page-panel li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.9;
}
.page-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.page-panel li {
  position: relative;
  padding-right: 18px;
}
.page-panel li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.page-boxes { display: grid; gap: 18px; }
.page-note {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
}
.page-note h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
}
.page-note p { color: #d3deea; }
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.info-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-accent);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1280px) {
  .nav-links-exact { gap: 18px; font-size: 14px; }
  .nav-exact-header { gap: 20px; }
  .hero-grid { gap: 32px; }
}

@media (max-width: 1180px) {
  .nav-exact-header { grid-template-columns: auto 1fr auto; }
  .nav-links-exact { display: none; }
  .lang-btn,
  .mobile-toggle { display: inline-grid; place-items: center; }
  .hero-grid,
  .split-heading,
  .about-grid,
  .contact-grid,
  .dual-grid,
  .page-layout,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-main-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .hero { min-height: 700px; }
  .hero-slide::after {
    background: linear-gradient(180deg, rgba(8,22,40,.92), rgba(8,22,40,.62));
  }
  .trust-grid,
  .stats-grid,
  .grid-3,
  .grid-4,
  .grid-5,
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band-actions { justify-content: flex-start; }
}

@media (max-width: 700px) {
  body { padding-bottom: 72px; }
  .top-bar { display: none; }
  .container { width: min(100% - 24px, 1220px); }
  .brand img { width: 64px; height: 48px; }
  .brand h2 { font-size: 17px; }
  .brand p { font-size: 11px; }
  .hero-grid { padding: 58px 0 110px; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .hero p { font-size: 16px; }
  .hero-actions,
  .cta-band-actions { width: 100%; }
  .btn,
  .btn-ghost,
  .quote-btn { width: 100%; }
  .hero-links { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-points { flex-direction: column; align-items: stretch; }
  .hero-point { width: 100%; justify-content: center; }
  .section { padding: 72px 0; }
  .section-title { font-size: clamp(25px, 7vw, 34px); }
  .section-desc,
  .about-body,
  .page-hero p { font-size: 15px; }
  .grid-3,
  .grid-4,
  .grid-5,
  .journey-grid,
  .trust-grid,
  .stats-grid,
  .dual-grid { grid-template-columns: 1fr; }
  .card,
  .stat-card,
  .journey-card,
  .page-panel,
  .service-card,
  .hero-side .hero-card { padding: 22px; }
  .service-card { min-height: auto; }
  .footer-main-grid { grid-template-columns: 1fr; padding: 50px 0 26px; text-align: center; }
  .footer-logo-wrap,
  .footer-social-row,
  .footer-payments,
  .footer-bottom-bar,
  .footer-bottom-bar div { justify-content: center; }
  .footer-links-block a { justify-content: center; }
  .footer-contact-block p {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .sticky-mobile-cta { display: grid; }
  .floating-whatsapp { display: none; }
  .back-to-top { bottom: 84px; left: 12px; }
}

/* Mobile refinement pass */
@media (max-width: 700px) {
  .nav-exact-header {
    min-height: 78px;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px 0;
  }
  .brand {
    gap: 10px;
    min-width: 0;
  }
  .brand div {
    min-width: 0;
  }
  .brand h2 {
    font-size: 15px;
    white-space: nowrap;
  }
  .brand p {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
  .lang-btn {
    padding: 9px 12px;
    min-width: auto;
    font-size: 13px;
  }
  .mobile-toggle {
    width: 42px;
    height: 42px;
  }
  .hero {
    min-height: 620px;
  }
  .hero-grid {
    gap: 22px;
    padding: 44px 0 92px;
  }
  .badge {
    font-size: 11px;
    padding: 8px 12px;
  }
  .hero h1 {
    font-size: 29px;
    line-height: 1.28;
    margin: 16px 0 14px;
    max-width: 100%;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-side .hero-card {
    padding: 20px;
    border-radius: 24px;
  }
  .hero-card h3 {
    font-size: 23px;
    line-height: 1.5;
  }
  .hero-point {
    font-size: 13px;
    justify-content: center;
  }
}

/* Header fit and final polish */
.nav-exact-header { grid-template-columns: auto minmax(0, 1fr) auto; }
.nav-links-exact { min-width: 0; gap: 20px; font-size: 14px; }
.brand { white-space: nowrap; }
.brand h2 { font-size: 19px; }
.brand img { width: 74px; height: 54px; }
.quote-btn { padding-inline: 20px; }
@media (max-width: 700px) {
  .hero-side { display: none; }
  .hero { min-height: 560px; }
  .hero-grid { padding-bottom: 76px; }
}

/* WhatsApp icon style */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: block;
}
.floating-whatsapp.icon-only {
  width: 66px;
  height: 66px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 18px 42px rgba(37,211,102,.25);
}
.floating-whatsapp.icon-only .whatsapp-icon {
  width: 66px;
  height: 66px;
}
.sticky-mobile-cta .whatsapp-icon {
  width: 28px;
  height: 28px;
}
.sticky-mobile-cta a[href*="wa.me"] span {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
}



/* Hero layout aligned to reference */
.hero {
  min-height: 880px;
}
.hero-slide {
  background-position: center center;
}
.hero-slide::after {
  background: linear-gradient(180deg, rgba(8,22,40,.18) 0%, rgba(8,22,40,.28) 42%, rgba(8,22,40,.38) 100%);
}
.hero-grid {
  min-height: 880px;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 0;
  padding: 110px 0 120px;
}
.hero-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-copy .badge {
  margin-inline: auto;
  border-inline-start: 0;
  border-radius: 999px;
  background: rgba(255, 214, 10, .18);
  color: #ffe082;
  padding: 12px 18px;
}
.hero h1 {
  max-width: 840px;
  margin: 20px auto 18px;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.08;
  text-shadow: 0 8px 24px rgba(8,22,40,.28);
}
.hero p {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(255,255,255,.92);
  text-shadow: 0 4px 18px rgba(8,22,40,.24);
}
.hero-actions {
  justify-content: center;
  margin-top: 30px;
}
.hero-links {
  justify-content: center;
  margin-top: 18px;
}
.hero-points {
  justify-content: center;
  margin-top: 18px;
}
.hero-point {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.12);
}
.hero-side {
  display: none;
}
.hero-dots {
  bottom: 44px;
}
@media (max-width: 900px) {
  .hero,
  .hero-grid {
    min-height: 700px;
  }
  .hero-grid {
    padding: 80px 0 100px;
  }
  .hero h1 {
    font-size: clamp(34px, 8vw, 48px);
    line-height: 1.18;
  }
  .hero p {
    font-size: 16px;
    line-height: 1.85;
  }
}
@media (max-width: 700px) {
  .hero,
  .hero-grid {
    min-height: 620px;
  }
  .hero-grid {
    padding: 64px 0 88px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.24;
  }
  .hero-copy .badge {
    font-size: 11px;
    padding: 9px 14px;
  }
  .hero-actions,
  .hero-links,
  .hero-points {
    width: 100%;
  }
}

/* Professional typography refinement pass */
body {
  font-size: 16px;
  line-height: 1.85;
}
.nav-links-exact {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.brand h2 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.brand p {
  font-size: 12px;
  font-weight: 700;
}
.quote-btn,
.lang-btn,
.btn,
.btn-ghost,
.small-btn {
  font-size: 15px;
  font-weight: 800;
}
.hero-copy .badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.hero h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 900;
}
.hero p {
  font-size: 19px;
  line-height: 1.95;
  font-weight: 500;
  max-width: 760px;
}
.hero-links {
  font-size: 15px;
}
.hero-point {
  font-size: 14px;
  font-weight: 700;
}
.section-title {
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 900;
}
.section-desc,
.about-body,
.contact-box p,
.page-hero p,
.page-panel p,
.page-panel li,
.card p,
.journey-card p,
.mini-card p {
  font-size: 17px;
  line-height: 1.95;
  font-weight: 500;
}
.lead {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.7;
  font-weight: 800;
}
.service-card h3,
.card h3,
.journey-card h3,
.page-panel h2 {
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}
.service-card ul {
  font-size: 15px;
  line-height: 1.9;
}
.stat-card b {
  font-size: 42px;
  font-weight: 900;
}
.stat-card span,
.trust-item,
.footer-desc,
.footer-links-block a,
.footer-contact-block p b,
.footer-bottom-bar {
  font-size: 15px;
  line-height: 1.85;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(34px, 7vw, 48px);
    line-height: 1.18;
  }
  .hero p {
    font-size: 17px;
    line-height: 1.9;
  }
  .section-title {
    font-size: clamp(28px, 5.8vw, 38px);
  }
  .service-card h3,
  .card h3,
  .journey-card h3,
  .page-panel h2 {
    font-size: 22px;
  }
}

/* Hero typography refinement */
.hero {
  min-height: clamp(720px, 86vh, 820px);
}
.hero-slide.active {
  opacity: .76;
}
.hero-slide::after {
  background:
    radial-gradient(circle at 50% 46%, rgba(8,22,40,.4) 0%, rgba(8,22,40,.18) 30%, rgba(8,22,40,.54) 72%),
    linear-gradient(180deg, rgba(8,22,40,.5) 0%, rgba(8,22,40,.28) 42%, rgba(8,22,40,.62) 100%);
}
.hero-grid {
  min-height: clamp(720px, 86vh, 820px);
  padding: 104px 0 112px;
}
.hero-copy {
  position: relative;
  max-width: 880px;
  padding: 22px 28px 24px;
  border-radius: 8px;
  isolation: isolate;
}
.hero-copy::before {
  content: '';
  position: absolute;
  inset: -12px -24px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(3,14,29,.68) 0%, rgba(3,14,29,.42) 46%, rgba(3,14,29,0) 76%);
  filter: blur(1px);
}
.hero-copy .badge {
  min-height: 52px;
  padding: 12px 26px;
  color: #5a4300;
  background: rgba(232, 190, 68, .96);
  box-shadow: 0 14px 34px rgba(232,190,68,.2);
}
.hero h1 {
  max-width: 15ch;
  margin: 26px auto 18px;
  font-size: clamp(42px, 4.55vw, 68px);
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0,0,0,.34);
}
.hero p {
  max-width: 760px;
  color: rgba(232, 241, 250, .94);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 2;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0,0,0,.42);
}
.hero-actions {
  margin-top: 34px;
}
.hero-links {
  margin-top: 20px;
}
.hero-note-plain,
.hero-links span,
#hero-note {
  color: #ffd633;
  text-shadow: 0 3px 14px rgba(0,0,0,.34);
}

@media (max-width: 1100px) {
  .hero,
  .hero-grid {
    min-height: 720px;
  }
  .hero-grid {
    padding: 98px 0 108px;
  }
  .hero-copy {
    max-width: 820px;
  }
  .hero h1 {
    max-width: 14ch;
    font-size: clamp(38px, 6vw, 58px);
  }
}

@media (max-width: 700px) {
  .hero,
  .hero-grid {
    min-height: 650px;
  }
  .hero-grid {
    padding: 78px 0 96px;
  }
  .hero-copy {
    padding: 12px 8px 16px;
  }
  .hero-copy::before {
    inset: -10px -8px;
  }
  .hero-copy .badge {
    min-height: auto;
    padding: 9px 16px;
    font-size: 11px;
  }
  .hero h1 {
    max-width: 13ch;
    margin: 18px auto 14px;
    font-size: clamp(31px, 8.1vw, 42px);
    line-height: 1.28;
  }
  .hero p {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.9;
  }
  .hero-actions {
    margin-top: 24px;
  }
}

/* Transparent logo fit */
.brand img,
.footer-logo-img {
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
}
.brand img {
  width: 86px;
  height: 58px;
}
.footer-logo-img {
  width: 86px;
  height: 62px;
}
@media (max-width: 700px) {
  .brand img {
    width: 70px;
    height: 50px;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.24;
  }
  .hero p,
  .section-desc,
  .about-body,
  .contact-box p,
  .page-hero p,
  .page-panel p,
  .page-panel li,
  .card p,
  .journey-card p,
  .mini-card p {
    font-size: 15px;
    line-height: 1.9;
  }
  .hero-copy .badge,
  .hero-point,
  .trust-item,
  .footer-desc,
  .footer-links-block a,
  .footer-contact-block p b,
  .footer-bottom-bar {
    font-size: 13px;
  }
  .section-title {
    font-size: 26px;
    line-height: 1.28;
  }
  .service-card h3,
  .card h3,
  .journey-card h3,
  .page-panel h2 {
    font-size: 20px;
    line-height: 1.42;
  }
  .stat-card b {
    font-size: 34px;
  }
}

/* Global typography consistency */
.top-bar,
.top-mini,
.top-meta {
  font-size: 13px;
  line-height: 1.7;
}
.eyebrow,
.badge,
.panel-kicker,
.article-tag,
.kicker-number,
.field-label {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 800;
}
.trust-item,
.hero-stat span,
.stat-card span,
.hero-links,
.hero-point,
.footer-desc,
.footer-links-block a,
.footer-contact-block p b,
.footer-bottom-bar,
.footer-logo-wrap p {
  font-size: 15px;
  line-height: 1.85;
}
.mini-card h3,
.contact-box strong,
.footer-logo-wrap h3,
.footer-links-block h3,
.footer-contact-block h3,
.footer-contact-block h4 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
}
.service-card ul,
.point,
.contact-box p,
.input,
.page-panel p,
.page-panel li {
  font-size: 16px;
  line-height: 1.9;
}
.badge-card,
.partner {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 800;
}
.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 900;
}
.page-panel h2 {
  letter-spacing: -0.01em;
}
.footer-bottom-bar strong,
.hero-stat b,
.stat-card b {
  letter-spacing: -0.02em;
}
@media (max-width: 900px) {
  .trust-item,
  .hero-stat span,
  .stat-card span,
  .hero-links,
  .hero-point,
  .footer-desc,
  .footer-links-block a,
  .footer-contact-block p b,
  .footer-bottom-bar,
  .footer-logo-wrap p,
  .service-card ul,
  .point,
  .contact-box p,
  .input,
  .page-panel p,
  .page-panel li {
    font-size: 15px;
  }
  .badge-card,
  .partner {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .eyebrow,
  .badge,
  .panel-kicker,
  .article-tag,
  .kicker-number,
  .field-label {
    font-size: 12px;
  }
  .trust-item,
  .hero-stat span,
  .stat-card span,
  .hero-links,
  .hero-point,
  .footer-desc,
  .footer-links-block a,
  .footer-contact-block p b,
  .footer-bottom-bar,
  .footer-logo-wrap p,
  .service-card ul,
  .point,
  .contact-box p,
  .input,
  .page-panel p,
  .page-panel li {
    font-size: 14px;
    line-height: 1.85;
  }
  .mini-card h3,
  .contact-box strong,
  .footer-logo-wrap h3,
  .footer-links-block h3,
  .footer-contact-block h3,
  .footer-contact-block h4 {
    font-size: 18px;
  }
  .badge-card,
  .partner {
    font-size: 15px;
    line-height: 1.75;
  }
  .page-hero h1 {
    font-size: 28px;
    line-height: 1.25;
  }
}

/* About section visual correction */
#about .section-heading {
  margin-bottom: 28px;
}
#about .split-heading {
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
#about .section-title {
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.28;
  letter-spacing: -0.015em;
}
#about .section-desc {
  font-size: 16px;
  line-height: 1.95;
  max-width: 680px;
}
#about .lead {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.65;
  margin-bottom: 14px;
}
#about .about-body {
  font-size: 15px;
  line-height: 1.9;
}
#about .about-grid {
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: stretch;
}
#about .dark-panel {
  padding: 22px;
  border-radius: 26px;
}
#about .mini-grid {
  gap: 12px;
}
#about .mini-card {
  padding: 18px 20px;
  border-radius: 18px;
}
#about .mini-card h3 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}
#about .mini-card p {
  font-size: 14px;
  line-height: 1.8;
}
#about .point {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.8;
  margin: 8px 0;
}
@media (max-width: 900px) {
  #about .split-heading,
  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #about .section-title {
    font-size: clamp(24px, 5vw, 34px);
  }
}
@media (max-width: 700px) {
  #about .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
  #about .section-desc,
  #about .about-body {
    font-size: 14px;
    line-height: 1.85;
  }
  #about .lead {
    font-size: 19px;
    line-height: 1.6;
  }
  #about .dark-panel {
    padding: 18px;
  }
  #about .mini-card {
    padding: 16px 16px;
  }
  #about .mini-card h3 {
    font-size: 17px;
  }
  #about .mini-card p,
  #about .point {
    font-size: 13px;
  }
}

/* Why section visual correction */
#why-choose-us .section-heading {
  margin-bottom: 26px;
}
#why-choose-us .section-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 980px;
  margin-inline: auto;
}
#why-choose-us .section-desc {
  font-size: 16px;
  line-height: 1.9;
  max-width: 780px;
  margin-inline: auto;
}
#why-choose-us .grid-3 {
  gap: 18px;
}
#why-choose-us .card {
  padding: 24px 22px;
  border-radius: 24px;
  min-height: 220px;
}
#why-choose-us .kicker-number {
  font-size: 12px;
  margin-bottom: 12px;
}
#why-choose-us .card h3 {
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 14px;
}
#why-choose-us .card p {
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 900px) {
  #why-choose-us .section-title {
    font-size: clamp(24px, 5vw, 34px);
  }
  #why-choose-us .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  #why-choose-us .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
  #why-choose-us .section-desc {
    font-size: 14px;
    line-height: 1.85;
  }
  #why-choose-us .grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #why-choose-us .card {
    padding: 20px 18px;
    min-height: auto;
  }
  #why-choose-us .card h3 {
    font-size: 18px;
  }
  #why-choose-us .card p {
    font-size: 14px;
  }
}

/* Blog section premium card layout */
#blog {
  position: relative;
  overflow: hidden;
}
#blog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,184,176,.05), transparent 22%), linear-gradient(225deg, rgba(239,125,32,.04), transparent 26%);
  pointer-events: none;
}
#blog .container {
  position: relative;
  z-index: 1;
}
#blog .section-heading {
  margin-bottom: 34px;
}
#blog .section-title {
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.2;
  text-align: center;
}
#blog .section-desc {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
}
#blog .split-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
#blogGrid {
  gap: 24px;
}
.blog-card {
  padding: 18px 18px 22px;
  border-radius: 28px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-image {
  height: 232px;
  border-radius: 22px;
  margin-bottom: 18px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(15,35,58,.06);
}
.blog-image-1 {
  background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(10,39,69,.12)), url('../images/hero-dashboard.svg');
}
.blog-image-2 {
  background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(10,39,69,.12)), url('../images/hero-growth.svg');
}
.blog-image-3 {
  background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(10,39,69,.12)), url('../images/hero-ai.svg');
}
.blog-image-4 {
  background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(10,39,69,.12)), url('../images/hero-process.svg');
}
.blog-image-5 {
  background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(10,39,69,.12)), url('../images/hero-dashboard.svg');
}
.blog-image-6 {
  background-image: linear-gradient(180deg, rgba(255,255,255,.05), rgba(10,39,69,.12)), url('../images/hero-growth.svg');
}
.article-layout {
  display: grid;
  gap: 24px;
}
.article-hero-image {
  min-height: 320px;
  margin-bottom: 0;
}
.article-content {
  max-width: 920px;
  margin-inline: auto;
}
.article-content h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.45;
}
.article-content h2:not(:first-child) {
  margin-top: 26px;
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.article-tag {
  background: #fff6da;
  color: #d38a00;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
}
.article-tag-soft {
  background: #f6f2df;
  color: #9e8623;
}
.blog-card h3 {
  font-size: 20px;
  line-height: 1.45;
  margin: 0 0 14px;
}
.blog-card p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 18px;
}
.blog-meta-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(15,35,58,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  color: #46617d;
}
.blog-meta-row a {
  color: #1b4e8a;
  font-weight: 800;
}
@media (max-width: 900px) {
  .blog-image {
    height: 210px;
  }
  .blog-card h3 {
    font-size: 19px;
  }
}
@media (max-width: 700px) {
  .blog-card {
    padding: 16px 16px 20px;
  }
  .blog-image {
    height: 190px;
    margin-bottom: 16px;
  }
  .blog-card h3 {
    font-size: 18px;
  }
  .blog-card p,
  .blog-meta-row {
    font-size: 14px;
  }
  .blog-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Footer layout correction */
.footer-main-grid {
  grid-template-columns: 1.25fr .9fr .9fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.footer-brand-block {
  padding-left: 10px;
}
.footer-desc {
  max-width: 420px;
}
.footer-links-block,
.footer-contact-block {
  min-width: 0;
}
.footer-links-block ul {
  gap: 12px;
}
.footer-links-block a {
  justify-content: flex-start;
}
.footer-contact-block p {
  grid-template-columns: 34px 1fr;
  gap: 12px;
}
.footer-social-row {
  margin-top: 24px;
}
.footer-bottom-bar {
  margin-top: 18px;
}
@media (max-width: 1180px) {
  .footer-main-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
  }
  .footer-brand-block {
    grid-column: 1 / -1;
    padding-left: 0;
  }
}
@media (max-width: 700px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-desc {
    max-width: none;
  }
  .footer-links-block a {
    justify-content: center;
  }
  .footer-contact-block p {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* Premium redesign overrides: shell + hero */
:root {
  --navy: #081a2f;
  --navy-soft: #0d2743;
  --navy-deep: #05111f;
  --ink: #12263f;
  --ink-soft: #5a6d84;
  --surface: #fbfcff;
  --surface-2: #f3f7fb;
  --sand: #f7f4ee;
  --line: rgba(8,26,47,.09);
  --line-strong: rgba(8,26,47,.14);
  --orange: #f28a23;
  --orange-strong: #ff7a1a;
  --teal: #2ba7a1;
  --shadow-sm: 0 16px 40px rgba(8,26,47,.08);
  --shadow-md: 0 26px 72px rgba(8,26,47,.12);
  --shadow-lg: 0 44px 120px rgba(8,26,47,.16);
}
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(242,138,35,.08), transparent 26rem),
    radial-gradient(circle at 90% 0%, rgba(43,167,161,.08), transparent 22rem),
    #fbfcff;
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(6,18,34,.96), rgba(8,26,47,.98));
  transition: opacity .45s ease, visibility .45s ease;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.site-loader__inner { display: grid; justify-items: center; gap: 10px; text-align: center; color: #fff; }
.site-loader__inner strong { font-size: 24px; letter-spacing: -.02em; }
.site-loader__inner small { color: rgba(255,255,255,.66); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.site-loader__mark {
  width: 72px; height: 72px; border-radius: 50%; border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--orange); border-right-color: var(--teal); animation: siteSpin .9s linear infinite;
}
body.is-loading { overflow: hidden; }
.top-bar {
  background: linear-gradient(90deg, #081a2f, #0b2540 60%, #12314d);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-mini a { color: inherit; }
.navbar {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8,26,47,.06);
  transition: background .28s ease, box-shadow .28s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 38px rgba(8,26,47,.08);
}
.nav-exact-header { min-height: 88px; gap: 22px; }
.brand img { width: 78px; height: 58px; border-radius: 16px; background: rgba(8,26,47,.03); }
.brand h2 { font-size: 21px; }
.brand p { margin-top: 4px; color: var(--ink-soft); }
.nav-links { gap: 18px; }
.nav-links a {
  position: relative; color: #314760; font-weight: 800; padding: 8px 0;
}
.nav-links a::after {
  content: ''; position: absolute; inset-inline-start: 0; bottom: 0; width: 100%; height: 2px;
  border-radius: 999px; background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0); transform-origin: right; transition: transform .28s ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.lang-btn, .quote-btn, .mobile-toggle, .close-menu, .btn, .small-btn {
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}
.lang-btn:hover, .quote-btn:hover, .mobile-toggle:hover, .close-menu:hover, .btn:hover, .small-btn:hover { transform: translateY(-2px); }
.quote-btn {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: 0 14px 30px rgba(8,26,47,.12);
}
.quote-btn:hover { background: linear-gradient(135deg, var(--orange-strong), var(--orange)); color: var(--navy); }
.hero {
  min-height: 94vh;
  padding: 96px 0 98px;
  background: linear-gradient(135deg, #071a2f, #0e2945);
}
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .84fr); gap: 48px; z-index: 2; }
.hero-slide { transform: scale(1.06); transition: opacity .9s ease, transform 5.8s ease; }
.hero-slide.active { transform: scale(1); opacity: .82; }
.hero-slide::after { background: linear-gradient(90deg, rgba(7,26,47,.95) 0%, rgba(7,26,47,.86) 34%, rgba(7,26,47,.45) 100%); }
.hero-grid-lines {
  position: absolute; inset: 0; opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 170px 170px;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(12px); opacity: .34; }
.hero-orb-a { width: 280px; height: 280px; top: 10%; inset-inline-start: -70px; background: radial-gradient(circle, rgba(242,138,35,.95), transparent 72%); }
.hero-orb-b { width: 360px; height: 360px; bottom: -120px; inset-inline-end: -80px; background: radial-gradient(circle, rgba(43,167,161,.85), transparent 68%); }
.badge {
  padding: 11px 16px;
  border-radius: 999px;
  color: #ffd59f;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  border-inline-start: 0;
}
.hero h1 { max-width: 11ch; margin: 20px 0 18px; font-size: clamp(48px, 6vw, 88px); line-height: 1.04; letter-spacing: -.045em; }
.hero p { color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.95; }
.hero-links { font-size: 15px; font-weight: 700; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-point {
  padding: 11px 16px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); font-size: 14px; font-weight: 700;
}
.hero-card {
  position: relative; padding: 30px; border-radius: 34px; background: linear-gradient(180deg, rgba(9,28,48,.82), rgba(7,22,38,.72));
  border-color: rgba(255,255,255,.12); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px);
}
.hero-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(255,255,255,.06); pointer-events: none; }
.panel-kicker { margin-bottom: 18px; color: #ffcf88; font-size: 13px; }
.hero-card h3 { font-size: 28px; line-height: 1.35; }
.hero-card p { color: rgba(255,255,255,.74); font-size: 16px; }
.hero-stats-stack { display: grid; gap: 14px; margin-top: 24px; }
.hero-stat b, .stat-card b { display: inline-flex; align-items: baseline; gap: 2px; letter-spacing: -.03em; }
.counter-suffix { font-size: .56em; }
.hero-dots { bottom: 30px; }
@keyframes siteSpin { to { transform: rotate(360deg); } }

/* Premium redesign overrides: sections + footer + inner pages */
.section { padding: 102px 0; }
.section-tight { padding-top: 48px; padding-bottom: 48px; }
.section-sand { background: linear-gradient(180deg, rgba(247,244,238,.92), rgba(255,255,255,.78)); }
.section-accent {
  background: radial-gradient(circle at 10% 10%, rgba(43,167,161,.16), transparent 24rem), radial-gradient(circle at 90% 0%, rgba(242,138,35,.18), transparent 18rem), linear-gradient(135deg, #071a2f, #0c2746);
}
.section-with-glow::before, .section-with-pattern::before { content: ''; position: absolute; inset: 0; pointer-events: none; }
.section-with-glow::before { background: radial-gradient(circle at 18% 30%, rgba(242,138,35,.08), transparent 24rem); }
.section-with-pattern::before {
  background: linear-gradient(135deg, rgba(8,26,47,.03) 0, rgba(8,26,47,.03) 2px, transparent 2px, transparent 100%), linear-gradient(225deg, rgba(43,167,161,.05), transparent 28rem);
  background-size: 26px 26px, cover; opacity: .55;
}
.section-heading { gap: 16px; margin-bottom: 36px; }
.split-heading { grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); align-items: end; gap: 28px; }
.section-title { font-size: clamp(38px, 4.5vw, 60px); line-height: 1.18; letter-spacing: -.025em; }
.section-desc { color: var(--ink-soft); max-width: 780px; font-size: 18px; line-height: 1.95; }
#products .section-title, #blog .section-title { font-size: clamp(42px, 4.8vw, 64px); line-height: 1.18; }
#products .section-desc, #blog .section-desc { max-width: 920px; font-size: 18px; }
.trust-bar { border-block: 1px solid rgba(13,39,67,.08); background: rgba(255,255,255,.86); backdrop-filter: blur(14px); }
.trust-grid { gap: 16px; padding: 20px 0; }
.trust-item { padding: 10px 12px; font-weight: 800; }
.check, .center-check { background: linear-gradient(135deg, var(--orange), var(--teal)); }
.stats-grid { gap: 18px; }
.stat-card { padding: 28px 24px; border-radius: 28px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-card b { justify-content: center; color: var(--navy); font-size: 44px; }
.stat-card span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: 15px; line-height: 1.8; font-weight: 700; }
.about-grid { gap: 34px; align-items: stretch; }
.lead { margin-bottom: 18px; line-height: 1.7; }
.point { margin-top: 12px; padding: 16px 18px; border-radius: 18px; background: rgba(247,244,238,.72); border: 1px solid rgba(13,39,67,.05); }
.dark-panel { border-radius: 34px; padding: 28px; background: linear-gradient(160deg, #081a2f, #0f2b4a); box-shadow: var(--shadow-lg); }
.mini-grid { display: grid; gap: 14px; }
.mini-card { padding: 20px; border-radius: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.grid-3 { gap: 24px; }
.card, .partner, .badge-card, .journey-card, .page-panel { border-radius: 28px; box-shadow: var(--shadow-sm); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.card:hover, .partner:hover, .badge-card:hover, .journey-card:hover, .page-panel:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(242,138,35,.16); }
.kicker-number { width: 42px; height: 42px; justify-content: center; border-radius: 999px; background: rgba(242,138,35,.12); color: var(--orange-strong); margin-bottom: 18px; }
.why-grid .card, .service-card, .blog-card { overflow: hidden; }
.why-grid .card::after, .service-card::after, .blog-card::after { content: ''; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--teal)); transform: scaleX(0); transform-origin: right; transition: transform .28s ease; }
.why-grid .card:hover::after, .service-card:hover::after, .blog-card:hover::after { transform: scaleX(1); }
.service-card { align-items: flex-start; text-align: right; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.94)); }
.service-icon { width: 74px; height: 74px; margin-bottom: 18px; border-radius: 22px; background: linear-gradient(180deg, #f9fbfd, #eef4f8); border: 1px solid rgba(13,39,67,.06); }
.service-card h3 { font-size: 26px; }
.service-card ul { margin-bottom: 22px; gap: 10px; }
.service-card li { padding-inline-start: 0; position: relative; display: flex; gap: 10px; }
.service-card li::before { content: none; }
.small-btn { border-radius: 999px; padding: 11px 18px; }
.small-btn:hover { background: var(--orange); color: var(--navy); }
.journey-grid { gap: 20px; }
.journey-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); }
.journey-step { margin-bottom: 14px; padding: 8px 14px; background: rgba(255,255,255,.12); color: #ffd59f; }
.partner, .badge-card { box-shadow: 0 12px 40px rgba(8,26,47,.06); }
.blog-grid { align-items: stretch; }
.blog-image { height: 230px; border-radius: 22px; background-size: cover; background-position: center; transform: scale(1); transition: transform .5s ease; }
.blog-card:hover .blog-image { transform: scale(1.05); }
.blog-image-1 { background-image: linear-gradient(rgba(8,26,47,.18), rgba(8,26,47,.22)), url('../images/hero-dashboard.svg'); }
.blog-image-2 { background-image: linear-gradient(rgba(8,26,47,.14), rgba(8,26,47,.18)), url('../images/hero-growth.svg'); }
.blog-image-3 { background-image: linear-gradient(rgba(8,26,47,.18), rgba(8,26,47,.28)), url('../images/hero-process.svg'); }
.blog-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.article-tag { padding: 8px 12px; border-radius: 999px; background: rgba(242,138,35,.14); color: var(--orange-strong); font-size: 12px; }
.article-tag-soft { background: rgba(43,167,161,.12); color: var(--teal); }
.blog-meta-row { margin-top: 18px; font-size: 14px; font-weight: 800; }
.cta-band { padding-top: 28px; }
.cta-band-inner { padding: 38px 42px; border-radius: 34px; background: radial-gradient(circle at 10% 15%, rgba(242,138,35,.24), transparent 18rem), radial-gradient(circle at 80% 0%, rgba(43,167,161,.18), transparent 18rem), linear-gradient(135deg, #081a2f, #0f2b48); box-shadow: var(--shadow-lg); }
.cta-band-inner h2 { font-size: clamp(30px, 3.3vw, 46px); line-height: 1.2; }
.cta-band-inner p { color: rgba(255,255,255,.74); font-size: 17px; }
.compact-grid { margin-top: 24px; }
.contact-grid { gap: 32px; align-items: start; }
.contact-box { padding: 28px; border-radius: 28px; background: linear-gradient(135deg, #081a2f, #0c2746); box-shadow: var(--shadow-lg); }
.contact-box p, .contact-box a { color: rgba(255,255,255,.82); font-size: 15px; }
.field-label { font-size: 14px; font-weight: 800; color: var(--navy); }
.input { min-height: 56px; border-radius: 18px; background: rgba(255,255,255,.92); border-color: rgba(13,39,67,.1); }
.input:focus { border-color: rgba(242,138,35,.5); box-shadow: 0 0 0 5px rgba(242,138,35,.12); }
.input.is-invalid { border-color: rgba(220,38,38,.45); box-shadow: 0 0 0 5px rgba(220,38,38,.08); }
.form-status { min-height: 22px; font-size: 14px; font-weight: 700; color: var(--teal); }
.form-status.is-error { color: #c7342c; }
.footer { margin-top: 90px; background: linear-gradient(180deg, #0b2038 0%, #071527 100%); }
.footer::before { background: radial-gradient(circle at 12% 0%, rgba(242,138,35,.14), transparent 24rem), radial-gradient(circle at 88% 0%, rgba(43,167,161,.14), transparent 22rem); }
.footer-main-grid { grid-template-columns: 1.2fr .9fr .9fr 1.05fr; gap: 34px; padding: 62px 0 32px; align-items: start; }
.footer-brand-block, .footer-contact-block { text-align: right; }
.footer-logo-wrap { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-img { width: 76px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.08); }
.footer-logo-wrap p, .footer-desc, .footer-links-block a, .footer-contact-block p b, .footer-bottom-bar { color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.9; }
.footer-desc { max-width: 390px; margin: 0; }
.footer-links-block ul { gap: 10px; }
.footer-links-block a { transition: color .28s ease; }
.footer-social-row { margin-top: 20px; }
.footer-social-row a { transition: transform .28s ease, background .28s ease; }
.footer-contact-block p { grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.footer-contact-block p span { width: 34px; height: 34px; background: rgba(242,138,35,.12); color: var(--orange); }
.footer-bottom-bar { padding-bottom: 24px; }
.floating-whatsapp { width: 74px; height: 74px; background: radial-gradient(circle at 40% 35%, #32e674, #21c55d); box-shadow: 0 24px 44px rgba(37,211,102,.3); }
.whatsapp-icon { width: 34px; height: 34px; }
.page-hero { padding: 120px 0 48px; background: radial-gradient(circle at 12% 10%, rgba(242,138,35,.12), transparent 20rem), linear-gradient(180deg, rgba(255,255,255,.8), rgba(247,250,253,.95)); }
.page-hero .container { max-width: 900px; }
.page-hero h1 { font-size: clamp(36px, 5vw, 62px); line-height: 1.18; letter-spacing: -.03em; }
.page-hero p { color: var(--ink-soft); font-size: 18px; }
.page-body { padding: 26px 0 90px; }
.page-layout { gap: 24px; }
.page-boxes { gap: 24px; }
.page-panel { padding: 28px; border-radius: 28px; }
.page-note { background: linear-gradient(180deg, #0b2340, #0f2f52); }
.page-note p { color: rgba(255,255,255,.74); }
.info-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.info-pills span { padding: 10px 14px; border-radius: 999px; background: rgba(242,138,35,.1); color: var(--orange-strong); font-size: 13px; font-weight: 800; }
.fade-in { transition: opacity .75s ease, transform .75s ease; }
@media (max-width: 1180px) {
  .hero-grid, .split-heading, .dual-grid, .contact-grid, .page-layout, .footer-main-grid { grid-template-columns: 1fr; }
  .grid-3, .stats-grid, .journey-grid, .trust-grid, .grid-4, .grid-5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-toggle, .close-menu { display: inline-flex; align-items: center; justify-content: center; }
  .hero { min-height: auto; padding: 110px 0 110px; }
  .hero h1 { max-width: 100%; font-size: clamp(42px, 8vw, 68px); }
  .hero p { font-size: 18px; }
  .hero-slide::after { background: linear-gradient(180deg, rgba(7,26,47,.94), rgba(7,26,47,.72)); }
  .hero-dots { bottom: 84px; }
}
@media (max-width: 700px) {
  body { padding-bottom: 74px; }
  .top-bar { display: none; }
  .container { width: min(100% - 24px, 1180px); }
  .nav-exact-header { min-height: 76px; }
  .brand img { width: 64px; height: 50px; }
  .brand h2 { font-size: 17px; }
  .brand p { font-size: 11px; }
  .section, .page-body { padding-top: 72px; padding-bottom: 72px; }
  .section-tight { padding-top: 36px; padding-bottom: 36px; }
  .section-heading { gap: 12px; margin-bottom: 28px; }
  .section-title, #products .section-title, #blog .section-title { font-size: 31px; line-height: 1.28; }
  .section-desc, .hero p, .page-hero p { font-size: 15px; line-height: 1.9; }
  .hero { padding-top: 96px; padding-bottom: 118px; }
  .btn, .small-btn, .lang-btn, .quote-btn { width: 100%; justify-content: center; }
  .hero-card, .card, .journey-card, .page-panel, .dark-panel, .cta-band-inner { padding: 22px; border-radius: 24px; }
  .grid-3, .grid-4, .grid-5, .journey-grid, .trust-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-main-grid { padding-top: 48px; text-align: center; }
  .footer-brand-block, .footer-contact-block, .footer-links-block { text-align: center; }
  .footer-logo-wrap, .footer-social-row, .footer-links-block a, .footer-bottom-bar, .footer-bottom-bar div { justify-content: center; }
  .footer-desc { max-width: none; }
  .footer-contact-block p { grid-template-columns: 1fr; justify-items: center; }
  .floating-whatsapp { display: none; }
  .sticky-mobile-cta { display: grid; }
}

/* Service SVG icon refinement */
.service-icon {
  color: var(--navy);
}
.service-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

/* Hero layout correction */
.hero {
  min-height: 860px;
  display: grid;
  align-items: center;
}
.hero-grid {
  min-height: auto;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr);
  align-items: center;
  justify-items: stretch;
  align-content: center;
  gap: 44px;
  padding: 110px 0 120px;
  text-align: right;
}
.hero-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  justify-self: start;
}
.hero-copy .badge {
  margin-inline: 0;
}
.hero h1 {
  max-width: 11ch;
  margin: 22px 0 18px;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 1.06;
  text-shadow: 0 10px 26px rgba(8,22,40,.22);
}
.hero p {
  max-width: 680px;
  margin-inline: 0;
  font-size: 19px;
  line-height: 1.9;
}
.hero-actions,
.hero-links,
.hero-points {
  justify-content: flex-start;
  width: auto;
}
.hero-links {
  flex-direction: row;
  align-items: center;
}
.hero-points {
  margin-top: 22px;
}
.hero-point {
  justify-content: flex-start;
}
.hero-side {
  display: block;
  justify-self: end;
  width: 100%;
  max-width: 430px;
}
.hero-side .hero-card {
  padding: 30px;
}
.hero-dots {
  bottom: 36px;
}
html[dir='ltr'] .hero-grid,
html[dir='ltr'] .hero-copy {
  text-align: left;
}
html[dir='ltr'] .hero-copy {
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 96px 0 108px;
  }
  .hero-copy {
    max-width: 820px;
    align-items: center;
    text-align: center;
    justify-self: center;
  }
  .hero-copy .badge,
  .hero p {
    margin-inline: auto;
  }
  .hero h1 {
    max-width: 100%;
  }
  .hero-actions,
  .hero-links,
  .hero-points {
    justify-content: center;
    width: 100%;
  }
  .hero-side {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 620px;
  }
  .hero-grid {
    padding: 76px 0 94px;
    gap: 22px;
  }
  .hero h1 {
    font-size: 31px;
    line-height: 1.24;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-links {
    gap: 8px;
    flex-direction: column;
  }
}

/* Loader hard fail-safe */
.site-loader.is-hidden {
  display: none !important;
}

/* Hero and trust bar refinement to match reference layout */
.hero {
  min-height: 900px;
  padding: 0;
}
.hero-slide {
  background-position: center center;
}
.hero-slide::after {
  background: linear-gradient(180deg, rgba(8,22,40,.18) 0%, rgba(8,22,40,.28) 40%, rgba(8,22,40,.46) 100%);
}
.hero-grid {
  min-height: 900px;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
  text-align: center;
  gap: 0;
  padding: 128px 0 124px;
}
.hero-copy {
  max-width: 920px;
  align-items: center;
  text-align: center;
  justify-self: center;
}
.hero-copy .badge {
  margin-inline: auto;
  border-inline-start: 0;
  border-radius: 999px;
  background: rgba(255, 210, 74, .86);
  color: #7a5700;
  padding: 13px 22px;
  box-shadow: 0 18px 34px rgba(242, 186, 38, .24);
}
.hero h1 {
  max-width: 980px;
  margin: 22px auto 20px;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.08;
  text-shadow: 0 10px 24px rgba(8,22,40,.18);
}
.hero p {
  max-width: 820px;
  margin-inline: auto;
  color: rgba(13, 48, 84, .88);
  text-shadow: 0 2px 10px rgba(255,255,255,.18);
}
.hero-actions,
.hero-links,
.hero-points {
  justify-content: center;
  width: 100%;
}
.hero-actions {
  margin-top: 28px;
}
.hero-actions .btn-primary {
  background: #f3c300;
  color: #0b1f36;
  box-shadow: 0 16px 36px rgba(243, 195, 0, .28);
}
.hero-actions .btn-outline {
  background: #21c45d;
  border-color: #21c45d;
  color: #08223d;
  box-shadow: 0 16px 36px rgba(33, 196, 93, .18);
}
.hero-links {
  margin-top: 16px;
  gap: 12px;
}
.hero-links a {
  color: #0d4d20;
  background: rgba(255,255,255,.72);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-note-plain,
.hero-links span,
#hero-note {
  color: #f4c400;
  font-weight: 900;
  font-size: 14px;
}
.hero-points {
  display: none;
}
.hero-side {
  display: none !important;
}
.hero-dots {
  bottom: 88px;
}
.trust-bar {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  margin-bottom: -6px;
  background: transparent;
  border: 0;
}
.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: rgba(255,255,255,.94);
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(8,22,40,.08);
  overflow: hidden;
}
.trust-item {
  min-height: 74px;
  padding: 18px 18px;
  gap: 12px;
  justify-content: center;
  background: rgba(255,255,255,.96);
  border-inline-start: 1px solid rgba(11,31,54,.08);
}
.trust-item:first-child {
  border-inline-start: 0;
}
.trust-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0ba00;
  flex: 0 0 24px;
}
.trust-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.trust-text {
  color: #17314c;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 800;
}
@media (max-width: 1100px) {
  .hero,
  .hero-grid {
    min-height: 760px;
  }
  .hero-grid {
    padding: 112px 0 116px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .hero,
  .hero-grid {
    min-height: 620px;
  }
  .hero-grid {
    padding: 90px 0 104px;
  }
  .hero h1 {
    font-size: clamp(32px, 8.4vw, 44px);
    line-height: 1.2;
  }
  .hero p {
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-copy .badge {
    font-size: 11px;
    padding: 10px 14px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-links {
    flex-direction: column;
  }
  .hero-dots {
    bottom: 72px;
  }
  .trust-bar {
    margin-top: 0;
    background: #fff;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    min-height: 66px;
    border-inline-start: 0;
    border-top: 1px solid rgba(11,31,54,.08);
  }
  .trust-item:first-child {
    border-top: 0;
  }
}

/* Final hero readability and color tuning */
.hero-copy .badge {
  background: linear-gradient(135deg, #ef8a2f 0%, #d9a33f 100%);
  color: #132a43;
  box-shadow: 0 14px 34px rgba(239, 138, 47, .24);
}
.hero h1 {
  max-width: 15ch;
  font-size: clamp(42px, 4.55vw, 68px);
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,.36);
}
.hero p {
  max-width: 780px;
  color: rgba(245, 249, 253, .96);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 2;
  font-weight: 800;
  text-shadow: 0 5px 20px rgba(0,0,0,.52);
}
.hero-actions .btn-primary {
  background: linear-gradient(135deg, #ef8a2f 0%, #d99a27 100%);
  color: #081a2f;
  box-shadow: 0 16px 36px rgba(239, 138, 47, .24);
}
.hero-note-plain,
.hero-links span,
#hero-note {
  color: #ffb84d;
  text-shadow: 0 4px 16px rgba(0,0,0,.48);
}
.hero-slide::after {
  background:
    radial-gradient(circle at 50% 46%, rgba(8,22,40,.38) 0%, rgba(8,22,40,.24) 32%, rgba(8,22,40,.64) 76%),
    linear-gradient(180deg, rgba(8,22,40,.58) 0%, rgba(8,22,40,.34) 42%, rgba(8,22,40,.68) 100%);
}
@media (max-width: 700px) {
  .hero h1 {
    max-width: 13ch;
    font-size: clamp(31px, 8vw, 42px);
    line-height: 1.26;
  }
  .hero p {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.9;
  }
}

/* Final section title scale */
.section-heading .eyebrow,
.cta-band-inner .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}
.section-title,
#products .section-title,
#blog .section-title,
#about .section-title,
#why-choose-us .section-title {
  font-size: clamp(26px, 2.65vw, 38px);
  line-height: 1.36;
  letter-spacing: 0;
  font-weight: 800;
  max-width: 920px;
}
.cta-band-inner h2 {
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.36;
  letter-spacing: 0;
  font-weight: 800;
}
.page-hero h1 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.32;
  letter-spacing: 0;
  font-weight: 800;
}
.service-card h3,
.card h3,
.journey-card h3,
.page-panel h2,
.blog-card h3 {
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.35;
  letter-spacing: 0;
}
.mini-card h3,
.footer-logo-wrap h3,
.footer-links-block h3,
.footer-contact-block h3,
.footer-contact-block h4 {
  font-size: 22px;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .section-heading .eyebrow,
  .cta-band-inner .eyebrow,
  .page-hero .eyebrow {
    font-size: clamp(32px, 7vw, 48px);
    line-height: 1.2;
  }
  .section-title,
  #products .section-title,
  #blog .section-title,
  #about .section-title,
  #why-choose-us .section-title {
    font-size: clamp(23px, 4.8vw, 32px);
    line-height: 1.38;
  }
  .cta-band-inner h2,
  .page-hero h1 {
    font-size: clamp(23px, 4.8vw, 32px);
    line-height: 1.38;
  }
  .service-card h3,
  .card h3,
  .journey-card h3,
  .page-panel h2,
  .blog-card h3 {
    font-size: 24px;
  }
}
@media (max-width: 700px) {
  .section-heading .eyebrow,
  .cta-band-inner .eyebrow,
  .page-hero .eyebrow {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.22;
  }
  .section-title,
  #products .section-title,
  #blog .section-title,
  #about .section-title,
  #why-choose-us .section-title {
    font-size: clamp(21px, 5.8vw, 28px);
    line-height: 1.4;
  }
  .cta-band-inner h2,
  .page-hero h1 {
    font-size: clamp(21px, 5.8vw, 28px);
    line-height: 1.4;
  }
  .service-card h3,
  .card h3,
  .journey-card h3,
  .page-panel h2,
  .blog-card h3 {
    font-size: 22px;
  }
  .mini-card h3,
  .footer-logo-wrap h3,
  .footer-links-block h3,
  .footer-contact-block h3,
  .footer-contact-block h4 {
    font-size: 19px;
  }
}

/* Why section numbering */
#why-choose-us .why-card {
  position: relative;
  min-height: 250px;
  padding: 34px 28px 28px;
  overflow: hidden;
  isolation: isolate;
}
#why-choose-us .why-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
#why-choose-us .why-number-mark {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 22px;
  z-index: -1;
  color: rgba(13, 39, 67, .055);
  font-size: clamp(76px, 7vw, 118px);
  line-height: 1;
  font-weight: 900;
}
#why-choose-us .why-number-pill {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239, 138, 47, .14), rgba(43, 167, 161, .12));
  border: 1px solid rgba(13, 39, 67, .08);
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(8, 26, 47, .07);
}
#why-choose-us .why-card h3 {
  position: relative;
  margin-top: 0;
  padding-top: 18px;
}
#why-choose-us .why-card h3::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}
@media (max-width: 700px) {
  #why-choose-us .why-card {
    min-height: auto;
    padding: 26px 22px;
  }
  #why-choose-us .why-number {
    margin-bottom: 18px;
  }
  #why-choose-us .why-number-pill {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 16px;
  }
  #why-choose-us .why-number-mark {
    font-size: 74px;
  }
}

/* Partners section text and grid correction */
#partners {
  overflow: hidden;
}
#partners .section-heading {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 34px;
}
#partners .eyebrow {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.2;
  margin-bottom: 12px;
}
#partners .section-title {
  max-width: 880px;
  margin-inline: auto;
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.36;
  font-weight: 900;
  color: var(--navy);
}
#partners .section-desc {
  max-width: 780px;
  margin: 10px auto 0;
  font-size: 16px;
  line-height: 1.9;
}
#partners .partners-grid {
  width: min(100%, 1120px);
  margin-inline: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
#partners .partner {
  min-width: 0;
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 20px 14px;
  border-radius: 24px;
  white-space: normal;
}
@media (max-width: 1000px) {
  #partners .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  #partners .eyebrow {
    font-size: clamp(28px, 8vw, 38px);
  }
  #partners .section-title {
    font-size: clamp(21px, 5.8vw, 28px);
  }
  #partners .partners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #partners .partner {
    min-height: 64px;
  }
}

/* Release readiness polish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.navbar {
  width: 100%;
}
.nav-exact-header {
  min-width: 0;
}
.brand,
.nav-actions,
.nav-links {
  min-width: 0;
}
.brand img {
  flex: 0 0 auto;
}
.hero {
  min-height: clamp(700px, 84vh, 840px);
}
.hero-copy {
  max-width: min(920px, 100%);
}
.hero-actions .btn,
.cta-band-actions .btn {
  min-width: 190px;
}
.section-heading.center,
.section-heading {
  text-wrap: balance;
}
.section-desc,
.hero p,
.page-hero p,
.cta-band-inner p {
  text-wrap: pretty;
}
.footer-main-grid {
  min-width: 0;
}
.footer-links-block,
.footer-contact-block,
.footer-brand-block {
  min-width: 0;
}
@media (max-width: 1180px) {
  .nav-links-exact {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  body {
    padding-bottom: 76px;
  }
  .container {
    width: min(100% - 24px, 1180px);
  }
  .nav-exact-header {
    min-height: 76px;
    gap: 12px;
  }
  .brand {
    gap: 10px;
  }
  .brand h2 {
    font-size: 16px;
  }
  .brand p {
    font-size: 10px;
  }
  .quote-btn {
    display: none;
  }
  .hero,
  .hero-grid {
    min-height: 640px;
  }
  .hero-grid {
    padding: 76px 0 96px;
  }
  .hero-copy {
    padding-inline: 0;
  }
  .hero h1 {
    max-width: 13ch;
    font-size: clamp(31px, 8vw, 42px);
    line-height: 1.28;
  }
  .hero p {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.9;
  }
  .hero-actions .btn,
  .cta-band-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .section {
    padding: 66px 0;
  }
  .grid-3,
  .grid-4,
  .grid-5,
  .journey-grid,
  .stats-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo-wrap,
  .footer-social-row,
  .footer-links-block a,
  .footer-bottom-bar,
  .footer-bottom-bar div {
    justify-content: center;
  }
  .footer-desc {
    max-width: none;
  }
}

/* Certificate and approval section cleanup */
#certificates.compact-section {
  padding: 84px 0;
  overflow: hidden;
}
#certificates .dual-grid {
  gap: clamp(34px, 5vw, 72px);
  direction: rtl;
}
#certificates .section-heading {
  margin-bottom: 26px;
}
#certificates .section-heading .eyebrow,
#certificates .section-heading #certificates-kicker,
#certificates .section-heading #approvals-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.2;
  font-weight: 900;
}
#certificates .section-title {
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.32;
  max-width: 640px;
}
#certificates .section-desc {
  margin-top: 10px;
  max-width: 680px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.9;
}
#certificates .compact-grid {
  margin-top: 28px;
  gap: 18px;
}
#certificates #certificatesGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#certificates #approvalsGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
#certificates .badge-card {
  min-height: 136px;
  padding: 24px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 24px;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.75;
}
#certificates .badge-card .context-icon {
  margin: 0;
}
@media (max-width: 1180px) {
  #certificates .dual-grid,
  #certificates #certificatesGrid,
  #certificates #approvalsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  #certificates.compact-section {
    padding: 66px 0;
  }
  #certificates .dual-grid,
  #certificates #certificatesGrid,
  #certificates #approvalsGrid {
    grid-template-columns: 1fr;
  }
  #certificates .section-heading .eyebrow,
  #certificates .section-heading #certificates-kicker,
  #certificates .section-heading #approvals-kicker {
    font-size: clamp(28px, 8vw, 38px);
  }
  #certificates .section-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  #certificates .badge-card {
    min-height: 112px;
  }
}

/* Contact form layout */
#contact .contact-grid {
  grid-template-columns: minmax(420px, .95fr) minmax(460px, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}
#contact .contact-copy {
  justify-self: end;
  max-width: 720px;
}
#contact .form {
  justify-self: stretch;
  width: min(100%, 560px);
  padding: 24px;
  gap: 8px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 24px 70px rgba(8, 26, 47, .1);
}
#contact .form.fade-in {
  opacity: 1;
  transform: none;
  visibility: visible;
}
#contact .form.is-highlighted {
  border-color: rgba(239, 125, 32, .42);
  box-shadow: 0 0 0 5px rgba(239, 125, 32, .14), 0 24px 70px rgba(8, 26, 47, .1);
}
#contact .field-label {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}
#contact .input {
  min-height: 48px;
  border-radius: 12px;
  padding: 12px 16px;
  background: #fff;
  direction: rtl;
  text-align: right;
}
#contact .input::placeholder {
  color: #7a8796;
  opacity: 1;
}
#contact textarea.input {
  min-height: 112px;
  resize: vertical;
}
#contact .btn-block {
  margin-top: 8px;
  min-height: 50px;
}
html[dir='ltr'] #contact .input {
  direction: ltr;
  text-align: left;
}
@media (max-width: 1180px) {
  #contact .contact-grid {
    grid-template-columns: 1fr;
  }
  #contact .contact-copy,
  #contact .form {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 700px) {
  #contact .form {
    padding: 22px;
    border-radius: 22px;
  }
}

/* Replace the orange/green shape treatment across the site */
:root {
  --teal: #334c68;
}
.context-icon,
.list-icon,
.check,
.center-check {
  background: linear-gradient(135deg, #0b1f36 0%, #334c68 100%);
  color: #fff;
}
.nav-links a::after,
.why-grid .card::after,
.service-card::after,
.blog-card::after,
#why-choose-us .why-card::before {
  background: linear-gradient(90deg, #0b1f36 0%, #334c68 100%);
}
.article-tag-soft {
  background: rgba(51, 76, 104, .12);
  color: #334c68;
}
.form-status {
  color: #334c68;
}

/* Dedicated blog topic artwork */
.blog-image-1 {
  background-image: linear-gradient(rgba(8,26,47,.04), rgba(8,26,47,.08)), url("../images/Screenshot 2026-04-28 142301.png");
}
.blog-image-2 {
  background-image: linear-gradient(rgba(8,26,47,.04), rgba(8,26,47,.08)), url("../images/Screenshot 2026-04-28 142509.png");
}
.blog-image-3 {
  background-image: linear-gradient(rgba(8,26,47,.04), rgba(8,26,47,.08)), url("../images/Screenshot 2026-04-28 142814.png");
}

/* Footer page-link icons */
.footer-pages-links a::before {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 9px;
  background: rgba(239, 125, 32, .12);
  color: var(--orange);
  font-size: 15px;
  line-height: 1;
}
.footer-pages-links a[data-footer-icon="request"]::before {
  content: '▣';
}
.footer-pages-links a[data-footer-icon="policy"]::before {
  content: '◷';
}

/* Keep section kicker labels consistent site-wide */
main section .section-heading .eyebrow,
main section .eyebrow:not(.badge),
.cta-band-inner .eyebrow {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 12px;
}
#blog-title {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 700px) {
  main section .section-heading .eyebrow,
  main section .eyebrow:not(.badge),
  .cta-band-inner .eyebrow {
    font-size: clamp(28px, 8vw, 38px);
  }
}
