:root {
  --blue:        #042F99;
  --blue-hover:  #0338b5;
  --blue-dim:    rgba(4,47,153,0.07);
  --blue-mid:    rgba(4,47,153,0.15);
  --text:        #181818;
  --text-2:      #4a5568;
  --text-muted:  #718096;
  --white:       #ffffff;
  --light:       #f4f6fb;
  --off-white:   #f9fafc;
  --border:      #dde3ef;
  --logo-orange: #F7941D;
  --logo-navy:   #17427A;
  --logo-green:  #5CB85C;
  --font:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --cta:         #F7941D;
  --cta-hover:   #e8830f;
  --radius:      8px;
  --radius-sm:   5px;
  --radius-pill: 50px;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.09);
  --transition:  0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ══════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--cta);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ══════════════════════════════
   FLOATING CONTACT BUTTONS
══════════════════════════════ */
.float-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.float-btn {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;       /* single element — no seam possible */
  flex-shrink: 0;
  color: white;
  transition: width 0.46s cubic-bezier(0.22,1,0.36,1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.float-btn:first-child { border-radius: 6px 0 0 0; }
.float-btn:last-child  { border-radius: 0 0 0 6px; }

/* Icon always pinned to the right, unaffected by width change */
.float-btn svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  flex-shrink: 0;
}

/* Label is a plain child — clipped at 50px, revealed as button expands */
.float-label {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  color: white;
  padding-left: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease 0s;
}
.float-btn:hover .float-label {
  opacity: 1;
  transition: opacity 0.18s ease 0.12s;
}

/* Per-button logo colours */
.float-btn.phone    { background: #b5621a; }
.float-btn.email    { background: var(--blue); }
.float-btn.whatsapp { background: #2d7a40; }

.float-btn.phone:hover    { width: 150px; background: var(--logo-orange); box-shadow: -4px 0 18px rgba(247,148,29,0.4); }
.float-btn.email:hover    { width: 150px; background: var(--blue-hover);  box-shadow: -4px 0 18px rgba(4,47,153,0.3); }
.float-btn.whatsapp:hover { width: 150px; background: #25D366;            box-shadow: -4px 0 18px rgba(37,211,102,0.35); }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 66px;
  width: auto;
  display: block;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-center a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-center a:hover { color: var(--blue); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.lang-btn {
  background: var(--blue);
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.32rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: opacity var(--transition);
  opacity: 0.45;
}
.lang-btn.active, .lang-btn:hover { opacity: 1; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 82px;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-lang { display: flex; gap: 0.5rem; margin-top: 0.5rem; }

/* ══════════════════════════════
   HERO CAROUSEL
══════════════════════════════ */
#hero {
  background: #3C3C3C;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  text-align: center;
}

/* ── Slide layer ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  /* animation injected by JS per-slide to guarantee restart */
}

/* 5 distinct Ken Burns movements — zoom, pan, diagonal */
@keyframes kb1 { from { transform: scale(1.10) translate(0,    0);    } to { transform: scale(1.00) translate(0,    0);    } }
@keyframes kb2 { from { transform: scale(1.00) translate(0,    0);    } to { transform: scale(1.08) translate(0,    0);    } }
@keyframes kb3 { from { transform: scale(1.07) translate(-2%,  0);    } to { transform: scale(1.01) translate( 2%,  0);    } }
@keyframes kb4 { from { transform: scale(1.07) translate( 2%, -1%);   } to { transform: scale(1.01) translate(-2%,  1%);   } }
@keyframes kb5 { from { transform: scale(1.06) translate( 0,  -2%);   } to { transform: scale(1.01) translate( 0,   1.5%); } }

/* ── Dark overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(10,14,28,0.55) 0%,
      rgba(10,14,28,0.38) 45%,
      rgba(10,14,28,0.70) 100%);
}

/* ── Content ── */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 8rem 2.5rem 7rem;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.6rem;
}
.hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  display: inline-block;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  display: block;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-headline-blue {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  color: #ffffff;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 0.9em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ── Dot indicators ── */
.hero-dots {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.hero-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.45);
}
.hero-dot:hover:not(.active) {
  background: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.75);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(4,47,153,0.3); }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cta);
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--cta);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-cta:hover { background: var(--cta-hover); border-color: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,148,29,0.35); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
#hero .btn-outline:hover { border-color: rgba(255,255,255,0.7); color: white; background: rgba(255,255,255,0.08); }
.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--blue);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--blue-mid);
  transition: all var(--transition);
}
.btn-outline-blue:hover { background: var(--blue-dim); border-color: var(--blue); transform: translateY(-1px); }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.section-white  { background: var(--white); }
.section-tinted { background: var(--light); }
.section-dark   { background: #3C3C3C; }

.section-wrap { max-width: 1200px; margin: 0 auto; padding: 4.5rem 2.5rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}
.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.section-sub {
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.78;
  max-width: 620px;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-header { max-width: 640px; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.75;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 1.3rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.65rem; }

/* Service card progressive disclosure */
.service-expand-body { margin-top: 0.65rem; }
.service-expand-body p { margin-bottom: 0.5rem; }
.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: gap var(--transition), color var(--transition);
}
.service-toggle:hover { color: var(--blue-hover); }
.service-toggle svg { transition: transform 0.25s ease; flex-shrink: 0; }
.service-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Service card bullet list */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.65rem 0 0.5rem;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 0.48em;
}

