/* =========================================================
   RENAUSH — style.css  (Futuristic Edition)
   Palette : Deep Navy · Orange · Teal Tech
   Fonts   : Syne (display) · DM Sans (body) · Space Mono (mono)
   ========================================================= */

/* ── 1. CSS VARIABLES ──────────────────────────────────── */
:root {
  /* Core navy */
  --navy:          #070D1A;
  --navy-dark:     #040810;
  --navy-mid:      #0C1528;
  --navy-light:    #162848;
  --navy-card:     rgba(12, 21, 40, 0.88);

  /* Brand accent — orange from logo */
  --accent:        #E8581A;
  --accent-light:  #FF6B2B;
  --accent-dark:   #C44A12;

  /* Tech accent — cyan/teal */
  --teal:          #00C8FF;
  --teal-dim:      rgba(0, 200, 255, 0.10);
  --teal-border:   rgba(0, 200, 255, 0.20);
  --teal-hover:    rgba(0, 200, 255, 0.35);

  /* Neutral */
  --white:         #FFFFFF;
  --off-white:     #F8F9FC;
  --gray-100:      #F1F4FA;
  --gray-200:      #E1E6F0;
  --gray-400:      #9BA5BE;
  --gray-600:      #5C6680;
  --text:          #1A2040;
  --text-light:    #5C6680;

  /* Fonts */
  --font-display:  'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'Space Mono', 'Courier New', monospace;

  /* Radii */
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(10, 22, 40, 0.07);
  --shadow:        0 6px 28px rgba(10, 22, 40, 0.12);
  --shadow-lg:     0 16px 56px rgba(10, 22, 40, 0.20);
  --glow-teal:     0 0 24px rgba(0, 200, 255, 0.25);
  --glow-accent:   0 0 24px rgba(232, 88, 26, 0.35);

  /* Motion */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    0.32s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container:     1200px;
  --header-h:      76px;
}

/* ── 2. CUSTOM SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar               { width: 5px; }
::-webkit-scrollbar-track         { background: var(--navy-dark); }
::-webkit-scrollbar-thumb         { background: linear-gradient(180deg, var(--accent), var(--teal)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover   { background: var(--teal); }

/* ── 3. SCROLL PROGRESS BAR ────────────────────────────── */
.scroll-progress-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 9999;
  background: rgba(255,255,255,.04);
}
.scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.7);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img    { display: block; max-width: 100%; height: auto; }
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: var(--font-body); font-size: 1rem; }

/* ── 5. TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.18; color: var(--text); }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--text-light); }
strong { color: var(--text); font-weight: 600; }

/* ── 6. LAYOUT UTILITIES ───────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding: clamp(72px, 10vw, 112px) 0; position: relative; overflow: hidden; }

/* Light section */
.section-alt { background: var(--gray-100); }
.section-alt::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,22,40,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.section-alt > .container { position: relative; z-index: 1; }

/* Dark section */
.section-dark { background: var(--navy); }
.section-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark .section-header h2,
.section-dark h2 { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,.6); }
.section-dark p  { color: rgba(255,255,255,.6); }

/* Section-header */
.section-header { text-align: center; max-width: 680px; margin: 0 auto clamp(48px,6vw,72px); }
.section-header h2 { margin-bottom: .75rem; }
.section-sub { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; }

/* Section labels — monospace terminal style */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-label::before { content: '//'; opacity: .55; }

.section-label-light {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-label-light::before { content: '//'; opacity: .5; }

/* ── 7. BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .75rem 1.625rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* Shimmer sweep on hover */
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.18) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(120%); }

