/* =============================================================
   LEXSTONE INTERNATIONAL TRADING LTD
   Premium design system — navy + gold, Apple-inspired
   ============================================================= */

:root {
  /* Brand */
  --navy:        #0F2C52;
  --navy-deep:   #0A1E3A;
  --navy-soft:   #1B3E6F;
  --gold:        #C9A227;
  --gold-soft:   #DCC067;
  --gold-bright: #E9C84A;

  /* Neutrals */
  --white:    #FFFFFF;
  --paper:    #FAFAFB;
  --mist:     #F2F4F7;
  --line:     #E6E9EF;
  --ink:      #0F1622;
  --ink-soft: #4A5468;
  --ink-mute: #8A93A6;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Layout */
  --container: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* RTL support (Arabic) */
[dir="rtl"] { direction: rtl; }
[dir="rtl"] .nav__links { flex-direction: row-reverse; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--navy); }
.display { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 800; letter-spacing: -0.035em; }
.h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
.h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-mute); }
.gold-text { color: var(--gold); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--tight { padding: clamp(48px, 7vw, 90px) 0; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 14px; }
.stack > * + * { margin-top: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 0.98rem;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-deep); box-shadow: 0 16px 36px -12px rgba(15,44,82,.55); }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%); color: var(--navy-deep); }
.btn--gold:hover { box-shadow: 0 16px 36px -12px rgba(201,162,39,.6); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn__arrow { transition: transform .4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s;
}
.nav--scrolled {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(15,44,82,.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__logo { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.nav__logo img { height: 40px; width: auto; }
.nav__logo-fallback { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-fallback b { font-size: 1.15rem; letter-spacing: .02em; }
.nav__logo-fallback span { font-size: .56rem; letter-spacing: .22em; color: var(--gold); font-weight: 700; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link { font-size: .95rem; font-weight: 500; color: var(--navy); position: relative; padding: 4px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 600;
  color: var(--navy); padding: 9px 14px; border-radius: 100px; border: 1.5px solid var(--line);
  transition: border .3s, background .3s;
}
.lang__btn:hover { border-color: var(--navy); }
.lang__btn svg { width: 15px; height: 15px; transition: transform .3s; }
.lang.open .lang__btn svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 210px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: 16px; padding: 8px;
  box-shadow: 0 24px 50px -16px rgba(15,44,82,.3);
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98);
  transition: all .3s var(--ease); max-height: 60vh; overflow-y: auto;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang__item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 10px 12px; border-radius: 10px; font-size: .92rem; color: var(--ink); font-weight: 500;
  transition: background .2s;
}
.lang__item:hover { background: var(--mist); }
.lang__item.active { color: var(--gold); font-weight: 700; }
.lang__flag { font-size: 1.1rem; }

/* Mobile nav */
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.nav__burger span { display: block; height: 2px; width: 24px; background: var(--navy); margin-inline: auto; transition: transform .4s var(--ease), opacity .3s; }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999; background: var(--white);
  padding: 40px 24px; display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .5s var(--ease); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 1.6rem; font-weight: 700; color: var(--navy); padding: 14px 0; border-bottom: 1px solid var(--line); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
  background: radial-gradient(1200px 700px at 78% 18%, #EAF0FA 0%, var(--paper) 45%, var(--white) 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }
.hero__content { position: relative; z-index: 3; }
.hero__title { margin: 22px 0 24px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__cta { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 44px; margin-top: 56px; }
.hero__stat .num { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.hero__stat .lbl { font-size: .82rem; color: var(--ink-mute); font-weight: 500; }

/* Animated globe */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.globe {
  position: relative; width: min(46vw, 520px); aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #2E5C9A 0%, var(--navy) 45%, var(--navy-deep) 100%);
  box-shadow: inset -30px -30px 80px rgba(0,0,0,.4), 0 40px 100px -30px rgba(15,44,82,.55);
  overflow: hidden;
}
.globe::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(201,162,39,.9) 0 3px, transparent 4px),
    radial-gradient(circle at 60% 30%, rgba(201,162,39,.7) 0 5px, transparent 6px),
    radial-gradient(circle at 55% 60%, rgba(201,162,39,.8) 0 7px, transparent 8px),
    radial-gradient(circle at 40% 70%, rgba(201,162,39,.6) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 55%, rgba(201,162,39,.7) 0 4px, transparent 5px),
    radial-gradient(circle at 25% 58%, rgba(201,162,39,.6) 0 6px, transparent 7px);
  opacity: .85; animation: globe-spin 26s linear infinite;
  background-size: 200% 100%;
}
.globe__grid {
  position: absolute; inset: 0; border-radius: 50%; opacity: .25;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255,255,255,.18) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255,255,255,.12) 28px 29px);
  animation: globe-spin 40s linear infinite reverse;
  background-size: 200% 100%;
}
@keyframes globe-spin { to { background-position: 200% 0, 200% 0; } }
.globe__ring {
  position: absolute; inset: -8% ; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold); border-right-color: var(--gold-soft);
  animation: ring-rot 14s linear infinite;
}
.globe__ring--2 { inset: -16%; border-top-color: transparent; border-bottom-color: var(--gold); animation-duration: 22s; animation-direction: reverse; opacity: .5; }
@keyframes ring-rot { to { transform: rotate(360deg); } }
.globe__arrow {
  position: absolute; left: 50%; top: 50%; width: 70%; transform: translate(-50%,-50%);
  filter: drop-shadow(0 8px 16px rgba(201,162,39,.4));
  animation: arrow-float 6s ease-in-out infinite;
}
@keyframes arrow-float { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-12px); } }
.hero__orbit-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px var(--gold); }

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-mute); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue__line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   MARQUEE (regions / trust)
   ============================================================ */
