/* ═══════════════════════════════════════════════════
   INTERY d.o.o. — Premium Industrial Website
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --green:        #2980B9;
  --green-light:  #3DAFD8;
  --green-dim:    rgba(41,128,185,.12);
  --green-border: rgba(41,128,185,.25);

  --dark:         #06090d;
  --dark-card:    #0d1117;
  --dark-border:  rgba(255,255,255,.07);

  --light:        #f4f6f3;
  --light-card:   #ffffff;
  --light-border: rgba(0,0,0,.08);

  --text-on-dark: #ffffff;
  --muted-on-dark: rgba(255,255,255,.55);
  --text-on-light: #0a0f0a;
  --muted-on-light: #5a6359;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.25,.46,.45,.94);
  --shadow-card: 0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,.14);
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-on-dark);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

::selection { background: var(--green); color: #fff; }

/* ── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── CONTAINER ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTION THEMES ──────────────────────────────── */
.section-light { background: var(--light); color: var(--text-on-light); }
.section-dark  { background: var(--dark); color: var(--text-on-dark); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn-icon { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--transition); }
.btn:hover .btn-icon { transform: translate(3px,-3px); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(41,128,185,.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(41,128,185,.5); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.06); }

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── SECTION HEADERS ─────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.tag-green { color: var(--green-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 1.1rem;
}
.title-light { color: var(--text-on-dark); }
.section-title em { color: var(--green); font-style: italic; }
.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-on-light);
}
.section-dark .section-subtitle { color: var(--muted-on-dark); }


/* ══════════════════════════════════════════════════
   NAVBAR  (adapted from glassmorphism-navigation-bar)
   ══════════════════════════════════════════════════ */
.navbar-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1200px;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.navbar-container.scrolled { top: 12px; }

.navbar {
  background: rgba(6,9,13,.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
}
.navbar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(41,128,185,.06), transparent);
  transition: left .8s ease;
}
.navbar:hover::before { left: 100%; }
.navbar:hover { box-shadow: 0 25px 50px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.09); }
.navbar-container.scrolled .navbar {
  background: rgba(6,9,13,.95);
  border-color: var(--green-border);
}

/* Brand */
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 1.25rem;
  z-index: 2; position: relative; flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(41,128,185,.4);
  flex-shrink: 0;
}
.logo-icon svg { width: 16px; height: 16px; color: #fff; }
.brand-text {
  background: linear-gradient(135deg, #fff, #c4dcf0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  font-weight: 900; letter-spacing: .05em;
}
.navbar-logo-img {
  height: 38px; width: auto;
  display: block; object-fit: contain;
}
.navbar-logo-svg {
  height: 40px; width: 40px;
  display: block; object-fit: contain;
  filter: drop-shadow(0 0 0 transparent);
  transition: filter .3s ease;
}
.navbar-brand:hover .navbar-logo-svg {
  filter: drop-shadow(0 2px 4px rgba(3, 105, 161, 0.2));
}
@media (prefers-reduced-motion: reduce) {
  .navbar-logo-svg {
    transition: none;
  }
}
.service-indicator {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: all .25s ease;
}
.navbar-brand:hover .service-indicator {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
}
.footer-logo-img {
  height: 44px; width: auto;
  display: block; object-fit: contain;
}

/* Nav links */
.navbar-nav {
  display: flex; align-items: center; gap: 1px;
  z-index: 2; position: relative;
  min-width: 0;
}
.nav-link {
  padding: 8px 9px;
  color: rgba(255,255,255,.8);
  font-size: .82rem; font-weight: 500;
  border-radius: 50px;
  transition: all .25s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.09);
}
.nav-phone {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 10px;
  color: rgba(255,255,255,.65);
  font-size: .78rem; font-weight: 500;
  border-radius: 50px;
  transition: all .25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone svg { flex-shrink: 0; }
.nav-phone-num { white-space: nowrap; flex-shrink: 0; }
.nav-item:has(> .nav-phone),
.nav-item:has(> .cta-button) { flex-shrink: 0; }
.nav-phone:hover { color: var(--green-light); background: rgba(41,128,185,.1); }

.cta-button {
  background: var(--green);
  color: #fff !important;
  padding: 8px 14px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .82rem !important;
  box-shadow: 0 4px 16px rgba(41,128,185,.35);
  transition: all .25s ease;
  white-space: nowrap;
  margin-left: 4px;
}

/* Progressive room-claim: drop low-priority links before the phone gets clipped */
@media (max-width: 1280px) and (min-width: 993px) {
  .navbar-nav .nav-item:has(> .nav-link[data-i18n="nav.references"]) { display: none; }
}
@media (max-width: 1180px) and (min-width: 993px) {
  .navbar-nav .nav-item:has(> .nav-link[data-i18n="nav.about"]) { display: none; }
}
@media (max-width: 1100px) and (min-width: 993px) {
  .navbar-nav .nav-item:has(> .nav-link[data-i18n="nav.contact"]) { display: none; }
}
.cta-button:hover {
  background: var(--green-light) !important;
  box-shadow: 0 6px 24px rgba(41,128,185,.5) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  padding: 8px; border-radius: 50%;
  color: #fff;
  transition: background .25s;
  z-index: 1001; flex-shrink: 0;
}
.mobile-toggle:hover { background: rgba(255,255,255,.1); }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span {
  width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all .3s ease; display: block;
}
.mobile-toggle.active .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active .hamburger span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-toggle.active .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  z-index: 1500;
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark-card);
  z-index: 1600;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  overflow-y: auto;
  border-bottom: 1px solid var(--green-border);
}
.mobile-menu.active { transform: translateY(0); }

