*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f7f8fa;
  --bg2: #ffffff;
  --border: rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.11);
  --text: #0d0f14;
  --muted: #6b7080;
  --cyan: #42FDC3;
  --cyan-dark: #009e8a;
  --yellow: #FFF655;
  --yellow-dark: #010101;
  --grad: linear-gradient(120deg, var(--cyan), var(--yellow));
  --grad-text: linear-gradient(120deg, var(--cyan), var(--yellow));
  --grad-subtle: linear-gradient(120deg, rgba(0,196,171,0.10), rgba(232,216,32,0.10));
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; }

body {
background: var(--bg);
color: var(--text);
font-family: 'DM Sans', sans-serif;
font-weight: 300;
line-height: 1.65;
overflow-x: hidden;
}
body img {
  width: 100%;
} 

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(247,248,250,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s;
}

/*animation bg*/
.circle-box {
  position: relative;
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -10;
}
.circle-box .circle {
  position: absolute;
  width: 500px;
  height: 40vh;
  background-color: rgba(255, 246, 85, 0.85);
  border-radius: 50%;
  filter: blur(4em);
  -webkit-animation: circle 20s ease-in-out infinite;
          animation: circle 20s ease-in-out infinite;
}
@-webkit-keyframes circle {
  0% {
    transform: translate(0vh, 100vh);
  }
  50% {
    background-color: rgba(3, 255, 230, 0.5);
    transform: translate(100vh, 50vh);
    transform: scale(2);
  }
  100% {
    transform: translate(0vh, 100vh);
  }
}
@keyframes circle {
  0% {
    transform: translate(0vh, 100vh);
  }
  50% {
    background-color: rgba(3, 255, 230, 0.5);
    transform: translate(100vh, 50vh);
    transform: scale(2);
  }
  100% {
    transform: translate(0vh, 100vh);
  }
}
.circle-box .circle2 {
  position: absolute;
  width: 500px;
  height: 40vh;
  background-color: rgba(3, 255, 230, 0.5);
  border-radius: 50%;
  filter: blur(4em);
  -webkit-animation: circle2 30s ease-in-out infinite;
          animation: circle2 30s ease-in-out infinite;
  transform: translate(0%, 0%);
}
@-webkit-keyframes circle2 {
  0% {
    top: 0vh;
    left: -20%;
    transform: scale(0.2);
    opacity: 0.2;
  }
  50% {
    top: 100vh;
    left: 100%;
    background-color: rgba(255, 246, 85, 0.85);
    transform: scale(2.5);
    opacity: 1;
  }
  100% {
    top: 0vh;
    left: 0%;
    transform: scale(0.2);
    opacity: 0;
  }
}
@keyframes circle2 {
  0% {
    top: 0vh;
    left: -20%;
    transform: scale(0.2);
    opacity: 0.2;
  }
  50% {
    top: 100vh;
    left: 100%;
    background-color: rgba(255, 246, 85, 0.85);
    transform: scale(2.5);
    opacity: 1;
  }
  100% {
    top: 0vh;
    left: 0%;
    transform: scale(0.2);
    opacity: 0;
  }
}
.circle-box .circle3 {
  position: absolute;
  top: 30vh;
  right: 0vh;
  width: 300px;
  height: 300px;
  background-color: rgba(3, 255, 230, 0.5);
  border-radius: 50%;
  filter: blur(4em);
  -webkit-animation: circle3 10s ease-in-out infinite;
          animation: circle3 10s ease-in-out infinite;
  transform: translate(0%, 0%);
}
@-webkit-keyframes circle3 {
  0% {
    transform: translate(100vh, 100vh);
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    right: 50vh;
    transform: translate(0vh, 0vh);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translate(100vh, 100vh);
    transform: scale(0.9);
    opacity: 0;
  }
}
@keyframes circle3 {
  0% {
    transform: translate(100vh, 100vh);
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    right: 50vh;
    transform: translate(0vh, 0vh);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: translate(100vh, 100vh);
    transform: scale(0.9);
    opacity: 0;
  }
}
/*animation bg*/
/*.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}*/
.logo {
  width: 190px;
  border: solid 1px red;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  font-weight: 500 !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.875rem !important;
  box-shadow: 0 2px 14px rgba(0,196,171,0.28);
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.87; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10px; right: -80px;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,196,171,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 35%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,216,32,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-left { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.77rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.6s ease both;
}

.badge-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: white;
  flex-shrink: 0;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -2px;
  animation: fadeUp 0.6s 0.08s ease both;
}
h1 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: var(--shadow-sm);
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 440px;
  margin-top: 1.4rem;
  line-height: 1.75;
  animation: fadeUp 0.6s 0.16s ease both;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.24s ease both;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,196,171,0.32);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,196,171,0.38); }

