/* =============================================================
   SureClick — Main Stylesheet
   Stack: Syne (display) + DM Sans (body)
   Palette: #060c16 bg / #0e62ad primary / #5cc6ff accent / #fff
============================================================= */

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

:root {
  --bg:        #060c16;
  --bg-2:      #0b1525;
  --bg-3:      #0e1c30;
  --primary:   #0e62ad;
  --accent:    #5cc6ff;
  --white:     #ffffff;
  --muted:     rgba(255,255,255,0.45);
  --border:    rgba(255,255,255,0.07);
  --font-disp: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  cursor: default;
}

main {
  max-width: 100vw;
  overflow: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* =============================================================
   LOADER
============================================================= */

#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-symbol {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-bar-track {
  width: 200px;
  height: 1px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: width 0.08s linear;
}

.loader-percent {
  font-family: var(--font-disp);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* =============================================================
   NAV
============================================================= */

/* Brand accent stripe at very top of page */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  z-index: 9999;
}

.site-nav {
  position: fixed;
  top: 2px; /* sit below accent stripe */
  left: 0;
  right: 0;
  z-index: 9000; /* above canvas, Three.js, and all content */
  padding: 20px 0;
  background: rgba(6, 12, 22, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.site-nav.nav-hidden {
  transform: translateY(-110%);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.nav-logo-symbol { display: none; }

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Nav contact button */
.nav-contact {
  margin-left: auto;
}

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-contact-btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ── Contact Popup ───────────────────────────────────────── */
.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact-popup.is-open {
  pointer-events: all;
  opacity: 1;
}

.contact-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-popup-card {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 36px 32px;
  width: min(420px, 90vw);
  transform: translateY(14px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-popup.is-open .contact-popup-card {
  transform: translateY(0);
}

.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s;
}

.contact-popup-close:hover { color: var(--white); }

.contact-popup-heading {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.contact-popup-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
  margin-bottom: 12px;
}

.contact-popup-btn:last-child { margin-bottom: 0; }

.contact-popup-btn:hover {
  background: rgba(14, 98, 173, 0.12);
  border-color: rgba(14, 98, 173, 0.4);
}

.contact-popup-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  flex-shrink: 0;
}

.contact-popup-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-popup-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-popup-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

/* =============================================================
   THREE.JS CANVAS
============================================================= */

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* =============================================================
   HERO
============================================================= */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 100vw;
  background: transparent;
  overflow: hidden;
}

/* Subtle grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,98,173,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,98,173,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Bottom gradient so content sections feel grounded */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 16px;
  z-index: 2;
}

.hero-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
}

.hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  opacity: 0;
  color: var(--white);
}

#tw-service {
  background: var(--primary);
  color: #ffffff;
  padding: 2px 10px 4px;
  display: inline;
  border-radius: 2px;
}

#tw-service:empty {
  background: none;
  padding: 0;
}

.tw-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 200;
  margin-left: 2px;
  animation: cursorBlink 0.65s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
}

.word { display: inline-block; }

.word.accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
}

.hero-bottom {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
}


/* =============================================================
   BUTTONS
============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1rem;
}

/* =============================================================
   TICKER
============================================================= */

.ticker-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 100vw;
  background: var(--primary);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  gap: 0;
}

.ticker-track span {
  font-family: var(--font-disp);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0 20px;
}

.ticker-track .sep {
  color: rgba(255,255,255,0.3);
  padding: 0 4px;
  font-size: 0.65rem;
}

/* =============================================================
   STATS
============================================================= */

.stats-section {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  background: rgba(11, 21, 37, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 40px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 0;
}

/* € prefix matches stat-num exactly in size, weight, and color */
.stat-prefix {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-num {
  display: inline-block;
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* =============================================================
   SERVICES
============================================================= */

.services-section {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  background: rgba(6, 12, 22, 0.72);
  padding: 120px 0;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transition: opacity 0.1s;
}

.service-row:last-of-type {
  border-bottom: 1px solid var(--border);
}

.service-row.reverse {
  grid-template-columns: 280px 1fr 80px;
}

.service-row.reverse .service-num { order: 3; }
.service-row.reverse .service-content { order: 2; }
.service-row.reverse .service-orb { order: 1; }

.service-num {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
}

.service-title {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.service-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 28px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}

.service-link:hover {
  border-color: var(--accent);
  gap: 10px;
}

.service-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--orb), transparent 70%);
  opacity: 0.18;
  justify-self: center;
  transition: opacity 0.4s;
}