.marquee { padding: 30px 0; border-block: 1px solid var(--line); overflow: hidden; background: var(--white); }
.marquee__track { display: flex; gap: 60px; width: max-content; animation: marquee 32s linear infinite; }
.marquee__item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-mute); font-size: 1.05rem; white-space: nowrap; }
.marquee__item svg { width: 20px; height: 20px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: 60px; }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 18px; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--mist);
  min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; color: var(--white); isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -24px rgba(15,44,82,.4); }
.pcard__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .8s var(--ease); }
.pcard:hover .pcard__bg { transform: scale(1.06); }
.pcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,30,58,.1) 0%, rgba(10,30,58,.85) 100%); }
.pcard__icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); display: grid; place-items: center; margin-bottom: auto; }
.pcard__icon svg { width: 24px; height: 24px; color: var(--gold-bright); }
.pcard h3 { color: var(--white); font-size: 1.4rem; margin-top: 16px; }
.pcard p { font-size: .92rem; color: rgba(255,255,255,.78); margin-top: 6px; }
.pcard__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 600; font-size: .9rem; color: var(--gold-bright); }
.pcard__link svg { width: 16px; transition: transform .3s; }
.pcard:hover .pcard__link svg { transform: translateX(4px); }

/* ============================================================
   FEATURE / WHY SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feature-list { margin-top: 36px; }
.feature-item { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.feature-item__num { font-weight: 800; color: var(--gold); font-size: 1.1rem; min-width: 36px; }
.feature-item h4 { font-size: 1.15rem; margin-bottom: 4px; }
.feature-item p { color: var(--ink-soft); font-size: .96rem; }
.media-frame { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/5; background: var(--mist); box-shadow: 0 40px 80px -32px rgba(15,44,82,.35); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Stats band */
.stats-band { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: clamp(40px,6vw,72px); }
.stats-band__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat .num { font-size: clamp(2rem,4vw,3.4rem); font-weight: 800; color: var(--gold-bright); letter-spacing: -.03em; }
.stat .lbl { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 6px; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative; border-radius: var(--radius); overflow: hidden; text-align: center;
  padding: clamp(56px,8vw,110px) 24px; color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
}
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -10%, rgba(201,162,39,.25), transparent 70%); }
.cta h2 { color: var(--white); position: relative; }
.cta p { color: rgba(255,255,255,.78); max-width: 50ch; margin: 18px auto 36px; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.66); padding: 80px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h5 { color: var(--white); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer a { display: block; padding: 6px 0; font-size: .94rem; transition: color .25s; }
.footer a:hover { color: var(--gold-bright); }
.footer__brand b { color: var(--white); font-size: 1.3rem; font-weight: 800; }
.footer__brand p { font-size: .92rem; margin-top: 14px; max-width: 34ch; }
.footer__contact-item { display: flex; gap: 12px; font-size: .92rem; padding: 7px 0; }
.footer__contact-item svg { width: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; flex-wrap: wrap; gap: 16px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.footer__social svg { width: 18px; }

/* ============================================================
   FORMS
   ============================================================ */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--white); color: var(--ink); transition: border .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(15,44,82,.08);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .82rem; color: var(--ink-mute); }
