/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --orange:    #FF6B00;
  --orange-lt: #FF8C35;
  --orange-dk: #CC5500;
  --night:     #0A0C0F;
  --dark:      #111318;
  --card:      #181C23;
  --border:    #252B35;
  --muted:     #6B7A8F;
  --text:      #C8D4E0;
  --white:     #F0F4F8;
  --pure:      #FFFFFF;

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-head:    'Space Grotesk', sans-serif;
  --ff-body:    'Outfit', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 140px);
  --radius: 8px;
  --glow: 0 0 40px rgba(255,107,0,0.15);
}

/* ═══════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--night);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#preloader::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 45%, rgba(255,107,0,0.12), transparent 52%),
    radial-gradient(circle at 68% 55%, rgba(255,107,0,0.07), transparent 48%);
  animation: preGlow 1.1s ease-in-out infinite alternate;
  pointer-events: none;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
@keyframes preGlow {
  from { opacity: 0.45; transform: scale(1); }
  to   { opacity: 0.9;  transform: scale(1.02); }
}

.preloader-img {
  width: 280px;
  height: auto;
  opacity: 0;
  animation: preloaderImgIn 300ms ease forwards, preBounce 600ms cubic-bezier(0.2, 0.9, 0.2, 1) 300ms infinite alternate;
}
@keyframes preloaderImgIn {
  to { opacity: 1; }
}
@keyframes preBounce {
  from { transform: translateY(0)    scale(1); }
  to   { transform: translateY(-3px) scale(1.015); }
}

.preloader-bar {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 55%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: translateX(-120%);
  animation: preSweep 680ms cubic-bezier(0.2, 0.9, 0.2, 1) infinite;
}
@keyframes preSweep {
  0%   { transform: translateX(-120%); opacity: 0.7; }
  100% { transform: translateX(240%);  opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  #preloader::before,
  .preloader-img,
  .preloader-bar-fill { animation: none !important; }
  .preloader-img      { opacity: 1 !important; }
}

/* ═══════════════════════════════════════════════════════
   HERO SYNC — gates hero animations until body.loaded
═══════════════════════════════════════════════════════ */
body:not(.loaded) .hero-eyebrow,
body:not(.loaded) .hero-title,
body:not(.loaded) .hero-logo,
body:not(.loaded) .hero-desc,
body:not(.loaded) .hero-actions,
body:not(.loaded) .hero-stats,
body:not(.loaded) .scroll-indicator {
  animation: none !important;
  opacity: 0 !important;
  transform: translateY(18px) !important;
}
body.loaded .hero-eyebrow    { animation: fadeUp 0.55s 0.05s cubic-bezier(0.2,0.9,0.2,1) forwards; }
body.loaded .hero-title      { animation: fadeUp 0.55s 0.12s cubic-bezier(0.2,0.9,0.2,1) forwards; }
body.loaded .hero-logo       { animation: fadeUp 0.55s 0.18s cubic-bezier(0.2,0.9,0.2,1) forwards; }
body.loaded .hero-desc       { animation: fadeUp 0.55s 0.24s cubic-bezier(0.2,0.9,0.2,1) forwards; }
body.loaded .hero-actions    { animation: fadeUp 0.55s 0.32s cubic-bezier(0.2,0.9,0.2,1) forwards; }
body.loaded .hero-stats      { animation: fadeUp 0.55s 0.40s cubic-bezier(0.2,0.9,0.2,1) forwards; }
body.loaded .scroll-indicator { animation: fadeIn 0.6s 0.48s ease forwards; }