.service-row:hover .service-orb { opacity: 0.35; }

/* =============================================================
   CLIENTS
============================================================= */

.clients-section {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  background: rgba(11, 21, 37, 0.72);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.clients-header {
  max-width: 1200px;
  margin: 0 auto 72px;
  padding: 0 40px;
}

/* Infinite scrolling ticker */
.clients-ticker {
  overflow: hidden;
  width: 100%;
  -webkit-mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
  mask: linear-gradient(90deg, transparent, white 12%, white 88%, transparent);
}

.clients-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  /* No gap — spacing handled by padding on each logo so -50% is always exact */
  animation: clientsScroll 28s linear infinite;
}

.clients-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Symmetric padding means every inter-logo gap = 56+56 = 112px, including the seam */
  padding: 0 56px;
}

.client-logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s;
}

.client-logo:hover img { opacity: 1; }

/* =============================================================
   CTA SECTION
============================================================= */

.cta-section {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  background: rgba(6, 12, 22, 0.72);
  padding: 160px 40px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,98,173,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
  opacity: 0;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
}

/* =============================================================
   FOOTER
============================================================= */

.site-footer {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  background: #0b1525;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-disp);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

/* =============================================================
   HERO ADDITIONS
============================================================= */

/* Hero label shown via JS intro animation */
.hero-label {
  opacity: 0;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 24px;
  opacity: 0;
}

.hero-usp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  opacity: 0;
}

.hero-usp-item {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.hero-usp-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.72rem;
}

.hero-usp-highlight {
  color: var(--accent);
  font-weight: 600;
}

/* =============================================================
   ABOUT SECTION
============================================================= */