.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--dark-border);
}
.mobile-menu-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 1.25rem;
}
.mobile-menu-close {
  color: #fff; font-size: 2rem; width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.08); }

.mobile-menu-nav { padding: 24px 28px; }
.mobile-menu-item { margin-bottom: 6px; }
.mobile-menu-link {
  display: block; padding: 16px 20px;
  color: rgba(255,255,255,.85);
  font-size: 1.1rem; font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .25s ease;
}
.mobile-menu-link:hover, .mobile-menu-link.active {
  background: rgba(41,128,185,.1);
  border-color: var(--green-border);
  color: var(--green-light);
}

.mobile-cta { padding: 0 28px 40px; display: flex; flex-direction: column; gap: 12px; }
.mobile-cta-button {
  display: block; text-align: center;
  background: var(--green); color: #fff;
  padding: 18px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(41,128,185,.35);
  transition: all .25s;
}
.mobile-cta-button:hover { background: var(--green-light); }
.mobile-phone-link {
  display: block; text-align: center;
  color: rgba(255,255,255,.6); font-size: .95rem; padding: 8px;
}
.mobile-phone-link:hover { color: var(--green-light); }

@media (max-width: 992px) {
  .navbar-container { width: calc(100% - 28px); }
  .navbar { padding: 10px 16px; }
  .navbar-nav { display: none; }
  .mobile-toggle { display: flex; align-items: center; justify-content: center; }
}
@media (min-width: 993px) {
  .navbar-nav { display: flex !important; }
  .navbar-container { max-width: 1320px; }
  .navbar { padding: 14px 22px; gap: 12px; }
  .navbar-brand { font-size: 1.4rem; gap: 12px; }
  .navbar-logo-img { height: 46px; }
  .nav-link { padding: 11px 14px; font-size: .92rem; }
  .nav-phone { padding: 10px 14px; font-size: .85rem; gap: 7px; }
  .nav-phone svg { width: 15px; height: 15px; }
  .cta-button { padding: 11px 20px !important; font-size: .9rem !important; margin-left: 6px; }
  .lang-dropdown-btn { padding: 8px 14px; font-size: .78rem; }
}

/* ── LANGUAGE SWITCHER DROPDOWN ──────────────────────────── */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-border);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.8);
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.lang-dropdown-label { display: inline-flex; align-items: center; gap: 6px; }
.lang-dropdown-name { white-space: nowrap; }
.lang-dropdown-code { white-space: nowrap; opacity: .7; }
@media (max-width: 1380px) and (min-width: 993px) {
  .lang-dropdown-name { display: none; }
  .lang-dropdown-code { opacity: 1; }
}
.lang-dropdown-btn:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.15);
}
.lang-dropdown-btn.open {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 2px 10px rgba(41,128,185,.4);
}
.lang-arrow { transition: transform .25s ease; flex-shrink: 0; }
.lang-dropdown-btn.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown-menu {
  position: fixed;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 6px;
  min-width: 175px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 9999;
}
.lang-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: all .18s ease;
  cursor: pointer;
  text-align: left;
  letter-spacing: .02em;
  font-family: inherit;
  border: none;
  background: none;
}
.lang-option:hover { background: rgba(255,255,255,.07); color: #fff; }
.lang-option.active { color: var(--green-light); background: var(--green-dim); }
.lang-option span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  opacity: .7;
}