/* ═══════════════════════════════════════════════════════
   PAGE TRANSITION OVERLAY
═══════════════════════════════════════════════════════ */
#pageTransition {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,107,0,0.09), transparent 55%),
    rgba(10,12,15,0.65);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 150ms ease;
}
#pageTransition.show { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   LOGO IMG (nav + footer)
═══════════════════════════════════════════════════════ */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.nav-logo:hover .logo-img {
  filter: drop-shadow(0 0 12px rgba(255,107,0,0.4));
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .logo-img { height: 44px; }
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--night);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════ */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.accent { color: var(--orange); }
.tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 40px;
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--pure);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(10,12,15,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
}
#drawer.open { display: flex; }
#drawer a {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
#drawer a:hover { color: var(--orange); padding-left: 8px; }
#drawer .drawer-cta { margin-top: 32px; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* ── Hero carousel ── */
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.hero-slide.active  { opacity: 1; }
.hero-slide.leaving { opacity: 0; }

/* Image slides */
.hero-slide--img .hero-slide-inner {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  animation: heroPan 12s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.06) translateX(0); }
  to   { transform: scale(1.12) translateX(-3%); }
}

/* Video slides */
.hero-video {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  animation: heroPan 14s ease-in-out infinite alternate;
}
.hero-slide--video.active .hero-video {
  animation-play-state: running;
}
.hero-slide--video:not(.active) .hero-video {
  animation-play-state: paused;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  background: rgba(10,12,15,0.45);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 8px 14px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, width 0.3s;
}
.hero-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  width: 24px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide--img .hero-slide-inner { animation: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,12,15,0.95) 0%,
    rgba(10,12,15,0.75) 50%,
    rgba(10,12,15,0.3) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--night), transparent);
}
.hero-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
  opacity: 0;
  animation: lineReveal 1s 0.5s ease forwards;
}
@keyframes lineReveal {
  from { height: 0; opacity: 1; }
  to   { height: 100%; opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  padding-bottom: 72px;
  max-width: 1000px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-eyebrow span {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(58px, 9vw, 110px);
  line-height: 0.92;
  color: var(--pure);
  letter-spacing: 1px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
  flex-shrink: 0;
}
.hero-logo {
  height: clamp(240px, calc(clamp(58px, 9vw, 110px) * 0.92 * 5.6), 570px);
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-title .outline-text {
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
}
.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
}
.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  gap: 0;
  background: rgba(24,28,35,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s ease forwards;
}
.hero-stat {
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  min-width: 100px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: max(40px, 4%);
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
  z-index: 2;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 0.5; } }
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--ff-head);
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pure);
  white-space: nowrap;
}
.ticker-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
#about {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'TVECO';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 280px;
  color: rgba(255,107,0,0.03);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
}
.about-img-inner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, rgba(10,12,15,0.1) 0%, rgba(10,12,15,0.5) 100%),
    url('../assets/images/office-background.jpg') center top/cover no-repeat;
}
.about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.35);
  transform-origin: center 50%;
  transition: transform 0.5s, filter 0.5s;
  filter: drop-shadow(12px 16px 24px rgba(0,0,0,0.7));
}
.about-img-inner:hover img {
  transform: scale(1.4);
  transform-origin: center 50%;
  filter: drop-shadow(16px 20px 32px rgba(0,0,0,0.8));
}
.about-img-frame {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--orange);
  border-radius: 12px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.about-badge-card .big {
  font-family: var(--ff-display);
  font-size: 42px;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.about-badge-card small {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.about-content .section-sub { margin-bottom: 32px; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  align-items: stretch;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.pillar-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
.pillar h4 {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════ */
#stats {
  padding: 60px 0;
  background: var(--night);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5vw, 64px);
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--ff-head);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 8px;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
#services {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.services-grid .service-card:nth-child(-n+6) {
  grid-column: span 2;
}
.services-grid .service-card:nth-child(7) {
  grid-column: 2 / 4;
}
.services-grid .service-card:nth-child(8) {
  grid-column: 4 / 6;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 30px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-6px);
  box-shadow: var(--glow), 0 20px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--ff-display);
  font-size: 52px;
  color: rgba(255,107,0,0.1);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,107,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(255,107,0,0.2); }