.btn-lg    { padding: .9rem 2rem; font-size: 1rem; border-radius: 10px; }
.btn-block { width: 100%; }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(232, 88, 26, .3);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(232, 88, 26, .5);
}
/* Pulsing glow on large accent CTAs */
.hero-ctas .btn-accent,
.pos-text .btn-accent {
  animation: cta-pulse 3s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(232,88,26,.3), 0 0 0 0 rgba(232,88,26,.35); }
  50%      { box-shadow: 0 4px 20px rgba(232,88,26,.3), 0 0 0 12px rgba(232,88,26,0); }
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ── 8. SCROLL-REVEAL ANIMATIONS ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ── 9. HEADER / NAV ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(4, 8, 16, .9);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,200,255,.12), 0 4px 32px rgba(0,0,0,.45);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  background: rgba(255,255,255,0.96);
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.nav-logo:hover {
  box-shadow: 0 0 0 2px var(--teal);
}
.logo-img  { height: 40px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  padding: .45rem .85rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .85rem; right: .85rem;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover,
.nav-link.active { color: var(--teal); background: rgba(0,200,255,.06); }

.nav-cta        { margin-left: .75rem; flex-shrink: 0; }
.nav-cta-mobile { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 4px;
  margin-left: auto;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.bar {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7.5px)  rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── 10. HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Particle canvas sits above bg image */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(4,  8, 16, .95) 0%,
    rgba(7, 13, 26, .88) 55%,
    rgba(11,21, 38, .76) 100%
  );
}
/* Subtle scanlines */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,200,255,.012) 3px,
    rgba(0,200,255,.012) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* Blinking live-dot eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  padding: .35rem .9rem;
  background: rgba(0,200,255,.07);
  border: 1px solid rgba(0,200,255,.22);
  border-radius: 100px;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  flex-shrink: 0;
  animation: live-dot 1.6s step-end infinite;
}
@keyframes live-dot {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Headline */
.hero-headline { color: var(--white); margin-bottom: 1.25rem; }
.line-accent {
  background: linear-gradient(110deg, var(--accent-light) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter cursor */
.cursor-blink {
  display: inline-block;
  color: var(--teal);
  -webkit-text-fill-color: var(--teal);
  font-weight: 200;
  font-size: .85em;
  animation: cur-blink 1s step-end infinite;
  margin-left: 3px;
  vertical-align: baseline;
}
@keyframes cur-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255,255,255,.72);
  line-height: 1.76;
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero visual column */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.hero-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 24px 48px rgba(0,200,255,.12));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Terminal window */
.hero-terminal {
  width: 100%;
  max-width: 380px;
  background: rgba(4, 8, 18, 0.94);
  border: 1px solid rgba(0,200,255,.22);
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,.55), var(--glow-teal);
  font-family: var(--font-mono);
  font-size: .8rem;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .9rem;
  background: rgba(0,200,255,.05);
  border-bottom: 1px solid rgba(0,200,255,.1);
}
.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot.red    { background: #FF5F57; }
.t-dot.yellow { background: #FEBC2E; }
.t-dot.green  { background: #28C840; }
.t-title { margin-left: .5rem; font-size: .68rem; color: rgba(255,255,255,.35); letter-spacing: .06em; }

.terminal-body {
  padding: .9rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .28rem;
  min-height: 138px;
}
.terminal-body p {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  margin: 0;
  line-height: 1.5;
}
.t-prompt { color: var(--teal); margin-right: .4rem; }
.t-output { padding-left: 1rem; }
.t-green  { color: #28C840; }
.t-teal   { color: var(--teal); }
.t-accent { color: var(--accent-light); font-weight: 700; }
.t-cursor { color: var(--teal); animation: cur-blink 1s step-end infinite; padding-left: 1rem; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-arrow {
  display: block;
  width: 24px; height: 24px;
  border-right: 2.5px solid rgba(255,255,255,.4);
  border-bottom: 2.5px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── 11. ABOUT ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.about-image { position: relative; }
.about-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 540px;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow), var(--glow-accent);
}
.badge-num  { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-text { display: block; font-size: .74rem; font-weight: 600; opacity: .9; line-height: 1.4; margin-top: .2rem; }

.about-content .section-label { display: block; margin-bottom: .5rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-lead { font-size: 1.1rem; font-weight: 500; color: var(--text); margin-bottom: 1rem; line-height: 1.65; }
.about-content p { margin-bottom: 1rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  text-shadow: 0 0 22px rgba(0,200,255,.5);
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-light);
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

/* ── 12. SERVICES — dark glass cards ───────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card:nth-child(4) { grid-column: 1; }
.service-card:nth-child(5) { grid-column: 2; }

.service-card {
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--teal-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.service-card:hover {
  border-color: var(--teal-hover);
  box-shadow: 0 12px 48px rgba(0,200,255,.12), 0 0 0 1px rgba(0,200,255,.14);
  transform: perspective(1000px) translateY(-6px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.service-card-img { height: 200px; overflow: hidden; background: var(--navy-mid); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.service-icon {
  width: 42px; height: 42px;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}
.service-card:hover .service-icon { box-shadow: 0 0 16px rgba(0,200,255,.3); }
.service-icon svg { width: 20px; height: 20px; }

.service-card-body h3    { color: var(--white); margin-bottom: .2rem; }
.service-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: .7rem;
}
.service-card-body p { font-size: .925rem; color: rgba(255,255,255,.55); }

/* ── 13. WHAT WE BUILD — dark grid cards ───────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.industry-card {
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--teal-border);
  transition: var(--transition);
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  cursor: default;
}
.industry-card:hover {
  border-color: var(--teal-hover);
  box-shadow: 0 8px 32px rgba(0,200,255,.1);
  transform: perspective(800px) translateY(-5px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.industry-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: .9rem;
  filter: drop-shadow(0 0 8px rgba(0,200,255,.4));
  display: block;
}
.industry-card h4 { color: var(--white); margin-bottom: .4rem; font-size: 1rem; }
.industry-card p  { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ── 14. POS HIGHLIGHT ─────────────────────────────────── */
.pos-highlight { position: relative; overflow: hidden; padding: clamp(72px,10vw,112px) 0; }
.pos-highlight-bg { position: absolute; inset: 0; z-index: 0; }
.pos-highlight-bg img { width: 100%; height: 100%; object-fit: cover; }
.pos-highlight-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,8,16,.97) 0%, rgba(10,20,45,.93) 100%);
}
.pos-highlight-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.pos-text h2 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: .85rem; }
.pos-lead    { font-size: 1.05rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; line-height: 1.7; }

.pos-features { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.25rem; }
.pos-features li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: rgba(0,200,255,.04);
  border: 1px solid rgba(0,200,255,.12);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  transition: var(--transition);
}
.pos-features li:hover { background: rgba(0,200,255,.07); border-color: rgba(0,200,255,.28); border-left-color: var(--accent); }
.feature-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
.pos-features li div { display: flex; flex-direction: column; gap: .12rem; }
.pos-features li strong { color: var(--white); font-weight: 700; font-size: .9rem; }
.pos-features li span  { color: rgba(255,255,255,.55); font-size: .83rem; }

.pos-screen { position: relative; }
.pos-screen img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,.65), 0 0 60px rgba(0,200,255,.08);
  border: 1px solid rgba(0,200,255,.18);
}
/* Glow frame around POS screenshot */
.pos-screen::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(0,200,255,.3), rgba(232,88,26,.2), transparent 55%);
  z-index: -1;
  filter: blur(2px);
}