@media (max-width: 992px) { .lang-switcher { display: none; } }

.mobile-lang-switcher {
  position: relative;
  padding: 12px 28px 8px;
  border-top: 1px solid var(--dark-border);
}
.mobile-lang-switcher .lang-dropdown-btn {
  width: 100%;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 700;
}
.mobile-lang-switcher .lang-dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  right: 28px;
  left: 28px;
  min-width: unset;
}


/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform-origin: center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,9,13,.95) 0%,
    rgba(6,9,13,.85) 40%,
    rgba(6,9,13,.55) 75%,
    rgba(6,9,13,.3) 100%
  );
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,128,185,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,128,185,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-asset-placeholder {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  opacity: .06;
  border: 2px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  padding-top: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.8rem;
  overflow: hidden;
}
.title-line {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}
.accent-line { color: #fff; }
.accent-line em { color: var(--green); font-style: italic; }

.hero-subtitle {
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-ctas {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

/* Hero bottom bar */
.hero-bottom {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 2rem 2rem 2.5rem;
  max-width: 1280px; margin: 0 auto; width: 100%;
  opacity: 0;
}

.hero-stats-bar {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  gap: 2rem;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hero-stat span {
  font-size: .75rem; color: rgba(255,255,255,.5);
  letter-spacing: .05em; margin-top: .25rem; display: block;
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(41,128,185,.8), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: .4; }
}

/* ══════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════ */
.services-section { padding: 7rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-card);
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s ease;
  will-change: transform;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }

.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.65) 100%);
  transition: opacity .35s;
}
.service-card:hover .service-card-overlay { opacity: .8; }

.service-num {
  position: absolute; bottom: 12px; left: 16px;
  font-family: var(--font-heading);
  font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,.25);
  line-height: 1;
  user-select: none;
  transition: color .35s;
}
.service-card:hover .service-num { color: rgba(255,255,255,.5); }

.service-accent-bar {
  position: absolute; bottom: 0; right: 0;
  width: 32px; height: 4px;
  background: var(--green);
  border-radius: 2px 0 0 0;
  transition: width .35s ease;
}
.service-card:hover .service-accent-bar { width: 56px; }

.service-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.service-card-body p {
  font-size: .9rem; line-height: 1.6;
  color: var(--muted-on-light);
  margin-bottom: 1rem;
}
.service-link {
  font-size: .85rem; font-weight: 600;
  color: var(--green);
  display: inline-flex; align-items: center; gap: .3rem;
  transition: gap .2s ease;
}
.service-link:hover { gap: .6rem; }

/* ══════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════ */
.about-section { padding: 8rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-left .section-title { margin-bottom: 1.2rem; }
.about-desc {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--muted-on-dark);
  margin-bottom: .5rem;
}