.service-card h3 {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
#process {
  padding: var(--section-pad) 0;
  background: var(--night);
  position: relative;
  overflow: hidden;
}
.process-header { text-align: center; margin-bottom: 70px; }
.process-header .section-sub { margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(10% + 36px);
  right: calc(10% + 36px);
  height: 1px;
  background: linear-gradient(to right, var(--orange), rgba(255,107,0,0.2) 40%, rgba(255,107,0,0.2) 60%, var(--orange));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-circle {
  width: 72px;
  height: 72px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.process-step:hover .step-circle {
  border-color: var(--orange);
  background: rgba(255,107,0,0.1);
}
.step-emoji { font-size: 28px; }
.process-step h4 {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   WHY TVEC
═══════════════════════════════════════════════════════ */
#why {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image-main {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
}
.why-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.why-image-main:hover img { transform: scale(1.04); }
.why-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 3px solid var(--dark);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.why-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.why-point:hover { border-color: var(--orange); }
.why-point-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,107,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-point-text h4 {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-point-text p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--night);
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-sub { margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 80px;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: var(--orange); font-size: 14px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255,107,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.author-info span { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
#cta-banner {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(255,107,0,0.12) 0%, transparent 60%),
    var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,107,0,0.08), transparent);
  pointer-events: none;
}
.cta-banner-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--pure);
  line-height: 1;
  margin-bottom: 20px;
}
.cta-banner-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
#faq {
  padding: var(--section-pad) 0;
  background: var(--night);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--card);
  transition: background 0.2s;
  gap: 16px;
}
.faq-q:hover { background: var(--border); }
.faq-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255,107,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  background: var(--card);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-grid--form-only {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
  gap: 32px;
}
.contact-form-intro { text-align: center; }
.contact-form-intro .section-sub { margin: 0 auto; }
.contact-info .section-sub { margin-bottom: 40px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--orange); }
.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,107,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card-text strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-card-text a,
.contact-card-text span {
  font-size: 15px;
  color: var(--white);
  transition: color 0.2s;
}
.contact-card-text a:hover { color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}
.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
  border-color: #48bb78;
}
.error-msg {
  font-family: var(--ff-head);
  font-size: 12px;
  color: #e53e3e;
  display: none;
  margin-top: -2px;
}
.form-group.error .error-msg { display: block; }
.form-submit {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-note { font-size: 13px; color: var(--muted); }

.form-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.form-thanks.visible {
  opacity: 1;
  transform: translateY(0);
}
.form-thanks[hidden] { display: none; }
.form-thanks-inner {
  text-align: center;
  padding: 48px 32px;
  background: var(--card);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(255,107,0,0.08);
  max-width: 460px;
  width: 100%;
}
.form-thanks-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,107,0,0.12);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--orange);
  margin: 0 auto 24px;
  animation: thanksPop 0.4s 0.2s cubic-bezier(0.2,0.9,0.2,1) both;
}
@keyframes thanksPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.form-thanks-inner h3 {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.form-thanks-inner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.form-thanks-inner strong { color: var(--orange); }
.form-thanks-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════════ */
#location {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.location-top {
  padding: var(--section-pad) 0 48px;
}
.location-header {
  text-align: center;
  margin-bottom: 48px;
}
.location-header .section-sub {
  margin: 0 auto;
}
.location-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}
.location-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.location-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}
.location-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,107,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.location-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.location-card span,
.location-card a {
  font-size: 14px;
  color: var(--white);
  line-height: 1.55;
}
.location-card a:hover { color: var(--orange); }

.location-map-wrap {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.location-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.4s;
}
.location-map-wrap:hover .location-map {
  filter: grayscale(0%) contrast(1);
}
.location-map-overlay-left {
  display: none;
}
.location-map-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  background: var(--orange);
  color: var(--pure);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}
.location-map-btn:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.45);
}