/* ── 15. WHY CHOOSE ────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  cursor: default;
}
.why-card:hover {
  border-color: rgba(0,200,255,.3);
  box-shadow: 0 8px 32px rgba(0,200,255,.08);
  transform: perspective(800px) translateY(-5px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 18px rgba(232,88,26,.25);
  transition: box-shadow var(--transition);
}
.why-card:hover .why-icon { box-shadow: 0 0 0 6px rgba(0,200,255,.1), 0 4px 24px rgba(0,200,255,.22); }
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.why-card p  { font-size: .925rem; line-height: 1.65; }

/* ── 16. PORTFOLIO ─────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,255,.22);
  box-shadow: 0 16px 48px rgba(0,200,255,.1);
}

.portfolio-card-img { position: relative; height: 240px; overflow: hidden; background: var(--gray-100); }
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(4, 8, 16, .72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-view {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: .6rem 1.4rem;
  border-radius: 7px;
  letter-spacing: .04em;
  box-shadow: 0 0 20px rgba(0,200,255,.35);
}

.portfolio-card-body { padding: 1.5rem; }
.portfolio-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--accent);
  margin-bottom: .4rem;
}
.portfolio-card-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.portfolio-card-body p  { font-size: .9rem; }

/* ── 17. CONTACT ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info .section-label { display: block; margin-bottom: .5rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-lead { font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-details li div { display: flex; flex-direction: column; gap: .15rem; padding-top: .25rem; }
.contact-details li strong { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text); }
.contact-details li a,
.contact-details li span { font-size: .95rem; color: var(--text-light); transition: color var(--transition); }
.contact-details li a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group   { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
  font-family: var(--font-mono);
  font-size: .73rem;
  color: var(--text);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,200,255,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); font-family: var(--font-body); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select   { appearance: none; cursor: pointer; }
.form-note        { font-size: .875rem; text-align: center; min-height: 1.25em; margin-top: -.5rem; }
.form-note.success { color: #16a34a; }
.form-note.error   { color: #dc2626; }

/* ── 18. FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding-top: clamp(56px, 8vw, 88px);
  position: relative;
}
/* Top border glow line */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
  opacity: .35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  padding: 4px 10px;
}
.footer-brand p { font-size: .9rem; line-height: 1.65; max-width: 280px; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,200,255,.35);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a  { font-size: .9rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-contact p,
.footer-contact a {
  font-size: .9rem; line-height: 1.65;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  display: block; margin-bottom: .4rem;
}
.footer-contact a:hover { color: var(--teal); }

.footer-bottom { padding: 1.4rem 0; text-align: center; }
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .04em;
}