.btn-ghost {
  background: var(--bg2);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: rgba(0,0,0,0.2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  animation: fadeUp 0.6s 0.32s ease both;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid white;
  overflow: hidden;
  margin-left: -9px;
  flex-shrink: 0;
}
.trust-avatars .trust-avatar:first-child { margin-left: 0; }
.trust-avatar img { width: 100%; height: 100%; object-fit: cover; }
.trust-text { font-size: 0.8rem; color: var(--muted); }
.trust-text strong { color: var(--text); font-weight: 500; }

/* Hero right */
.hero-right {
  position: relative;
  z-index: 1;
  height: 100vh;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-media-main {
  position: absolute;
  top: 0; left: 0; right: 55px; bottom: 55px;
 /*border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);*/
}
.hero-media-main video, .hero-media-main img {
  width: 100%; height: 100%; object-fit: contain;
  /*border: solid 1px red;*/
}

.hero-media-small {
  position: absolute;
  bottom: 0; right: 0;
  width: 195px; height: 195px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid white;
}
.hero-media-small img { width: 100%; height: 100%; object-fit: cover; }

.hero-float-badge {
  position: absolute;
  top: 24px; right: 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.float-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.float-label { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }

/* ── STATS ── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 36px 5vw;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

/* ── SECTIONS ── */
section { padding: 100px 5vw; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cyan-dark);
  margin-bottom: 0.8rem;
}
.section-tag::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 580px;
}
h2 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SERVICES ── */
.services-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.services-desc { color: var(--muted); font-size: 0.92rem; max-width: 280px; line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}

.service-body { padding: 28px 28px 32px; }

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--grad-subtle);
  border: 1px solid rgba(0,196,171,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.74rem;
  color: var(--cyan-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}
.service-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.65; margin-bottom: 1.3rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--cyan-dark);
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 9px; }

/* ── VIDEO HIGHLIGHT ── */
.video-section {
  background: var(--text);
  padding: 90px 5vw;
  position: relative;
  overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 0% 50%, rgba(0,196,171,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 100% 50%, rgba(232,216,32,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.video-text .section-tag { color: var(--cyan); }
.video-text .section-tag::before { background: var(--grad); }
.video-text h2 { color: #eff1f5; max-width: 420px; }
.video-text p { color: rgba(239,241,245,0.5); font-size: 0.92rem; margin-top: 1.2rem; line-height: 1.75; max-width: 390px; }

.video-feats { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.65rem; }
.video-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem;
  color: rgba(239,241,245,0.6);
}
.feat-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(120deg, rgba(0,196,171,0.18), rgba(232,216,32,0.18));
  border: 1px solid rgba(0,196,171,0.35);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 0.58rem;
  color: var(--cyan);
}

.video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.video-wrap video {
  width: 100%; height: 360px; object-fit: cover; display: block;
}
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.3s;
}
.play-overlay.hidden { background: transparent; pointer-events: none; }
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.96);
  display: grid; place-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.play-overlay:not(.hidden):hover .play-btn { transform: scale(1.09); }
.play-btn::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--cyan-dark);
  margin-left: 3px;
}

/* ── PROCESS ── */
.process-section { background: var(--bg2); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.process-step {
  padding: 42px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg); }

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 0.6rem;
  transition: opacity 0.3s;
}
.process-step:hover .step-num { opacity: 0.45; }

.process-step h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 0.5rem;
}
.process-step p { color: var(--muted); font-size: 0.83rem; line-height: 1.65; }

/* ── AUTOMATION ── */
.auto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.auto-visual { position: relative; }
.auto-img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.auto-float {
  position: absolute;
  bottom: -18px; right: -18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  min-width: 220px;
}
.float-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.flow-mini { display: flex; flex-direction: column; gap: 6px; }
.flow-row { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--text); }
.fd { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dc { background: var(--cyan); box-shadow: 0 0 5px rgba(0,196,171,0.5); }
.dy { background: var(--yellow-dark); box-shadow: 0 0 5px rgba(184,172,0,0.4); }
.dg { background: #bfc3cc; }
.flow-arrow-mini { font-size: 0.62rem; color: var(--muted); padding-left: 4px; }

.auto-feats { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; }
.auto-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; color: var(--muted);
}
.auto-feat::before {
  content: '✓';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--grad-subtle);
  border: 1px solid rgba(0,196,171,0.3);
  display: grid; place-items: center;
  font-size: 0.6rem; color: var(--cyan-dark);
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testi-section { background: var(--bg); }
.testi-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--yellow-dark); font-size: 0.88rem; margin-bottom: 1rem; }
.testi-text {
  font-size: 0.87rem; color: var(--muted);
  line-height: 1.72; margin-bottom: 1.4rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 500; font-size: 0.87rem; }
.author-role { font-size: 0.76rem; color: var(--muted); }

/* ── CTA ── */
.cta-section { padding: 100px 5vw 120px; text-align: center; }
.cta-box {
  max-width: 760px; margin: 0 auto;
  background: var(--text);
  border-radius: 28px;
  padding: 80px 5vw;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 10% 40%, rgba(0,196,171,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 65%, rgba(232,216,32,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 {
  color: #eff1f5; max-width: 100%; text-align: center;
  position: relative; z-index: 1;
  margin: 0 auto 0.8rem;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.cta-box h2 em {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-box p { color: rgba(239,241,245,0.5); font-size: 0.95rem; margin-bottom: 2.2rem; position: relative; z-index: 1; }
.cta-box .btn-primary { position: relative; z-index: 1; font-size: 1rem; padding: 16px 40px; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 38px 5vw;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-left { font-size: 0.82rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-right { height: 280px; }
  .hero-media-small { display: none; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .video-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .auto-wrapper { grid-template-columns: 1fr; }
  .auto-float { right: 0; bottom: -10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .testi-header { flex-direction: column; }
  .services-intro { flex-direction: column; }
}