.about-section {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  background: rgba(11, 21, 37, 0.72);
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about-heading {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-top: 20px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
  max-width: 560px;
}

.about-body--secondary {
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.about-pillar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.about-pillar-num {
  font-family: var(--font-disp);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 24px;
}

.about-pillar-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* =============================================================
   SERVICE BADGE & TITLE ROW
============================================================= */

.service-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.service-title-row .service-title {
  margin-bottom: 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(92, 198, 255, 0.1);
  border: 1px solid rgba(92, 198, 255, 0.28);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =============================================================
   SERVICE PRICING ROW
============================================================= */

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: fit-content;
}

.service-price-from {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.service-price-value {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.service-price-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* =============================================================
   PRICING SECTION
============================================================= */

.pricing-section {
  position: relative;
  z-index: 1;
  max-width: 100vw;
  background: rgba(11, 21, 37, 0.9);
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pricing-header {
  margin-bottom: 72px;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 560px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s;
  opacity: 0;
}

.pricing-card:hover {
  border-color: rgba(14, 98, 173, 0.4);
}

.pricing-card--featured {
  border-color: rgba(14, 98, 173, 0.5);
  background: rgba(14, 98, 173, 0.06);
  position: relative;
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pricing-card-label {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-card-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 100px;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.pricing-from {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-amount {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card-note {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-card-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.pricing-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  top: 1px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* =============================================================
   ADDITIONAL SERVICES
============================================================= */

.additional-services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
  border-top: 1px solid var(--border);
}

.additional-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.additional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.additional-item {
  display: flex;
  flex-direction: column;
}

.additional-num {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.additional-title {
  font-family: var(--font-disp);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--white);
}

.additional-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}

/* =============================================================
   STATS HEADER
============================================================= */

.stats-header-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 40px 0;
  text-align: center;
}

.stats-context {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

/* =============================================================
   CLIENTS ADDITIONS
============================================================= */

.clients-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 18px;
  max-width: 520px;
}

/* =============================================================
   FOOTER ADDITIONS
============================================================= */

.footer-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  margin-top: 6px;
  font-style: normal; /* override <address> italic default */
  line-height: 1.7;
}
.footer-location a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}
.footer-location a:hover {
  color: var(--accent);
}

/* =============================================================
   RESPONSIVE
============================================================= */

/* ── Tablet (≤ 900px) ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner  { padding: 0 24px; gap: 20px; }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .about-section { padding: 80px 0; }

  /* Stats */
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 480px;
  }

  .stat-divider {
    width: 56px;
    height: 1px;
    margin: 0 auto;
  }

  .stats-header-wrap { padding: 56px 24px 0; }

  /* Services */
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 44px 24px;
  }

  .service-row.reverse .service-num,
  .service-row.reverse .service-content,
  .service-row.reverse .service-orb { order: unset; }

  .service-orb { display: none; }
  .service-num { text-align: left; }

  .services-header,
  .clients-header { padding: 0 24px; }

  /* Pricing */
  .pricing-inner  { padding: 0 24px; }
  .pricing-grid   { grid-template-columns: 1fr; gap: 20px; }
  .pricing-section { padding: 80px 0; }

  /* Additional services */
  .additional-services { padding: 48px 24px; }
  .additional-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Footer */
  .footer-top  { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav  { justify-content: flex-start; gap: 48px; }
  .footer-inner { padding: 64px 24px 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Mobile (≤ 600px) ─────────────────────────────────────── */
@media (max-width: 600px) {
  /* Nav */
  .nav-inner         { padding: 0 20px; gap: 12px; }
  .nav-logo img      { height: 34px; }
  .nav-logo-full     { display: none; }
  .nav-logo-symbol   { display: block; height: 34px; width: auto; }
  .nav-contact-btn   { padding: 9px 16px; font-size: 0.82rem; }

  /* Hero — switch to flex-column so text and CTAs stack naturally */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
  }
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    /* bottom padding reserves space for hero-bottom (USP ~20px + gap 14px + 2 buttons ~110px + bottom offset 32px) */
    padding: 0 20px 220px 28px;
  }
  .hero-heading {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 0;
  }
  .hero-sub   { font-size: 0.9rem; margin-top: 18px; }

  /* USP + CTAs pinned to section bottom */
  .hero-bottom {
    bottom: 32px;
    gap: 14px;
    padding: 0 20px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* About */
  .about-section  { padding: 64px 0; }
  .about-inner    { padding: 0 20px; gap: 32px; }
  .about-heading  { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-top: 16px; }
  .about-body     { font-size: 0.95rem; }

  /* Stats */
  .stats-header-wrap { padding: 40px 20px 0; }
  .stats-context     { font-size: 0.9rem; }
  .stats-inner {
    max-width: 100%;
    padding: 48px 20px;
  }
  .stat-item   { padding: 16px 20px; }
  .stat-num,
  .stat-prefix { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .stat-label  { white-space: normal; font-size: 0.7rem; }

  /* Services */
  .services-section  { padding: 80px 0; }
  .services-header   { padding: 0 20px; margin-bottom: 48px; }
  .service-row,
  .service-row.reverse { padding: 32px 20px; gap: 14px; }
  .service-title     { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .service-desc      { font-size: 0.95rem; margin-bottom: 20px; }
  .service-title-row { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Pricing */
  .pricing-inner   { padding: 0 20px; }
  .pricing-section { padding: 64px 0; }
  .pricing-header  { margin-bottom: 48px; }
  .pricing-card    { padding: 28px 24px; }
  .service-pricing { flex-wrap: wrap; }

  /* Additional services */
  .additional-services { padding: 40px 20px; }
  .additional-grid     { grid-template-columns: 1fr; gap: 28px; padding-top: 32px; }
  .additional-title    { font-size: 1.25rem; }

  /* Clients */
  .clients-section { padding: 72px 0; }
  .clients-header  { padding: 0 20px; margin-bottom: 40px; }
  .clients-sub     { font-size: 0.9rem; }
  .client-logo     { padding: 0 28px; }
  .client-logo img { height: 36px; max-width: 120px; }

  /* CTA section */
  .cta-section  { padding: 80px 20px; }
  .cta-heading  { font-size: clamp(1.8rem, 7.5vw, 2.6rem); }
  .cta-sub      { font-size: 0.95rem; margin-bottom: 36px; }

  /* Footer */
  .footer-inner  { padding: 56px 20px 32px; }
  .footer-nav    { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