/* ── 19. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }
  .service-card:nth-child(5) { grid-column: 1 / -1; max-width: 520px; margin-inline: auto; }

  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 520px; margin-inline: auto; }
  .about-badge { right: 0; }

  .pos-highlight-content { grid-template-columns: 1fr; }
  .pos-screen { max-width: 680px; margin-inline: auto; }

  /* Hide terminal on tablets — too cramped */
  .hero-terminal { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }

  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  .nav-links {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(4, 8, 16, .97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0,200,255,.1);
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 12px 40px rgba(0,0,0,.55);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: .8rem 1rem; border-radius: 8px; font-size: 1rem; }
  .nav-links .nav-cta-mobile {
    display: inline-flex;
    margin-top: .75rem;
    text-align: center;
    justify-content: center;
  }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual  { display: none; }
  .hero-ctas    { justify-content: center; }
  .hero-sub     { margin-inline: auto; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(5) { max-width: 100%; grid-column: auto; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid  { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }

  .about-stats { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .about-stats     { flex-direction: column; gap: 1rem; }
  .hero-ctas       { flex-direction: column; align-items: center; }
  .btn-lg          { width: 100%; max-width: 320px; }
}

/* ═══════════════════════════════════════════════════════
   NEW FUTURISTIC SECTIONS & ELEMENTS
═══════════════════════════════════════════════════════ */

/* ── PRELOADER ─────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 280px;
}
.preloader-logo {
  height: 60px;
  width: auto;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 6px 14px;
  animation: preloader-pulse 1.5s ease-in-out infinite;
}
@keyframes preloader-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,200,255,.4); }
  50%      { box-shadow: 0 0 0 16px rgba(0,200,255,0); }
}
.preloader-bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  border-radius: 2px;
  transition: width .05s linear;
  box-shadow: 0 0 10px rgba(0,200,255,.6);
}
.preloader-status {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
  text-align: center;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot,
.cursor-ring { position: fixed; pointer-events: none; z-index: 99998; border-radius: 50%; }

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
  transform: translate(-50%, -50%);
  transition: transform .05s ease, background .2s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,200,255,.5);
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .2s ease, height .2s ease, border-color .2s ease;
}
.cursor-hover .cursor-dot  { background: var(--accent); box-shadow: 0 0 12px var(--accent); transform: translate(-50%,-50%) scale(1.8); }
.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: rgba(232,88,26,.5); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── COOKIE CONSENT ────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(4, 8, 16, .97);
  border-top: 1px solid rgba(0,200,255,.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-bar.hidden { transform: translateY(110%); pointer-events: none; }
.cookie-bar p { font-size: .875rem; color: rgba(255,255,255,.65); margin: 0; flex: 1; min-width: 200px; }
.cookie-actions { display: flex; gap: .75rem; align-items: center; flex-shrink: 0; }
.cookie-decline {
  font-family: var(--font-body);
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  transition: color var(--transition);
}
.cookie-decline:hover { color: var(--white); }

/* ── PROCESS / HOW WE WORK ─────────────────────────────── */
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  opacity: .25;
  z-index: 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,200,255,.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: default;
}
.process-step:hover {
  border-color: rgba(0,200,255,.32);
  background: rgba(0,200,255,.06);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,200,255,.1);
}
.step-num {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .12em;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.2);
  padding: .25rem .6rem;
  border-radius: 100px;
}
.step-icon { font-size: 2.2rem; line-height: 1; filter: drop-shadow(0 0 8px rgba(0,200,255,.35)); }
.process-step h3 { color: var(--white); font-size: 1rem; margin: 0; }
.process-step p  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,200,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: rgba(0,200,255,.08);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(0,200,255,.3);
  background: rgba(0,200,255,.06);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,200,255,.1);
}
.t-stars { color: #FFB800; font-size: 1.05rem; letter-spacing: .1em; }
.t-quote { font-size: .95rem; color: rgba(255,255,255,.72); line-height: 1.75; font-style: italic; margin: 0; flex: 1; }
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-info { display: flex; flex-direction: column; gap: .15rem; }
.t-info strong { font-size: .9rem; color: var(--white); font-weight: 700; }
.t-info span   { font-size: .8rem; color: rgba(255,255,255,.45); font-family: var(--font-mono); letter-spacing: .04em; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--teal); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: var(--white);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.faq-item.open .faq-q { color: var(--teal); background: rgba(0,200,255,.04); }
.faq-q:hover { color: var(--teal); background: rgba(0,200,255,.03); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  background: var(--white);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* ── FLOATING WHATSAPP BUTTON ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .6);
  animation: none;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.35); }
  50%      { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .4rem .8rem;
  border-radius: 6px;
  border: 1px solid rgba(0,200,255,.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── BACK TO TOP ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 8000;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(4,8,16,.92);
  color: var(--teal);
  border: 1.5px solid rgba(0,200,255,.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal);
  color: var(--navy-dark);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,200,255,.35);
}