/* ══════════════════════════════
   PRODUCTS
══════════════════════════════ */
.products-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.product-text .section-sub { margin-bottom: 1.75rem; }
.product-features { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }

/* Terminal photo */
.terminal-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.terminal-photo-wrap img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--off-white);
}
.terminal-carousel {
  width: 100%;
  max-width: 320px;
  position: relative;
}
.terminal-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 298 / 238;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--off-white);
}
.terminal-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.96) translateY(6px);
  filter: blur(2px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  box-shadow: none;
  will-change: opacity, transform, filter;
}
.terminal-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}
.terminal-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.terminal-dot.active {
  background: var(--blue);
}
.terminal-photo-card {
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.terminal-model-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.3rem;
}
.terminal-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.terminal-sub {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* Payment methods strip */
.prd-methods {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.prd-methods-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.prd-methods-label {
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--heading);
  text-align: center;
}
.prd-methods-divider { display: none; }
/* Payment logos row */
.pay-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.pay-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pay-pill img {
  width: auto;
  object-fit: contain;
  display: block;
}
/* Per-logo size tuning — match reference visual weight */
.pay-logos .pay-pill:nth-child(1) img { height: 38px; }  /* Visa */
.pay-logos .pay-pill:nth-child(2) img { height: 64px; }  /* Mastercard */
.pay-logos .pay-pill:nth-child(3) img { height: 76px; }  /* Maestro */
.pay-logos .pay-pill:nth-child(4) img { height: 68px; }  /* V PAY */
.pay-logos .pay-pill:nth-child(5) img { height: 68px; }  /* Apple Pay */
.pay-logos .pay-pill:nth-child(6) img { height: 48px; }  /* Google Pay */
.pay-logos .pay-pill:nth-child(7) img { height: 48px; }  /* Samsung Pay */

/* Key advantages */
.prd-advantages .section-wrap { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.advantages-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.advantages-inner > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.advantages-inner .section-title { margin-bottom: 1.25rem; }
.advantages-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.75rem;
}
.advantages-list li {
  font-size: 0.875rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.5;
}
.advantages-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 0.42em;
}

/* Pricing */
.prd-pricing .section-wrap { padding-top: 4.5rem; padding-bottom: 5rem; }
.pricing-header { text-align: center; margin-bottom: 2.75rem; }
.pricing-header .section-sub { margin: 0.5rem auto 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--off-white);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
}
.pricing-card > p:last-child {
  margin-top: auto;
  padding-top: 1rem;
}
.pricing-card--featured {
  background: var(--off-white);
  border-color: var(--blue);
  box-shadow: 0 4px 28px rgba(4,47,153,0.11);
}
.pricing-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
.pricing-amount {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-rows { margin-bottom: 0.5rem; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-2);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-value {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}
.pricing-unit { font-weight: 400; font-size: 0.8rem; color: var(--text-muted); }
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
}
.pricing-includes li {
  font-size: 0.875rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.pricing-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--blue);
  border-radius: 50%;
}
.pricing-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}
.pricing-cta .btn-primary {
  min-width: 260px;
  justify-content: center;
}

/* Contact detail list */
.contact-details {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.25rem;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
a.contact-detail-item:hover { color: white; }
.contact-detail-addr { align-items: flex-start; }
.contact-detail-addr .cd-icon { margin-top: 0.1rem; }
.cd-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-address-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.75;
}
.contact-address-link:hover { color: rgba(255,255,255,0.9); }

/* Form card */
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 2rem 2.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-item:hover { border-color: var(--blue-mid); box-shadow: 0 2px 12px rgba(4,47,153,0.07); }
.feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.feature-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }
.terminal-wrap { display: flex; justify-content: center; }

/* ══════════════════════════════
   STORY
══════════════════════════════ */
.story-inner { display: grid; grid-template-columns: 200px 1fr; gap: 5rem; align-items: start; }
.story-stat { position: sticky; top: 5.5rem; text-align: center; }
.story-stat-num {
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.story-stat-plus { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 500; color: var(--blue); opacity: 0.5; }
.story-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.8;
}
.story-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.story-text p { font-size: 0.95rem; color: var(--text-2); line-height: 1.82; margin-bottom: 1rem; }
.story-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.story-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}
.story-tag:hover { background: var(--blue-mid); }

