/* =====================================================
   TYSS International — Redesign v3
   White · Blue · Poppins — inspired by Gravita/Structa/corporate industrial
   ===================================================== */

/* Fonts are preconnected + preloaded in each page's <head>, not imported here.
   This avoids the render-blocking @import waterfall. */

:root {
  --blue:        #1E4BC7;
  --blue-dark:   #143A9E;
  --blue-light:  #3A68DF;
  --blue-soft:   #EAF0FB;
  --blue-tint:   #F3F6FC;
  --navy:        #0D1F4A;
  --white:       #FFFFFF;
  --off:         #F7F9FC;
  --gray-1:      #E7ECF4;
  --gray-2:      #C7CFDE;
  --text:        #0D1F4A;
  --text-2:      #5B6987;
  --text-3:      #8590A8;
  --border:      #E4E9F2;
  --shadow-sm:   0 2px 8px rgba(13,31,74,.06);
  --shadow:      0 6px 24px rgba(13,31,74,.08);
  --shadow-lg:   0 16px 48px rgba(13,31,74,.12);
  --radius:      12px;
  --radius-sm:   8px;
  --max-w:       1200px;
  --font:        'Poppins', system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[dir="rtl"] { direction: rtl; }
.ltr-safe { direction: ltr; display: inline-block; unicode-bidi: isolate; }

/* ─── TYPOGRAPHY ─── */
.display {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.headline {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.subhead {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.body-lg { font-size: 17px; line-height: 1.7; color: var(--text-2); }
.caption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.label-dot { width: 10px; height: 10px; background: var(--blue); border-radius: 2px; flex-shrink: 0; }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--off); }
.section-blue { background: var(--blue); color: #fff; }
.section-navy { background: var(--navy); color: #fff; }
.section-blue .caption, .section-navy .caption { color: #A9C2FF; }
.section-blue .body-lg, .section-navy .body-lg { color: rgba(255,255,255,.7); }
.section-blue .headline, .section-navy .headline { color: #fff; }

.section-header { max-width: 680px; margin-bottom: 64px; }
.section-header .body-lg { margin-top: 16px; }

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 16px rgba(13,31,74,.06); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-icon { width: 40px; height: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-size: 16px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.nav-logo-sub { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 8px 16px; border-radius: 6px; transition: .15s; white-space: nowrap;
}
.nav-menu a:hover { color: var(--navy); background: var(--off); }
.nav-menu a.active { color: var(--blue); font-weight: 600; }
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 10px 22px !important; font-weight: 600 !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--navy); }

.lang-switcher { display: flex; align-items: center; gap: 2px; background: var(--off); padding: 3px; border-radius: 6px; }
.lang-btn {
  background: none; border: none; cursor: pointer; font-family: var(--font);
  font-size: 11px; font-weight: 600; color: var(--text-2);
  padding: 5px 9px; border-radius: 4px; transition: .15s;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { background: var(--navy); color: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; }
  .nav-logo-text { display: none; }
}

/* ─── HERO ─── */
.hero {
  padding: 140px 0 100px;
  background: var(--white);
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: var(--blue); z-index: 0;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .6;
  background-image: radial-gradient(circle at 1px 1px, rgba(13,31,74,.06) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero::before + .hero-grid-bg { opacity: .6; }

.hero-container {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-soft); color: var(--blue);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 32px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.hero h1.display { color: var(--navy); margin-bottom: 24px; }
.hero h1.display .accent { color: var(--blue); }
.hero-sub { color: var(--text-2); font-size: 18px; line-height: 1.65; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ─── HERO LOGO-PHOTO MARK ─── */
/* The TYSS tri-arm logo used as an alpha mask, with three product photos
   clipped into each arm. Gives the 3D-isometric look the brand already has. */
.hero-logo-photo {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  filter: drop-shadow(0 38px 50px rgba(13,31,74,.28)) drop-shadow(0 4px 10px rgba(13,31,74,.18));
  animation: logoFloat 7s ease-in-out infinite;
}
.hero-logo-photo svg,
.hero-logo-photo-img { width: 100%; height: 100%; display: block; object-fit: contain; }
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
/* radial glow behind the mark */
.hero-logo-photo-glow {
  position: absolute; inset: -10% -8% -12% -8%;
  background: radial-gradient(ellipse at 50% 55%, rgba(30,75,199,.22) 0%, rgba(30,75,199,0) 65%);
  z-index: -1;
  pointer-events: none;
}

/* ─── INTERACTIVE HERO HOTSPOTS (overlays the tri-arm photo) ─── */
.hero-stage { isolation: isolate; }
.hero-stage .hero-stage-img { width: 100%; height: 100%; display: block; object-fit: contain; }

.hero-hotspots { position: absolute; inset: 0; z-index: 3; }
.hero-stage .hotspot {
  position: absolute;
  border: none; background: transparent; cursor: pointer;
  padding: 0; outline: none; -webkit-tap-highlight-color: transparent;
  transition: transform .22s ease, filter .22s ease;
}
.hero-stage .hotspot::before,
.hero-stage .hotspot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.hero-stage .hotspot::before {
  border: 1.6px solid rgba(255,255,255,.7);
  box-shadow: 0 0 0 1px rgba(30,75,199,.28) inset, 0 0 24px rgba(30,75,199,.35);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
}
.hero-stage .hotspot::after {
  inset: auto auto -14px 50%;
  width: 12px; height: 12px;
  background: radial-gradient(circle, #fff 0%, #86a9ff 45%, transparent 70%);
  transform: translateX(-50%) scale(.7);
  filter: drop-shadow(0 0 10px rgba(116,154,255,.75));
  border-radius: 999px;
}
.hero-stage .hotspot:hover,
.hero-stage .hotspot:focus-visible,
.hero-stage .hotspot.active { filter: brightness(1.06); }
.hero-stage .hotspot:hover::before,
.hero-stage .hotspot:focus-visible::before,
.hero-stage .hotspot.active::before { opacity: 1; transform: scale(1.02); }
.hero-stage .hotspot:hover::after,
.hero-stage .hotspot:focus-visible::after,
.hero-stage .hotspot.active::after { opacity: 1; transform: translateX(-50%) scale(1); }

/* hotspot positions — calibrated to the 1254×1254 tri-arm composite */
.hero-stage .hotspot--port {
  left: 6%; top: 16%; width: 44%; height: 28%;
  transform: rotate(27deg);
  clip-path: polygon(5% 45%, 34% 5%, 98% 45%, 66% 94%);
  border-radius: 30px;
}
.hero-stage .hotspot--maritime {
  right: 6%; top: 16%; width: 44%; height: 28%;
  transform: rotate(-27deg);
  clip-path: polygon(2% 45%, 34% 5%, 95% 45%, 65% 94%);
  border-radius: 30px;
}
.hero-stage .hotspot--yard  { left: 35.8%; top: 51.8%; width: 15.5%; height: 31%;   border-radius: 22px; }
.hero-stage .hotspot--ops   { left: 52.6%; top: 36.8%; width: 14.5%; height: 45.3%; border-radius: 22px; }

/* floating label chip for the active hotspot */
.hero-stage .hero-tag {
  position: absolute; z-index: 4; pointer-events: none;
  padding: 9px 12px; border-radius: 12px;
  background: rgba(4,12,24,.86);
  border: 1px solid rgba(255,255,255,.12);
  color: #f3f7ff; font-size: 12px; line-height: 1.25;
  box-shadow: 0 14px 24px rgba(0,0,0,.26);
  opacity: 0; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  max-width: 210px;
}
.hero-stage .hero-tag strong { display: block; font-size: 13px; margin-bottom: 2px; color: #fff; }
.hero-stage .hero-tag span   { color: #c9d8ef; }
.hero-stage .hero-tag.show   { opacity: 1; transform: translateY(0); }
.hero-stage .hero-tag--port      { left: 4%;  top: 4%; }
.hero-stage .hero-tag--maritime  { right: 4%; top: 4%; text-align: right; }
.hero-stage .hero-tag--yard      { left: 22%; bottom: 4%; }
.hero-stage .hero-tag--ops       { right: 18%; bottom: 8%; }
@media (max-width: 640px) {
  .hero-stage .hero-tag { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-photo { animation: none; }
  .hero-stage .hotspot, .hero-stage .hero-tag { transition: none; }
}

/* ─── HERO STATS (white) ─── */
.hero-stats-white {
  position: relative; z-index: 2; max-width: var(--max-w);
  margin: 80px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.hero-stats-white .stat {
  padding: 0 40px;
}
.hero-stats-white .stat:first-child { padding-left: 0; }
.hero-stats-white .stat:not(:first-child) { border-left: 1px solid rgba(255,255,255,.28); }
.hero-stats-white .stat-num {
  font-size: 56px; font-weight: 700; color: #fff;
  letter-spacing: -.04em; line-height: 1;
  text-shadow: 0 2px 12px rgba(13,31,74,.22);
}
.hero-stats-white .stat-plus { font-weight: 700; color: #fff; }
.hero-stats-white .stat-label {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.86); margin-top: 8px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-size: 14px; font-weight: 600; font-family: var(--font);
  padding: 14px 28px; border-radius: 8px; border: none; cursor: pointer;
  transition: .18s; letter-spacing: .01em;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(30,75,199,.3); }
.btn-primary.btn-sm { font-size: 12px; padding: 9px 16px; }
.btn-primary.btn-lg { font-size: 15px; padding: 16px 34px; }
.btn-primary.btn-white { background: #fff; color: var(--blue); }
.btn-primary.btn-white:hover { background: var(--navy); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-size: 14px; font-weight: 600; font-family: var(--font);
  padding: 14px 28px; border-radius: 8px; border: 1.5px solid var(--navy); cursor: pointer;
  transition: .18s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white {
  color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: #fff; color: var(--blue); border-color: #fff; }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-size: 14px; font-weight: 600;
  padding: 8px 0; transition: .15s; border-bottom: 2px solid var(--blue);
}
.btn-text:hover { gap: 12px; }

/* ─── SECTIONS ─── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media(max-width:900px){ .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; }
.two-col-image .img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff; padding: 16px 22px; border-radius: 10px; box-shadow: var(--shadow);
}
.two-col-image .img-badge-num { font-size: 28px; font-weight: 700; color: var(--blue); letter-spacing: -.03em; line-height: 1; }
.two-col-image .img-badge-label { font-size: 12px; color: var(--text-2); margin-top: 4px; }

.feature-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px;
}
.feature-stats .fs-num { font-size: 40px; font-weight: 700; color: var(--blue); letter-spacing: -.03em; line-height: 1; }
.feature-stats .fs-plus { font-weight: 700; }
.feature-stats .fs-label { font-size: 13px; color: var(--text-2); margin-top: 6px; font-weight: 500; }

/* ─── PRODUCT GRID ─── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

.product-tile {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: .2s; cursor: pointer; position: relative;
}
.product-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-tile.expanded { border-color: var(--blue); }
.tile-img {
  height: 180px; background: var(--off); overflow: hidden; position: relative;
}
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.product-tile:hover .tile-img img { transform: scale(1.06); }
.tile-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,31,74,.4));
}
.tile-number-chip {
  position: absolute; top: 14px; left: 14px;
  background: #fff; color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  padding: 5px 10px; border-radius: 4px; z-index: 1;
}
.tile-body { padding: 24px; }
.tile-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--navy); letter-spacing: -.01em; }
.tile-body p { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.tile-detail {
  display: none; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border);
}
.product-tile.expanded .tile-detail { display: block; }
.tile-spec { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.tile-spec-val { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.tile-expand-icon {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center;
  transition: .2s; z-index: 1; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.product-tile.expanded .tile-expand-icon { transform: rotate(45deg); background: var(--blue); }
.product-tile.expanded .tile-expand-icon svg { stroke: #fff; }

/* ─── STEPS (vertical timeline variation) ─── */
.steps-h { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
@media (max-width: 900px) { .steps-h { grid-template-columns: 1fr; } }

.step-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  cursor: pointer; transition: .2s; position: relative;
}
.step-card:hover { box-shadow: var(--shadow); }
.step-card.active { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.step-card-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  margin-bottom: 20px; transition: .25s;
}
.step-card.active .step-card-num { background: var(--blue); color: #fff; }
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -.01em; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ─── MAP (globality-first) ─── */
.map-wrap {
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, #0E2260 0%, #081744 55%, #050D2C 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden; padding: 28px;
  box-shadow: 0 22px 60px -30px rgba(13,31,74,.55);
}
#world-map-svg { width: 100%; height: auto; display: block; }

/* base country — uniform blue across the whole globe */
.map-country {
  fill: #2B4FBF;
  stroke: rgba(9,16,45,.55);
  stroke-width: .45;
  transition: fill .25s ease, filter .25s ease;
}
.map-country:hover { fill: #4773E4; filter: drop-shadow(0 0 4px rgba(120,155,255,.5)); }
/* optional active-region tint — subtle, never exclusionary */
.map-country.active      { fill: #4F78EC; filter: drop-shadow(0 0 6px rgba(255,190,80,.35)); }

.map-graticule { opacity: .35; }
.map-arcs path { filter: drop-shadow(0 0 4px rgba(255,255,255,.22)); }

.map-pin { cursor: pointer; transition: transform .2s ease, filter .2s ease; }
.map-pin:hover { transform: translateY(-2px); filter: brightness(1.15); }
.map-pin-bg { fill: #fff; stroke-width: 2; }
.map-pin-hq { fill: var(--navy); stroke: var(--navy); stroke-width: 2; }

/* Tooltip — fixed so pointer coords map cleanly, anchored near cursor */
.map-tooltip {
  position: fixed;
  top: 0; left: 0;
  transform: translate3d(-9999px, -9999px, 0);
  background: #fff;
  border: 1px solid rgba(13,31,74,.08);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px -8px rgba(13,31,74,.35), 0 2px 6px rgba(13,31,74,.08);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
  font-size: 13px;
  min-width: 160px; max-width: 240px;
  z-index: 9999;
  line-height: 1.35;
}
.map-tooltip.show { opacity: 1; }
.map-tooltip strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.map-tooltip span { display: block; font-size: 12px; color: var(--text-2); }
.map-tooltip h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.map-tooltip p { font-size: 12px; color: var(--text-2); line-height: 1.5; margin: 0; }

.map-legend { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.map-legend-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text); font-weight: 500;
  cursor: pointer; padding: 6px 12px; border-radius: 6px; transition: .15s;
}
.map-legend-item:hover { background: var(--off); }
.map-legend-item.active { background: var(--navy); color: #fff; }
.map-legend-dot { width: 12px; height: 12px; border-radius: 3px; }

/* ─── MARKET CARDS ─── */
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width:1080px){ .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:560px){ .card-grid-4 { grid-template-columns: 1fr; } }

.market-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: .2s; cursor: pointer;
  border-top: 4px solid var(--region-color, var(--blue));
}
.market-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.market-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.market-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.tag {
  display: inline-block; background: var(--off); color: var(--text);
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 4px;
  margin: 2px 2px 0 0;
}

/* ─── TOOL PROMO ─── */
.tool-promo {
  background: var(--navy); border-radius: 20px; padding: 60px;
  display: grid; grid-template-columns: 1fr 360px; gap: 48px; color: #fff;
  position: relative; overflow: hidden;
}
.tool-promo::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(30,75,199,.3), transparent 70%);
  pointer-events: none;
}
@media(max-width:900px){ .tool-promo { grid-template-columns: 1fr; padding: 40px 28px; } }

.tool-promo .caption { color: #A9C2FF; }
.mini-calc {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 28px; position: relative; z-index: 1;
}
.mini-calc h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; letter-spacing: -.01em; }
.mini-calc label { font-size: 11px; color: rgba(255,255,255,.55); display: block; margin-bottom: 6px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.mini-calc select {
  background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15);
  font-size: 13px; padding: 10px 12px; border-radius: 8px; width: 100%; font-family: var(--font);
  margin-bottom: 16px;
}
.calc-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.6); padding: 8px 0; }
.calc-row.total { border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; margin-top: 6px; color: #fff; font-weight: 700; font-size: 15px; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--blue); padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.06), transparent 40%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 { color: #fff; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-strip .actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--blue); color: #fff; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,255,255,.08), transparent 70%);
}
.page-hero .caption { color: #A9C2FF; }
.page-hero h1 { color: #fff; margin: 14px 0 18px; font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 18px; max-width: 620px; line-height: 1.65; }
.page-hero .page-hero-inner { position: relative; z-index: 1; }

/* ─── IMAGE ROW ─── */
.img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.img-row img { border-radius: var(--radius); width: 100%; height: 440px; object-fit: cover; box-shadow: var(--shadow-lg); }
@media(max-width:768px){ .img-row { grid-template-columns: 1fr; } .img-row img { height: 300px; } }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); padding: 80px 0 0; color: #fff; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
@media(max-width:900px){ .footer-inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px){ .footer-inner { grid-template-columns: 1fr; } }

.footer-brand {
  font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .02em;
}
.footer-brand-icon { width: 32px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 16px; max-width: 320px; }
.footer-reg { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.65); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0; text-align: center;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: rgba(255,255,255,.35);
}

/* ─── FORMS ─── */
.form-label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: #fff; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-family: var(--font); font-size: 14px; color: var(--text);
  transition: .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,75,199,.1); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── UTILITY ─── */
.highlight { color: var(--blue); }
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; } .mt-8 { margin-top: 64px; }

/* ─── MAP loading/fallback overlays ─── */
.map-loading, .map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  letter-spacing: .02em;
  pointer-events: none;
  background: rgba(10, 21, 51, 0.35);
}
.map-loading::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: rgba(255,255,255,.85);
  border-radius: 50%;
  animation: mapspin 0.9s linear infinite;
}
@keyframes mapspin { to { transform: rotate(360deg); } }


/* === Skip-to-content link (WCAG 2.4.1) === */
.skip-link{position:absolute;top:-60px;left:8px;background:#000;color:#fff;padding:10px 16px;border-radius:6px;font-size:14px;font-weight:700;text-decoration:none;z-index:9999;transition:top .15s ease-in-out}
.skip-link:focus{top:8px;outline:2px solid #fff;outline-offset:2px}
html[dir="rtl"] .skip-link{left:auto;right:8px}