/* ── RESPONSIVE FOR NEW SECTIONS ───────────────────────── */
@media (max-width: 1024px) {
  .process-steps        { grid-template-columns: repeat(3, 1fr); }
  .process-line         { display: none; }
  .testimonials-grid    { grid-template-columns: 1fr; max-width: 580px; margin-inline: auto; }
}
@media (max-width: 768px) {
  .process-steps     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cookie-bar        { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .whatsapp-float    { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .back-to-top       { bottom: 5.5rem; right: 1.25rem; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── PRICING SECTION ───────────────────────────────────── */

/* Region tab toggles */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,200,255,.12);
  border-radius: 100px;
  padding: .35rem;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.pricing-tab {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  padding: .65rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: .02em;
}
.pricing-tab:hover { color: rgba(255,255,255,.85); }
.pricing-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--teal));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,88,26,.3);
}
.tab-currency {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 400;
  opacity: .8;
  letter-spacing: .06em;
  background: rgba(0,0,0,.2);
  padding: .15rem .45rem;
  border-radius: 4px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-grid:not(.active) { display: none; }

/* Card */
.pricing-card {
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,200,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  border-color: rgba(0,200,255,.32);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,200,255,.1);
}

/* Featured card */
.pricing-card--featured {
  border-color: var(--accent);
  background: rgba(232,88,26,.06);
  box-shadow: 0 8px 40px rgba(232,88,26,.12);
}
.pricing-card--featured:hover {
  border-color: var(--accent-light);
  box-shadow: 0 16px 56px rgba(232,88,26,.2);
}
.pricing-badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: .25rem .65rem;
  border-radius: 100px;
}