.cert-badges {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem;
}
.cert-badge {
  display: flex; align-items: center; gap: .6rem;
  padding: .6rem 1.1rem;
  background: rgba(41,128,185,.1);
  border: 1px solid var(--green-border);
  border-radius: 50px;
  font-size: .8rem; font-weight: 600; color: var(--green-light);
}
.cert-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* USP list */
.usp-list { display: flex; flex-direction: column; gap: 0; }
.usp-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.usp-item:last-child { border-bottom: none; }

.usp-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.usp-icon svg { width: 18px; height: 18px; color: var(--green); }

.usp-content h4 {
  font-size: 1rem; font-weight: 600; color: #fff;
  margin-bottom: .35rem;
}
.usp-content p {
  font-size: .9rem; line-height: 1.6; color: var(--muted-on-dark);
}

/* ══════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════ */
.stats-section {
  background: var(--green);
  padding: 5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900; color: #fff;
  line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: .1rem;
  margin-bottom: .5rem;
}
.stat-plus { font-size: 2.5rem; }
.stat-item p {
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════
   REFERENCES
   ══════════════════════════════════════════════════ */
.references-section { padding: 7rem 0; }

.references-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.reference-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.reference-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--green);
  transition: height .35s ease;
}
.reference-card:hover::before { height: 100%; }
.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--green-border);
}

.ref-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.ref-client {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 800; letter-spacing: .02em;
  color: var(--text-on-light);
}
.ref-year {
  font-size: .78rem; font-weight: 600;
  color: var(--green);
  background: rgba(41,128,185,.1);
  padding: .25rem .65rem;
  border-radius: 50px;
}

.reference-card h3 {
  font-size: 1rem; font-weight: 600;
  color: var(--text-on-light);
  margin-bottom: .6rem; line-height: 1.4;
}
.reference-card p {
  font-size: .88rem; line-height: 1.6;
  color: var(--muted-on-light);
  margin-bottom: 1.2rem;
}
.ref-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.ref-tags span {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  background: var(--light);
  border: 1px solid var(--light-border);
  padding: .25rem .6rem; border-radius: 50px;
}

/* CTA card */
.ref-cta-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
  display: flex; align-items: center; justify-content: center;
}
.ref-cta-card::before { display: none; }
.ref-cta-card:hover { border-color: var(--green-border); }
.ref-cta-inner { text-align: center; padding: 1rem; }
.ref-cta-icon {
  width: 56px; height: 56px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.ref-cta-icon svg { width: 24px; height: 24px; color: var(--green); }
.ref-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 800; color: #fff;
  margin-bottom: .6rem;
}
.ref-cta-inner p {
  font-size: .9rem; color: var(--muted-on-dark);
  margin-bottom: 1.5rem; line-height: 1.6;
}

/* View Full Reference List button */
.ref-view-all-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: .9rem; margin-top: 3rem;
}
.ref-view-all-btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .95rem 1.85rem;
  background: var(--text-on-light);
  color: #fff;
  border: 1px solid var(--text-on-light);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: .92rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  box-shadow: 0 6px 20px rgba(15,23,42,.12);
}
.ref-view-all-btn:hover {
  transform: translateY(-2px);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(41,128,185,.28);
}
.ref-view-all-btn svg { transition: transform .25s ease; }
.ref-view-all-btn:hover svg { transform: translateX(4px); }
.ref-view-all-note {
  font-size: .85rem; color: var(--muted-on-light);
  margin: 0; text-align: center;
}

/* ══════════════════════════════════════════════════
   PROCESS
   ══════════════════════════════════════════════════ */