@media (max-width: 1024px) {
  .location-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .location-cards   { grid-template-columns: 1fr 1fr; }
  .location-map-wrap { height: 360px; }
  .location-map-overlay-left { display: none; }
}
@media (max-width: 480px) {
  .location-cards   { grid-template-columns: 1fr; }
  .location-map-wrap { height: 300px; }
  .location-map-btn  { bottom: 16px; right: 16px; font-size: 12px; padding: 10px 16px; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  background: var(--night);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.social-btn:hover { border-color: var(--orange); background: rgba(255,107,0,0.1); }
.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.mrh-logo-link { display: inline-flex; align-items: center; vertical-align: middle; }
.mrh-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mrh-logo-link:hover .mrh-logo-img {
  opacity: 1;
  transform: scale(1.05);
}
.footer-bottom span { color: var(--orange); }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* ── Tablet landscape (≤1024px) ── */
@media (max-width: 1024px) {
  .about-pillars         { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid { gap: 48px; }

  /* About badge — pull in from edge so it doesn't overflow */
  .about-badge-card      { right: 0; bottom: 0; }

  /* Why float image — move so it doesn't overflow container right edge */
  .why-image-float       { right: 0; bottom: -20px; }

  .services-grid                          { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card            { grid-column: span 1 !important; }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .process-steps         { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }

  /* Testimonials — drop to 2 columns at tablet to reduce crowding */
  .testimonials-grid     { grid-template-columns: 1fr 1fr; }

  /* Nav — tighten link gap to reduce overflow risk */
  .nav-links { gap: 20px; }
}

/* ── Nav collapses to hamburger at 900px ── */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-cta .btn-primary { font-size: 13px; padding: 10px 18px; }
  #hamburger  { display: flex; }
}

/* ── Tablet portrait / large phones (≤768px) ── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --section-pad: clamp(60px, 8vw, 100px);
  }

  /* Hero — stronger overlay for portrait readability */
  .hero-overlay {
    background: linear-gradient(
      175deg,
      rgba(10,12,15,0.97) 0%,
      rgba(10,12,15,0.88) 55%,
      rgba(10,12,15,0.55) 100%
    );
  }
  .hero-title-row    { flex-direction: column; align-items: center; gap: 20px; }
  .hero-logo         { height: clamp(160px, 42vw, 260px); }
  .hero-eyebrow span { font-size: 11px; letter-spacing: 2px; }
  .hero-stats        { display: none; }
  .hero-content      { text-align: center; padding-bottom: 80px; }
  .hero-eyebrow      { justify-content: center; }
  .hero-desc         { margin-bottom: 28px; margin-left: auto; margin-right: auto; }
  .hero-actions      { justify-content: center; }
  .scroll-indicator  { display: none; }
  /* Move dots to the very bottom edge, clear of stacked buttons */
  .hero-dots         { bottom: 20px; }

  /* About */
  .about-grid, .why-grid,
  .contact-grid, .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-img-inner            { aspect-ratio: 4/5; }
  /* Prevent badge card from clipping past viewport edge */
  .about-badge-card           { bottom: 16px; right: 16px; }
  .about-content              { text-align: center; }
  .about-content .tag         { display: block; }
  .about-content .section-sub { margin-left: auto; margin-right: auto; }
  .about-pillars              { justify-items: center; }

  /* Section headings — centre on mobile */
  .tag                        { display: block; text-align: center; }
  .section-title              { text-align: center; }
  .section-sub                { margin-left: auto; margin-right: auto; text-align: center; }

  /* Process header */
  .process-header             { text-align: center; }

  /* Why TVEC */
  .reveal-right               { text-align: center; }
  .reveal-right .section-title,
  .reveal-right .tag          { text-align: center; }
  .why-points                 { text-align: left; }

  /* Testimonials header */
  .testimonials-header        { text-align: center; }

  /* CTA banner */
  .cta-banner-title           { text-align: center; }
  .cta-banner-sub             { text-align: center; }

  /* FAQ */
  .faq-layout > div:first-child { text-align: center; }

  /* Contact */
  .reveal-left                { text-align: center; }
  .reveal-left .section-title,
  .reveal-left .tag           { text-align: center; }
  .contact-cards              { text-align: left; }

  /* Footer */
  .footer-brand               { text-align: center; align-items: center; display: flex; flex-direction: column; }
  .footer-col                 { text-align: center; }

  /* Why — switch from tall portrait to landscape ratio on mobile */
  .why-image-main  { aspect-ratio: 16/9; }
  .why-image-float { display: none; }

  /* Services */
  .services-header { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .services-grid   { grid-template-columns: 1fr; }
  .services-grid .service-card { grid-column: span 1 !important; }

  /* Stats */
  .stats-grid                         { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2)             { border-right: none; }
  .stat-item:nth-child(3)             { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4)             { border-top: 1px solid var(--border); }

  /* Process — 3 + 2 layout; centre both orphan steps in row 2 */
  .process-steps {
    grid-template-columns: repeat(6, 1fr);
    row-gap: 40px;
  }
  .process-step:nth-child(1) { grid-column: 1 / 3; }
  .process-step:nth-child(2) { grid-column: 3 / 5; }
  .process-step:nth-child(3) { grid-column: 5 / 7; }
  .process-step:nth-child(4) { grid-column: 2 / 4; }
  .process-step:nth-child(5) { grid-column: 4 / 6; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact / form */
  .form-row { grid-template-columns: 1fr; }
  /* Prevent iOS Safari auto-zoom on input focus (needs ≥16px) */
  .form-group input,
  .form-group select,
  .form-group textarea  { font-size: 16px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand p     { max-width: 100%; }
  .footer-social      { justify-content: center; }
  .footer-bottom      { flex-direction: column; text-align: center; }

  /* Larger touch targets for social buttons */
  .social-btn { width: 44px; height: 44px; }
}

/* ── Standard phones (≤480px) ── */
@media (max-width: 480px) {
  :root { --section-pad: 60px; }

  /* Hero */
  .hero-title    { font-size: clamp(46px, 13vw, 64px); text-align: center; }
  .hero-logo     { height: clamp(168px, 50vw, 238px); align-self: center; }
  /* Stack CTA buttons full-width for easier tapping */
  .hero-actions                { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline   { width: 100%; justify-content: center; }

  /* Slightly smaller section titles to give body text more room */
  .section-title    { font-size: clamp(34px, 9vw, 50px); }
  .cta-banner-title { font-size: clamp(32px, 9vw, 50px); }

  /* Section sub — allow full width on narrow phones */
  .section-sub { max-width: 100%; }

  /* CTA banner — reduce vertical padding on mobile */
  #cta-banner { padding: 64px 0; }

  /* Service / testimonial cards — tighter padding on mobile */
  .service-card      { padding: 24px 20px; }
  .testimonial-card  { padding: 24px 20px; }

  /* WhatsApp tooltip — hidden on mobile (tooltip UX doesn't suit touch) */
  .wa-tooltip        { display: none; }

  /* About watermark — scale down to reduce reflow risk on mobile */
  #about::before     { font-size: 120px; }

  /* About badge — compact on tiny screens */
  .about-badge-card      { padding: 14px 18px; right: 8px; bottom: 8px; }
  .about-badge-card .big { font-size: 32px; }

  /* About pillars — keep 2-column so align-items: stretch equalises row heights */
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .pillar        { text-align: center; min-height: 140px; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Process — single column, reset orphan centering */
  .process-steps                 { grid-template-columns: 1fr; }
  .process-step:nth-child(1),
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4),
  .process-step:nth-child(5)     { grid-column: auto; }
  .process-steps::before         { display: none; }

  /* CTA banner — full-width stacked buttons */
  .cta-actions               { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline  { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  /* Drop nav CTA entirely to avoid crowding */
  .nav-cta          { display: none; }
  .hero-title       { font-size: 40px; }
  .hero-logo        { height: 140px; }
  .hero-eyebrow span { letter-spacing: 1px; font-size: 10px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-slide--img .hero-slide-inner,
  .ticker-inner          { animation: none !important; }
  .scroll-dot            { animation: none !important; }
}