/* Card header */
.pricing-card-header { display: flex; flex-direction: column; gap: .4rem; }
.pricing-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(0,200,255,.35));
  margin-bottom: .2rem;
}
.pricing-card-header h3  { color: var(--white); font-size: 1.1rem; margin: 0; }
.pricing-desc {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Price display — fixed price */
.pricing-amount {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1.25rem;
  background: rgba(0,200,255,.06);
  border: 1px solid rgba(0,200,255,.14);
  border-radius: var(--radius);
}
.pricing-from {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.pricing-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-note {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* Price display — contact us */
.pricing-amount--contact {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.pricing-contact-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.pricing-contact-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
}

/* Feature list */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* Outline teal button */
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid rgba(0,200,255,.4);
}
.btn-outline-teal:hover {
  background: rgba(0,200,255,.1);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,200,255,.2);
}

/* Bottom note */
.pricing-note-bottom {
  text-align: center;
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  margin-top: 2.5rem;
}
.pricing-note-bottom a { color: var(--teal); text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-tabs  { width: 100%; border-radius: var(--radius); flex-direction: row; }
  .pricing-tab   { flex: 1; justify-content: center; padding: .65rem .75rem; font-size: .85rem; }
}

/* ── NEWSLETTER ────────────────────────────────────────── */
.newsletter-section {
  position: relative;
  padding: clamp(64px, 9vw, 96px) 0;
  overflow: hidden;
  background: var(--navy-dark);
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(232,88,26,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 50%, rgba(0,200,255,.1) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.newsletter-text .section-label-light { display: block; margin-bottom: .5rem; }
.newsletter-text h2 { color: var(--white); margin-bottom: .85rem; }
.newsletter-text p  { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; }

.nl-input-wrap {
  display: flex;
  gap: .6rem;
  margin-bottom: .75rem;
}
.nl-input-wrap input {
  flex: 1;
  padding: .85rem 1.1rem;
  border: 1.5px solid rgba(0,200,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: var(--transition);
  min-width: 0;
}
.nl-input-wrap input::placeholder { color: rgba(255,255,255,.35); }
.nl-input-wrap input:focus {
  border-color: var(--teal);
  background: rgba(0,200,255,.06);
  box-shadow: 0 0 0 3px rgba(0,200,255,.1);
}
.nl-privacy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin-bottom: .5rem;
  font-family: var(--font-mono);
  letter-spacing: .03em;
}
.nl-status { font-size: .875rem; min-height: 1.2em; }
.nl-status.success { color: #4ade80; }
.nl-status.error   { color: #f87171; }

.nl-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.nl-stat {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .nl-input-wrap    { flex-direction: column; }
  .nl-input-wrap .btn { width: 100%; }
  .nl-stats         { gap: 1rem; }
}

/* ── FORM RESULT TOAST ─────────────────────────────────── */
.form-toast {
  position: fixed;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9500;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  min-width: 280px;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  animation: toast-in .35s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.form-toast--success {
  background: #052e16;
  color: #86efac;
  border: 1px solid #16a34a;
}
.form-toast--error {
  background: #2d0a0a;
  color: #fca5a5;
  border: 1px solid #dc2626;
}
.form-toast span   { flex: 1; }
.form-toast button {
  background: none;
  border: none;
  color: inherit;
  opacity: .6;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.form-toast button:hover { opacity: 1; }