.process-section { padding: 7rem 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

.process-step {
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
}
.process-step:not(:last-child) .step-connector {
  position: absolute; top: 56px; right: -1px;
  width: 2rem; height: 1px;
  background: linear-gradient(to right, var(--green), transparent);
  display: none;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 5rem; font-weight: 900;
  color: var(--green-dim);
  line-height: 1;
  margin-bottom: .5rem;
  background: linear-gradient(180deg, rgba(41,128,185,.25) 0%, transparent 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background .3s, box-shadow .3s;
}
.process-step:hover .step-icon {
  background: rgba(41,128,185,.2);
  box-shadow: 0 0 24px rgba(41,128,185,.25);
}
.step-icon svg { width: 26px; height: 26px; color: var(--green); }

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700; color: #fff;
  margin-bottom: .7rem;
}
.process-step p {
  font-size: .95rem; line-height: 1.65;
  color: var(--muted-on-dark); max-width: 260px; margin: 0 auto;
}

/* Dividers between steps */
.process-steps::before,
.process-steps::after {
  content: '';
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--green-border), transparent);
}
.process-steps::before { left: 33.33%; }
.process-steps::after  { left: 66.66%; }

/* ══════════════════════════════════════════════════
   CLIENTS MARQUEE
   ══════════════════════════════════════════════════ */
.clients-section { padding: 4rem 0; overflow: hidden; }
.clients-label {
  text-align: center;
  margin-bottom: 2.5rem;
}
.clients-label span {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-on-light);
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 120px;
  display: flex;
  align-items: center;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute; top: 0; z-index: 2;
  width: 120px; height: 100%;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left, var(--light), transparent); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
  padding: 2rem 0;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 800;
  color: var(--text-on-light);
  padding: .5rem 2rem;
  opacity: .55;
  transition: opacity .25s;
  white-space: nowrap;
}
.client-name:hover { opacity: 1; }
.client-logo {
  height: 36px; width: auto;
  max-width: 140px;
  object-fit: contain;
  padding: .5rem 2rem;
  opacity: .55;
  filter: grayscale(100%);
  transition: opacity .25s, filter .25s;
  flex-shrink: 0;
}
.client-logo:hover { opacity: 1; filter: grayscale(0%); }