.form-status { padding: 14px 16px; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #E7F6EC; color: #1B7A3D; }
.form-status.err { background: #FCEBEB; color: #B3261E; }

/* ============================================================
   CHATBOT
   ============================================================ */
.chat-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 1100;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white); display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(15,44,82,.6);
  transition: transform .4s var(--ease), box-shadow .3s;
}
.chat-fab:hover { transform: scale(1.06); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

.chat-panel {
  position: fixed; bottom: 100px; right: 26px; z-index: 1100;
  width: min(390px, calc(100vw - 40px)); height: min(560px, calc(100vh - 140px));
  background: var(--white); border-radius: 22px; overflow: hidden;
  box-shadow: 0 40px 90px -24px rgba(15,44,82,.5); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.96); transform-origin: bottom right;
  transition: all .4s var(--ease);
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-head { background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft)); color: var(--white); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.chat-head__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; color: var(--navy-deep); font-weight: 800; }
.chat-head__title { font-weight: 700; font-size: .98rem; }
.chat-head__status { font-size: .76rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 6px; }
.chat-head__status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; }
.chat-head__close { margin-left: auto; color: rgba(255,255,255,.8); }
.chat-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; background: var(--paper); }
.msg { max-width: 82%; padding: 12px 16px; border-radius: 16px; font-size: .92rem; line-height: 1.5; }
.msg--bot { background: var(--white); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg--user { background: var(--navy); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-typing { display: flex; gap: 4px; padding: 14px 16px; align-self: flex-start; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-mute); animation: typing 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }
.chat-quick { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 20px 12px; background: var(--paper); }
.chat-quick button { font-size: .8rem; padding: 8px 13px; border: 1px solid var(--line); border-radius: 100px; color: var(--navy); background: var(--white); transition: all .2s; }
.chat-quick button:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.chat-input { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--line); background: var(--white); }
.chat-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 100px; padding: 12px 18px; font-family: inherit; font-size: .92rem; }
.chat-input input:focus { outline: none; border-color: var(--navy); }
.chat-input button { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; flex-shrink: 0; transition: background .2s; }
.chat-input button:hover { background: var(--navy-deep); }
.chat-input button svg { width: 20px; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-fab {
  position: fixed; bottom: 100px; right: 26px; z-index: 1090;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease);
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 30px; height: 30px; }
@media (max-width: 520px) { .wa-fab { bottom: 92px; right: 20px; } }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.consent {
  position: fixed; bottom: 20px; left: 20px; z-index: 1200; max-width: 420px;
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 22px; box-shadow: 0 30px 60px -20px rgba(15,44,82,.35);
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.consent.show { transform: translateY(0); }
.consent p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 14px; }
.consent a { color: var(--gold); }
.consent__actions { display: flex; gap: 10px; }
.consent .btn { padding: 10px 20px; font-size: .85rem; }
@media (max-width: 520px) { .consent { left: 12px; right: 12px; bottom: 12px; max-width: none; } }

/* ============================================================
   TRUST / TESTIMONIALS
   ============================================================ */
.trust-logos { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 40px; }
.trust-logos .chip {
  display: flex; align-items: center; gap: 10px; padding: 14px 24px; border: 1px solid var(--line);
  border-radius: 100px; font-weight: 600; color: var(--ink-soft); background: var(--white);
}
.trust-logos .chip svg { width: 20px; color: var(--gold); }
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.tcard__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { font-size: 1rem; color: var(--ink); line-height: 1.65; }
.tcard__who { margin-top: 18px; font-size: .88rem; }
.tcard__who b { color: var(--navy); display: block; }
.tcard__who span { color: var(--ink-mute); }
@media (max-width: 768px) { .tcards { grid-template-columns: 1fr; } }

/* ============================================================
   QUOTE CART
   ============================================================ */
.pcard__stretch { position: absolute; inset: 0; z-index: 1; }
.pcard h3, .pcard p, .pcard__icon, .pcard__link, .add-quote { position: relative; z-index: 2; }
.add-quote { margin-top: 14px; }
.add-quote button {
  display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: var(--gold-bright); padding: 8px 14px; border: 1px solid rgba(233,200,74,.4); border-radius: 100px;
  background: rgba(255,255,255,.08); transition: all .25s;
}
.add-quote button:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.cart-fab {
  position: fixed; bottom: 168px; right: 26px; z-index: 1090; width: 56px; height: 56px;
  border-radius: 50%; background: var(--gold); color: var(--navy-deep); display: none; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(201,162,39,.6); transition: transform .3s var(--ease);
}
.cart-fab.show { display: grid; }
.cart-fab:hover { transform: scale(1.08); }
.cart-fab svg { width: 26px; }
.cart-fab__count {
  position: absolute; top: -4px; right: -4px; background: var(--navy); color: #fff;
  width: 22px; height: 22px; border-radius: 50%; font-size: .72rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid #fff;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); z-index: 1300;
  background: var(--white); box-shadow: -20px 0 60px -20px rgba(15,44,82,.4);
  transform: translateX(100%); transition: transform .45s var(--ease); display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer__head h3 { font-size: 1.2rem; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item span { font-weight: 600; color: var(--navy); }
.cart-item button { color: var(--ink-mute); font-size: 1.4rem; line-height: 1; }
.cart-item button:hover { color: #B3261E; }
.cart-empty { color: var(--ink-mute); text-align: center; padding: 40px 0; }
.cart-drawer__foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-overlay { position: fixed; inset: 0; background: rgba(10,30,58,.4); z-index: 1250; opacity: 0; visibility: hidden; transition: opacity .4s; }
.cart-overlay.show { opacity: 1; visibility: visible; }

/* ============================================================
   SCROLL REVEAL (JS-driven)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero { padding: calc(var(--nav-h) + 70px) 0 60px; background: radial-gradient(900px 500px at 80% 0%, #EAF0FA, var(--paper)); }
.page-hero .display { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.breadcrumb { font-size: .85rem; color: var(--ink-mute); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual { order: -1; }
  .globe { width: min(70vw, 360px); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero__stats { gap: 28px; flex-wrap: wrap; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .products { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