/* ══════════════════════════════
   PARTNERS
══════════════════════════════ */
.partners-header { text-align: center; margin-bottom: 3.5rem; }
.partners-header .section-title { margin: 0.5rem auto 0.75rem; }
.partners-header .section-sub { margin: 0 auto; }
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.partner-card {
  background: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 62px;
  overflow: visible;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.partner-card--dark {
  background: transparent;
  width: auto;
  padding: 0;
  overflow: visible;
}
.partner-card--dark:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.partner-card img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.partner-card--dark img {
  height: 52px;
  border-radius: 999px;
}
.partner-name {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
  white-space: nowrap;
}


/* ══════════════════════════════
   CONTACT / CTA
══════════════════════════════ */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 2rem; }
.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}
.contact-text p { font-size: 0.96rem; color: rgba(255,255,255,0.6); line-height: 1.72; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: 0.35rem; }
.cf-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.cf-group input,
.cf-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: white;
  font-family: var(--font);
  font-size: 0.9rem;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.cf-group input:focus,
.cf-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.11);
}
.cf-group textarea { resize: vertical; min-height: 110px; }
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.cf-check input[type=checkbox] { margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--blue); }
.cf-submit { margin-top: 0.25rem; align-self: flex-start; }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.cf-success {
  font-size: 0.88rem;
  color: #6ee7b7;
  padding: 0.6rem 0;
}

/* Service lead question */
.service-lead {
  font-weight: 600;
  color: var(--blue);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

/* Terminal description in photo card */
.terminal-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: #2e2e2e; }
.footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: white;
  padding: 0.15rem;
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 0.4rem;
}
.footer-logo-img { height: 30px; width: auto; display: block; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.32); }
.footer-sep { font-size: 0.78rem; color: rgba(255,255,255,0.18); }
.footer-contact-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-contact-link:hover { color: rgba(255,255,255,0.8); }
.footer-tagline {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-linkedin:hover {
  color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

/* ══════════════════════════════
   REVEAL ANIMATION
══════════════════════════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 1.75rem; }
  .section-wrap { padding-left: 1.75rem; padding-right: 1.75rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { gap: 1rem; }
  .products-inner { gap: 3rem; }
  .footer-bar { padding-left: 1.75rem; padding-right: 1.75rem; }
}
@media (max-width: 600px) {
  /* ── Mobile: keep desktop-style vertical stack on the right ── */
  .float-btns {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: none;
    padding: 0;
  }
  .float-btn {
    width: 46px;
    height: 46px;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    border-radius: unset;
    box-shadow: unset;
    transition: width 0.46s cubic-bezier(0.22,1,0.36,1),
                background 0.3s ease,
                box-shadow 0.3s ease;
  }
  .float-btn:first-child { border-radius: 6px 0 0 0; }
  .float-btn:last-child  { border-radius: 0 0 0 6px; }
  /* Restore per-button colours */
  .float-btn.phone    { background: #b5621a !important; }
  .float-btn.email    { background: var(--blue) !important; }
  .float-btn.whatsapp { background: #2d7a40 !important; }
  .float-btn:active.phone    { background: var(--logo-orange) !important; }
  .float-btn:active.email    { background: var(--blue-hover) !important; }
  .float-btn:active.whatsapp { background: #25D366 !important; }
  /* Icon pinned to the right */
  .float-btn svg {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
  }
  .float-btn.whatsapp svg { fill: white; width: 24px; height: 24px; }
  .float-label {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  #hero { min-height: 70vh; }
  .hero-inner { padding: 4.5rem 1.5rem 5rem; }
  .hero-headline { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-headline-blue { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .section-wrap { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .products-inner { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-stat { position: static; text-align: left; }
  .partners-grid { flex-direction: column; gap: 1rem; max-width: 280px; margin: 0 auto; }
  .partner-card { height: 50px; padding: 0.5rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-card { padding: 1.5rem; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-submit { align-self: stretch; justify-content: center; }
  .footer-bar { padding: 1rem 1.5rem; gap: 0.75rem; }
  .footer-tagline { display: none; }
  .terminal-photo-wrap { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .advantages-inner { grid-template-columns: 1fr; gap: 2rem; }
  .advantages-list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .prd-methods-inner { padding: 2.5rem 1.5rem; gap: 1.5rem; }
  .prd-methods-label { font-size: 1.25rem; }
  .pay-logos { gap: 1.5rem; }
  .pay-logos .pay-pill:nth-child(1) img { height: 28px; }
  .pay-logos .pay-pill:nth-child(2) img { height: 48px; }
  .pay-logos .pay-pill:nth-child(3) img { height: 56px; }
  .pay-logos .pay-pill:nth-child(4) img { height: 50px; }
  .pay-logos .pay-pill:nth-child(5) img { height: 42px; }
  .pay-logos .pay-pill:nth-child(6) img { height: 36px; }
  .pay-logos .pay-pill:nth-child(7) img { height: 36px; }
}

/* French hero: slightly smaller font so the headline fits on 2 lines */
html[lang="fr"] .hero-headline,
html[lang="fr"] .hero-headline-blue {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}