.client-dot {
  font-size: .5rem; color: var(--green);
  padding: 0 .5rem; opacity: .5; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.contact-section { padding: 8rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 1rem; }
.contact-desc {
  font-size: 1rem; line-height: 1.7;
  color: var(--muted-on-dark);
  margin-bottom: 2.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s;
}
.contact-item:hover { border-color: var(--green-border); background: var(--green-dim); }
.contact-icon-wrap {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-wrap svg { width: 16px; height: 16px; color: var(--green); }
.contact-item-text { display: flex; flex-direction: column; gap: .2rem; }
.contact-item-text strong {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.contact-item-text a,
.contact-item-text span {
  font-size: .9rem; color: rgba(255,255,255,.85);
  transition: color .2s;
  line-height: 1.4;
}
.contact-item-text a:hover { color: var(--green-light); }

.contact-social { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-pill {
  padding: .5rem 1.1rem;
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: all .25s;
}
.social-pill:hover {
  border-color: var(--green-border);
  color: var(--green-light);
  background: var(--green-dim);
}

/* Form */
.contact-form-wrapper {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; position: relative; }
.contact-form .form-status {
  font-size: .9rem; padding: .75rem 1rem; border-radius: var(--radius-sm, 6px);
  display: none; line-height: 1.45;
}
.contact-form .form-status.success {
  display: block; background: rgba(34,197,94,.12); color: #4ade80;
  border: 1px solid rgba(34,197,94,.3);
}
.contact-form .form-status.error {
  display: block; background: rgba(239,68,68,.12); color: #fca5a5;
  border: 1px solid rgba(239,68,68,.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  color: #fff;
  font-size: .95rem;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  background: rgba(41,128,185,.06);
  box-shadow: 0 0 0 3px rgba(41,128,185,.15);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark-card); color: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }


/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  padding: 5rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 700; font-size: 1.2rem;
  margin-bottom: 1rem;
  width: fit-content;
}
.footer-slogan {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #fff 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1rem;
}
.footer-brand-col p {
  font-size: .9rem; line-height: 1.7;
  color: var(--muted-on-dark);
  margin-bottom: 1.5rem;
}

.footer-social-icons { display: flex; gap: .75rem; }
.footer-social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .25s;
}
.footer-social-icon svg { width: 16px; height: 16px; }
.footer-social-icon:hover {
  border-color: var(--green-border);
  color: var(--green-light);
  background: var(--green-dim);
}

.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 1.2rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links-col li a,
.footer-links-col li {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links-col li a:hover { color: var(--green-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--green-light); }


/* ══════════════════════════════════════════════════
   ANIMATIONS — initial states for GSAP
   ══════════════════════════════════════════════════ */
.section-header,
.services-grid .service-card,
.about-left,
.about-right,
.usp-item,
.reference-card,
.process-step,
.contact-info,
.contact-form-wrapper {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .marquee-track { animation: none; }
  .scroll-line { animation: none; }
  .eyebrow-dot { animation: none; }
}


/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .references-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .about-grid { gap: 4rem; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before, .process-steps::after { display: none; }
  .hero-stats-bar { gap: 1.2rem; flex-wrap: wrap; }
}

/* Services mobile-only "Show more" toggle — base (hidden on tablet+) */
.services-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  margin-top: 1.25rem;
  padding: .95rem 1.25rem;
  background: var(--light-card);
  color: var(--text-on-light);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.services-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.services-toggle:active { transform: translateY(0); }
.services-toggle-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1rem; font-weight: 700; line-height: 1;
  transition: transform .3s ease;
}
.services-toggle[aria-expanded="true"] .services-toggle-icon { transform: rotate(45deg); }

@keyframes serviceCardReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .container { padding: 0 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .references-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-bottom { flex-direction: column; gap: 2rem; padding: 1.5rem 1.25rem 2rem; }
  .hero-stats-bar { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .about-section, .contact-section, .services-section, .references-section, .process-section { padding: 5rem 0; }
  .contact-form-wrapper { padding: 1.5rem; }
}

/* Mobile-only collapse for services grid (below iPad portrait) */
@media (max-width: 767px) {
  .services-grid .service-card-extra { display: none !important; }
  .services-grid.is-expanded .service-card-extra { display: block !important; animation: serviceCardReveal .35s ease both; }
  .services-toggle { display: inline-flex !important; }
}

@media (prefers-reduced-motion: reduce) {
  .services-grid.is-expanded .service-card-extra { animation: none; }
}

@media (max-width: 480px) {
  .navbar-container { width: calc(100% - 20px); top: 12px; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-stats-bar { padding: 1rem 1.2rem; gap: 1rem; }
  .hero-stat strong { font-size: 1.5rem; }
  .stats-grid { gap: 2rem; }
  .stat-number { font-size: 3rem; }
}


/* ══════════════════════════════════════════════════
   SERVICE DETAIL PAGES
   ══════════════════════════════════════════════════ */

.sp-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 140px 0 6rem;
  overflow: hidden;
}
.sp-hero-bg { position: absolute; inset: 0; z-index: 0; }
.sp-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.28) saturate(.7);
}
.sp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(6,9,13,.98) 0%,
    rgba(6,9,13,.88) 45%,
    rgba(6,9,13,.55) 100%
  );
}
.sp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,128,185,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,128,185,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.sp-hero-content {
  position: relative; z-index: 1;
  max-width: 820px;
}
.sp-hero-num {
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 16vw, 14rem);
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
  z-index: 0;
}
.sp-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.8rem;
  transition: color .2s;
}
.sp-back-link:hover { color: var(--green-light); }
.sp-back-link svg { width: 14px; height: 14px; }
.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.1rem;
}
.sp-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
.sp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.sp-hero-title em { color: var(--green); font-style: italic; }
.sp-hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.sp-hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Content Section */
.sp-content-section {
  padding: 6rem 0;
  background: var(--light);
  color: var(--text-on-light);
}
.sp-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.sp-main-content h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-on-light);
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
.sp-main-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted-on-light);
  margin-bottom: 1.4rem;
}
.sp-main-content p:last-child { margin-bottom: 0; }

/* Sidebar */
.sp-sidebar { position: sticky; top: 100px; }
.sp-sidebar-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}
.sp-sidebar-card h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.1rem;
}
.sp-sidebar-list { display: flex; flex-direction: column; gap: .75rem; }
.sp-sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.sp-sidebar-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: .42rem;
}
.sp-cta-card {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border: none;
  text-align: center;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
}
.sp-cta-card h4 { color: #fff; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; margin-bottom: .6rem; }
.sp-cta-card p { color: rgba(255,255,255,.85); font-size: .88rem; margin-bottom: 1.5rem; line-height: 1.6; }
.sp-cta-card .btn {
  background: #fff;
  color: var(--green);
  width: 100%;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: none;
}
.sp-cta-card .btn:hover { background: rgba(255,255,255,.92); transform: translateY(-2px); }

/* Features Section */
.sp-features-section {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--text-on-dark);
}
.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: .5rem;
}
.sp-feature-item {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: border-color .3s, background .3s, transform .3s;
}
.sp-feature-item:hover {
  border-color: var(--green-border);
  background: var(--green-dim);
  transform: translateY(-4px);
}
.sp-feature-icon {
  width: 48px; height: 48px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.sp-feature-icon svg { width: 22px; height: 22px; color: var(--green); }
.sp-feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.sp-feature-item p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--muted-on-dark);
}

/* CTA Banner */
.sp-cta-banner {
  padding: 6rem 0;
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  text-align: center;
}
.sp-cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: .8rem;
  letter-spacing: -.01em;
}
.sp-cta-banner h2 em { color: var(--green); font-style: italic; }
.sp-cta-banner p {
  font-size: 1rem;
  color: var(--muted-on-dark);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.sp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1100px) {
  .sp-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .sp-content-grid { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; }
}
@media (max-width: 600px) {
  .sp-hero { min-height: 55vh; padding: 110px 0 4rem; }
  .sp-features-grid { grid-template-columns: 1fr; }
  .sp-cta-actions { flex-direction: column; align-items: center; }
}

/* WhatsApp floating action button */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 4px 12px rgba(0, 0, 0, .25);
  z-index: 9998;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .35);
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-fab:hover {
  background: #1ebe5a;
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55), 0 6px 16px rgba(0, 0, 0, .3);
}
.wa-fab:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .65; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab::before { animation: none; }
  .wa-fab { transition: none; }
}
@media (max-width: 600px) {
  .wa-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-fab svg { width: 28px; height: 28px; }
}

/* ── FORM CONSENT CHECKBOX ──────────────────────── */
.form-consent-group {
  margin-top: -.25rem;
  margin-bottom: .25rem;
}
.form-consent-label {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.form-consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid rgba(15, 23, 42, .25);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: all .15s ease;
  position: relative;
}
.form-consent-label input[type="checkbox"]:hover {
  border-color: #0369A1;
}
.form-consent-label input[type="checkbox"]:checked {
  background: #0369A1;
  border-color: #0369A1;
}
.form-consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent-label input[type="checkbox"]:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}
.form-consent-text {
  font-size: .85rem;
  line-height: 1.5;
  color: #475569;
}
.form-consent-text a {
  color: #0369A1;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent-text a:hover { color: #0284c7; }

/* Dark variant for careers page (white-on-dark form) */
.apply-form .form-consent-label input[type="checkbox"] {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .25);
}
.apply-form .form-consent-label input[type="checkbox"]:hover {
  border-color: #38bdf8;
}
.apply-form .form-consent-label input[type="checkbox"]:checked {
  background: #38bdf8;
  border-color: #38bdf8;
}
.apply-form .form-consent-text { color: rgba(255, 255, 255, .75); }
.apply-form .form-consent-text a { color: #38bdf8; }
.apply-form .form-consent-text a:hover { color: #7dd3fc; }
