﻿/* ═══════════════════════════════════════════════════════════
   YARB AGENCY — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:            #080c20;
  --bg-alt:        #0b1028;
  --bg-soft:       #0f1535;
  --surface:       rgba(255,255,255,0.07);
  --surface-strong:rgba(255,255,255,0.12);
  --border:        rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.20);

  --text:          #f0f4ff;
  --text-dim:      #9aaac8;
  --text-faint:    #6272a4;

  --cyan:          #05d4ff;
  --cyan-mid:      #00c8e8;
  --cyan-deep:     #00b8d4;
  --teal:          #2ee8c0;
  --navy:          #1a3a8f;
  --teal-bright:   #2ee8c0;
  --cyan-soft:     rgba(5,212,255,0.15);
  --teal-soft:     rgba(46,232,192,0.13);
  --navy-soft:     rgba(26,58,143,0.25);
  --teal-bright-soft: rgba(46,232,192,0.13);

  --gradient:      linear-gradient(135deg, #05d4ff 0%, #2ee8c0 50%, #1a3a8f 100%);
  --gradient-soft: linear-gradient(135deg, rgba(5,212,255,0.18) 0%, rgba(46,232,192,0.16) 100%);
  --gradient-text: linear-gradient(135deg, #05d4ff 0%, #38c4c0 50%, #0f2d6e 100%);

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-pill: 999px;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.07),
                 0 20px 60px -20px rgba(5,212,255,0.35),
                 0 20px 60px -25px rgba(46,232,192,0.18);

  --header-h: 100px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #080c20;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Global Background ──────────────────────────────────── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.site-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5,212,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,212,255,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
}
.site-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.site-bg__orb--1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(5,212,255,0.22) 0%, rgba(46,232,192,0.10) 40%, transparent 70%);
  top: 5%; left: -20%;
}
.site-bg__orb--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,232,192,0.18) 0%, rgba(5,212,255,0.07) 45%, transparent 70%);
  bottom: 15%; right: -15%;
}
.site-bg__orb--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,232,192,0.15) 0%, rgba(5,212,255,0.08) 40%, transparent 70%);
  top: 50%; left: 35%;
}
.site-bg__orb--4 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,232,192,0.13) 0%, rgba(5,212,255,0.06) 50%, transparent 70%);
  top: 25%; right: 10%;
}
.site-bg__orb--5 {
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 40%, transparent 70%);
  top: -80px; left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

.section { padding: 110px 0; position: relative; z-index: 1; }
.section--alt { background: none; }

/* ── Custom Cursor ──────────────────────────────────────── */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  top: 0; left: 0;
  transition: transform 0.05s;
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(5,196,242,0.5);
  top: 0; left: 0;
  transition: transform 0.15s var(--ease), width 0.3s, height 0.3s, background 0.3s;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  background: var(--cyan-soft);
  border-color: var(--cyan);
}

/* ── Loader ─────────────────────────────────────────────── */
.loader {
  display: none;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; }
.loader__logo { margin-bottom: 28px; }
.loader__bar {
  width: 200px; height: 2px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 0 auto;
}
.loader__fill {
  height: 100%;
  background: var(--gradient);
  border-radius: var(--radius-pill);
  width: 0;
  animation: loaderFill 1.4s var(--ease) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── Typography ─────────────────────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-text {
  background: linear-gradient(270deg, #05c4f2, #38c4c0, #0f2d6e, #05c4f2, #38c4c0);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  display: inline-block;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.75;
}
.section-desc--center { margin: 0 auto; text-align: center; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 32px rgba(5,196,242,0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(5,196,242,0.40);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.btn--outline:hover {
  background: var(--cyan-soft);
  transform: translateY(-2px);
}

.btn--pill { border-radius: var(--radius-pill); }
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.header--solid,
.header.scrolled {
  background: rgba(6,9,28,0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}
.header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5,196,242,0.35), rgba(56,196,192,0.35), transparent);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.logo { display: flex; align-items: center; }
.logo__img { height: 90px; width: auto; display: block; }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  gap: 32px;
}
.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
}
.nav__link:hover {
  color: #05c4f2;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--text); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* ── Nav Dropdown ─────────────────────── */
.nav__item--drop {
  position: relative;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 9999;
}
.nav__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown__inner {
  background: rgba(8,12,32,0.97);
  border: 1px solid rgba(5,212,255,0.15);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(5,212,255,0.05);
}
.nav__drop-link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav__drop-link:hover,
.nav__drop-link.active {
  background: rgba(5,212,255,0.10);
  color: #05d4ff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #05c4f2;
  transition: color 0.25s, opacity 0.25s;
}
.header__phone svg { color: #05c4f2; flex-shrink: 0; }
.header__phone:hover { opacity: 0.75; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img { display: none; }
.hero__mosaic { display: none; }

/* YouTube video background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  pointer-events: none;
  border: none;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,12,28,0.88) 0%,
    rgba(6,12,28,0.72) 50%,
    rgba(6,12,28,0.85) 100%
  );
  z-index: 1;
}
.hero__video-loader {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg-1-1.jpg') center/cover no-repeat;
  z-index: 3;
  transition: opacity 0.8s ease;
}
.hero__video-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.2;
  z-index: 2;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 0%, transparent 70%);
}

/* Sphere — left side, BEHIND text */
.hero__sphere {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  z-index: 1;
  pointer-events: none;
}
.hero__sphere img {
  width: 100%;
  height: auto;
  will-change: transform;
}
@keyframes sphereFloat {
  0%,100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 24px)); }
}

.hero__ellipse { display: none; }

/* Accent figure — bottom-right corner */
.hero__figure {
  position: absolute;
  right: -20px;
  bottom: -80px;
  width: 380px;
  z-index: 2;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
  opacity: 0.9;
}
.hero__figure img {
  width: 100%;
  height: auto;
  display: block;
  filter: hue-rotate(165deg) saturate(1.5) brightness(1.1);
}

/* Centre content — container-aligned */
.hero__center {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px calc(340px + 60px);
  width: 100%;
}

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 52px;
  letter-spacing: -0.01em;
  text-align: left;
}

.hero__title-top {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 4px;
}

.hero__title-word {
  position: relative;
  display: inline-block;
}

.hero__swoosh {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 18px;
  overflow: visible;
}
.hero__swoosh path {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: drawSwoosh 1.2s var(--ease) 1s forwards;
}
@keyframes drawSwoosh {
  to { stroke-dashoffset: 0; }
}

.hero__title-bold {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 6px;
}

/* Lower row: badge + desc */
.hero__lower {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Rotating circular badge */
.hero__badge-circle {
  position: relative;
  width: 140px; height: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.hero__badge-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spinRing 12s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

.hero__badge-arrow {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 1;
  box-shadow: 0 6px 24px rgba(5,196,242,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.hero__badge-circle:hover .hero__badge-arrow {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(5,196,242,0.55);
}

/* Arrow slides LEFT on hover */
.hero__badge-arrow-svg {
  transition: transform 0.4s var(--ease);
}
.hero__badge-circle:hover .hero__badge-arrow-svg {
  transform: translateX(-3px);
}

/* Desc block */
.hero__desc-block {
  text-align: left;
  max-width: 360px;
}
.hero__desc {
  font-size: 0.93rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Discover More button — pill + icon circle */
.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--gradient);
  border-radius: var(--radius-pill);
  padding: 5px 5px 5px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(5,196,242,0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  overflow: hidden;
}
.hero__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(5,196,242,0.45);
}
.hero__cta-btn span:first-child {
  padding-right: 20px;
}
.hero__cta-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.hero__cta-btn:hover .hero__cta-icon {
  background: rgba(255,255,255,0.35);
  transform: rotate(-45deg);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 4;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.35; transform: scaleY(0.55); }
}

/* ── Features Strip ──────────────────────────────────────── */
.features-strip {
  background: linear-gradient(135deg, rgba(5,196,242,0.1) 0%, rgba(8,20,45,0.92) 50%, rgba(56,196,192,0.08) 100%);
  border: 1px solid rgba(5,196,242,0.22);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  padding: 12px 0;
  position: relative;
  z-index: 10;
  margin-top: -20px;
  width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.fstrip-shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  pointer-events: none;
  z-index: 3;
  flex-shrink: 0;
}
.fstrip-shape--left {
  left: 20px;
  filter: hue-rotate(165deg) saturate(1.5) brightness(1.1) drop-shadow(0 0 8px rgba(56,196,192,0.25));
  opacity: 0.55;
  animation: shapeFloat 4s ease-in-out infinite;
}
.fstrip-shape--right {
  right: -70px;
  filter: hue-rotate(165deg) saturate(1.6) brightness(1.1) drop-shadow(0 0 10px rgba(5,196,242,0.3));
  opacity: 0.8;
  animation: shapeFloat 4s ease-in-out infinite reverse;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 18px)); }
}

.features-strip__inner {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.features-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 15% 50%, rgba(5,196,242,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 85% 50%, rgba(56,196,192,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 50% 100%, rgba(5,196,242,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fstrip-card {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: background 0.35s, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.fstrip-card:hover {
  background: rgba(5,196,242,0.04);
  transform: translateY(-6px);
}


.fstrip-card__icon {
  flex-shrink: 0;
}
.fstrip-card__icon img {
  width: 44px;
  height: 44px;
  filter: hue-rotate(165deg) saturate(1.5) brightness(1.1);
  mix-blend-mode: screen;
}

.fstrip-card__text { width: 100%; min-width: 0; margin: 16px 0 20px; }

.fstrip-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fstrip-card p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fstrip-card__arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(5,196,242,0.3);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  margin-top: auto;
  align-self: center;
}
.fstrip-card:hover .fstrip-card__arrow {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  transform: translateX(3px);
}

.fstrip-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 600;
}

.fstrip-card__link-text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.4s var(--ease), opacity 0.3s, margin-right 0.4s;
  margin-right: 0;
}

.fstrip-card__link:hover .fstrip-card__link-text {
  max-width: 100px;
  opacity: 1;
  margin-right: 8px;
}

.fstrip-arrow {
  display: block;
  filter: hue-rotate(165deg) saturate(1.4) brightness(1.15);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.fstrip-card:hover .fstrip-arrow {
  transform: translateX(6px);
}

@keyframes spinClick {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(720deg); }
}
.fstrip-arrow.spinning {
  animation: spinClick 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.fstrip-divider {
  position: relative;
  width: 1px;
  align-self: stretch;
  margin: 24px 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(5,196,242,0.2) 15%,
    rgba(5,196,242,0.2) 85%,
    transparent 100%);
  flex-shrink: 0;
}
.fstrip-divider::before,
.fstrip-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan);
  opacity: 0.9;
}
.fstrip-divider::before { top: 0; }
.fstrip-divider::after  { bottom: 0; }

@media (max-width: 768px) {
  .features-strip__inner { flex-direction: column; }
  .fstrip-card { padding: 28px 20px; }
  .fstrip-divider { width: auto; height: 1px; align-self: stretch;
    background: linear-gradient(to right, transparent, var(--border), transparent); }
}

/* ── Marquee Band ─────────────────────────────────────────── */
.marquee-band {
  background: none;
  border-top: none;
  border-bottom: none;
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.marquee-dot { color: var(--cyan) !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── About ─────────────────────────────────────────────────── */
.about { position: relative; overflow: hidden; background: transparent; padding-top: 160px; }

.sw {
  display: inline-block;
  color: rgba(255,255,255,0.2);
  transition: color 0.4s ease;
}
.sw.lit { color: #ffffff; }
.sw--cyan.lit { color: var(--cyan); }
.sw--teal.lit { color: var(--teal); }

.about__deco-ellipse {
  position: absolute;
  top: 160px;
  right: -180px;
  width: 500px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
  filter: hue-rotate(165deg) saturate(2) blur(6px);
  mix-blend-mode: screen;
}

.about__deco-shape {
  position: absolute;
  top: -20px;
  right: -240px;
  width: 480px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  filter: brightness(1.3) contrast(1.1);
}

.about__shape2 {
  position: absolute;
  bottom: 80px;
  left: -30px;
  width: 200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  filter: hue-rotate(165deg) saturate(1.5) brightness(1.1);
}

.about__sphere-wrap {
  position: absolute;
  top: -20px;
  right: -160px;
  width: 320px;
  z-index: 1;
  pointer-events: none;
}
.about__sphere-img {
  width: 100%;
  height: auto;
  display: block;
  filter: hue-rotate(165deg) saturate(1.4) brightness(0.85);
}
.about__sphere-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  opacity: 0.85;
  filter: hue-rotate(165deg) saturate(2) brightness(1.4);
  pointer-events: none;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}

/* Image */
.about__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px 120px 24px 120px;
  border: 1px solid rgba(5,212,255,0.25);
  box-shadow: 0 0 70px rgba(5,212,255,0.15), 0 0 120px rgba(46,232,192,0.08), -8px 8px 0 rgba(5,212,255,0.10);
  background: linear-gradient(135deg, rgba(5,212,255,0.08) 0%, rgba(46,232,192,0.05) 100%);
  padding: 6px;
  transition: box-shadow 0.4s, border-color 0.4s;
}
.about__img-wrap:hover {
  box-shadow: 0 0 100px rgba(5,212,255,0.22), 0 0 140px rgba(46,232,192,0.10), -8px 8px 0 rgba(5,212,255,0.15);
  border-color: rgba(5,212,255,0.4);
}
.about__img-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5,212,255,0.7), rgba(46,232,192,0.7), transparent);
  border-radius: 999px;
  z-index: 2;
}
.about__img-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(5,196,242,0.18) 0%, rgba(56,196,192,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.about__img-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0;
  will-change: transform;
}

/* Content */
.section-label__dot { color: var(--cyan); margin-right: 6px; }

.about__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin: 16px 0 18px;
}

.about__desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* 2×2 bullet grid */
.about__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.about__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.about__bullet-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(5,196,242,0.12);
  border: 1px solid rgba(5,196,242,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Stats card */
.about__stats-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
}
.about__stats-img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.about__stats-text {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
}
.about__stats-num {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.about__stats-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.about__cta { display: inline-flex; align-items: center; gap: 10px; }

/* shared glow between about & services */

/* ── Services ─────────────────────────────────────────────── */
.services { position: relative; padding: 60px 0; }

.services .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.services__inner {
  position: relative;
  border: none;
  background: none;
  padding: 48px 0;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.25) brightness(0.45) hue-rotate(165deg);
}
.services__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,14,26,0.55) 0%, rgba(8,14,26,0.35) 50%, rgba(8,14,26,0.55) 100%);
}
.services__inner > *:not(.services__bg) { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ── Showcase Card ── */
.service-card--showcase {
  position: relative;
  background: linear-gradient(145deg, rgba(5,30,60,0.95), rgba(8,20,45,0.98));
  border: 1px solid rgba(5,196,242,0.35);
  border-radius: 24px;
  padding: 32px 24px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow:
    0 0 25px rgba(5,196,242,0.18),
    0 0 60px rgba(5,196,242,0.08);
}

.sc-showcase__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sc-showcase__ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(5,196,242,0.12);
}
.sc-showcase__ring--1 { width: 220px; height: 220px; }
.sc-showcase__ring--2 { width: 150px; height: 150px; border-color: rgba(56,196,192,0.18); }

.sc-showcase__circle {
  position: relative;
  width: 220px; height: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-showcase__svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spinText 14s linear infinite;
}
@keyframes spinText { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.sc-showcase__text {
  font-size: 11px;
  fill: rgba(5,196,242,0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.sc-showcase__img-wrap {
  position: absolute;
  width: 120px; height: 120px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(5,50,100,0.7) 0%, rgba(5,20,50,0.5) 100%);
  border-radius: 50%;
  border: 1px solid rgba(5,196,242,0.3);
  box-shadow: 0 0 20px rgba(5,196,242,0.2), inset 0 0 20px rgba(5,196,242,0.05);
}
.sc-showcase__img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(5,196,242,0.4));
}

.sc-showcase__info {
  text-align: center;
}
.sc-showcase__info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.sc-showcase__info span {
  font-size: 0.78rem;
  color: var(--cyan);
  font-weight: 600;
}

.sc-showcase__orbit {
  position: absolute;
  width: 220px; height: 220px;
  top: 0; left: 50%;
  transform: translateX(-50%);
  animation: orbitSpin 8s linear infinite;
  pointer-events: none;
}
@keyframes orbitSpin { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }

.sc-showcase__orb-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.sc-showcase__orb-dot--1 { width: 7px; height: 7px; top: -3px; left: calc(50% - 3.5px); }
.sc-showcase__orb-dot--2 { width: 5px; height: 5px; right: -2px; top: calc(50% - 2.5px); opacity: 0.55; }
.sc-showcase__orb-dot--3 { width: 4px; height: 4px; bottom: -2px; left: calc(50% - 2px); opacity: 0.3; }
.sc-showcase__orb-dot--4 { width: 5px; height: 5px; left: -2px; top: calc(50% - 2.5px); opacity: 0.55; }

.service-card__fshape {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  filter: hue-rotate(165deg) saturate(1.5) invert(1) brightness(2);
}

.showcase-deco-shape {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 420px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 3;
  filter: hue-rotate(165deg) saturate(1.4) brightness(1.1);
}

/* ── Regular Cards ── */
.service-card {
  position: relative;
  background: linear-gradient(145deg, rgba(5,196,242,0.08) 0%, rgba(10,18,40,0.92) 100%);
  border: 1px solid rgba(5,196,242,0.2);
  border-radius: 20px;
  padding: 28px 28px 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: default;
  min-height: unset;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(5,196,242,0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(5,196,242,0.07);
}

.service-card__dot {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #05c4f2 !important;
  box-shadow: 0 0 6px #05c4f2;
}
.service-card__num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}
.service-card__icon {
  margin: 48px 0 20px;
}
.service-card__icon img {
  filter: hue-rotate(165deg) saturate(1.6) brightness(1.1);
  mix-blend-mode: screen;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.84rem;
  color: rgba(150,178,205,0.72);
  line-height: 1.65;
  margin-bottom: 0;
}

.service-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.service-card:hover .service-card__readmore {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Work / Portfolio ─────────────────────────────────────── */
.work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.work__header .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }

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

.work-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10,18,34,0.55);
  border: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.work-card__img {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: block;
  width: 100%;
}
.work-card:hover .work-card__img .work-card__photo { transform: scale(1.05); }

.work-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.work-card:hover .work-card__photo { transform: scale(1.05); }

/* Mockup containers */
.work-card__mockup { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

.work-card__mockup--mobile  { background: linear-gradient(145deg, #0d1b35 0%, #05c4f2 100%); }
.work-card__mockup--tablet  { background: linear-gradient(145deg, #0a1628 0%, #38c4c0 70%, #05c4f2 100%); }
.work-card__mockup--desktop { background: linear-gradient(145deg, #060e1c 0%, #0f2d6e 60%, #38c4c0 100%); }

/* Phone mockup */
.wm-phone {
  width: 110px; height: 210px;
  background: rgba(0,0,0,0.5);
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  padding: 10px 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotate(-5deg);
}
.wm-phone__screen { width: 100%; height: 100%; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 8px; overflow: hidden; }

/* Tablet mockup */
.wm-tablet {
  width: 240px; height: 170px;
  background: rgba(0,0,0,0.45);
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.18);
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: rotate(3deg);
}
.wm-tablet__screen { width: 100%; height: 100%; background: rgba(255,255,255,0.05); border-radius: 6px; overflow: hidden; padding: 6px; }

/* Browser mockup */
.wm-browser {
  width: 280px; height: 190px;
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.wm-browser__bar {
  height: 24px; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 5px; padding: 0 10px;
}
.wm-browser__bar span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.wm-url { flex: 1; height: 10px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-left: 8px; }
.wm-browser__screen { padding: 8px; }

/* Shared mockup elements */
.wm-bar  { height: 8px; background: rgba(5,196,242,0.3); border-radius: 3px; margin-bottom: 8px; }
.wm-nav  { height: 14px; background: rgba(255,255,255,0.08); border-radius: 3px; margin-bottom: 8px; }
.wm-hero-block { height: 50px; background: rgba(5,196,242,0.15); border-radius: 4px; margin-bottom: 8px; }
.wm-row  { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 6px; }
.wm-block { height: 40px; background: rgba(56,196,192,0.15); border-radius: 4px; margin-bottom: 8px; }
.wm-row-group { padding: 6px; }
.wm-products { display: flex; gap: 4px; }
.wm-product { flex: 1; height: 40px; background: rgba(5,196,242,0.12); border-radius: 4px; }
.wm-content { padding: 4px; }

.work-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}

.work-card__arrow {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #05c4f2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s;
  z-index: 3;
}
.work-card__arrow svg { width: 22px; height: 22px; }
.work-card__img:hover .work-card__arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.work-card__arrow:hover {
  background: #38c4c0;
}

.work-card__info {
  padding: 16px 4px 8px;
  background: none;
}
.work-card__info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-top: 6px;
}
.work-card__cats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.work-card__cats span:nth-child(2) { color: #05c4f2 !important; font-size: 0.6rem; }
.work-card__body p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.6;
}

.work-card__meta { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-dim);
}

.work__more { text-align: center; margin-top: 48px; }

/* ── Ticker Bands ─────────────────────────────────────────── */
/* ticker animation handled by JS */

.ticker-bands {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  z-index: 2;
  margin-top: 40px;
}

.ticker-band {
  position: absolute;
  width: 250%;
  left: -75%;
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  transform-origin: center center;
}
.ticker-band--dark {
  top: 50%;
  background: linear-gradient(90deg, #0f2d6e, #0a1f4e, #0f2d6e);
  transform: translateY(-50%) rotate(-6deg);
  box-shadow: 0 0 30px rgba(15,45,110,0.5);
  z-index: 2;
}
.ticker-band--accent {
  top: 50%;
  background: linear-gradient(90deg, #05c4f2, #38c4c0, #05c4f2);
  transform: translateY(-50%) rotate(6deg);
  box-shadow: 0 0 40px rgba(5,196,242,0.5);
  z-index: 1;
}

.ticker-bands * { pointer-events: none; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
}
.ticker-band--dark .ticker-icon { color: #05c4f2; }
.ticker-band--accent .ticker-icon { color: rgba(255,255,255,0.7); }

/* ── Process ──────────────────────────────────────────────── */
.process__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.process__left {
  padding-top: 8px;
  opacity: 1 !important;
  transform: none !important;
}

.process__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 40px;
}

.process__visual {
  position: relative;
  margin-top: 20px;
}
.process__img {
  width: 100%;
  max-width: 340px;
  filter: hue-rotate(165deg) saturate(1.3) brightness(0.9);
  will-change: transform;
}

.process__right { display: flex; flex-direction: column; gap: 0; }

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
}

.process__step-pill {
  flex-shrink: 0;
  width: 56px;
  padding: 20px 10px;
  background: rgba(5,196,242,0.08);
  border: 1px solid rgba(5,196,242,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.process__step--active .process__step-pill,
.process__step:hover .process__step-pill {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}

.process__step-content { flex: 1; padding-top: 6px; }

.process__step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.process__step-content p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

.process__step-line {
  position: relative;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 4px;
}

.process__step-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(5,196,242,0.4);
  transition: background 0.3s;
}

.process__step--active .process__step-dot,
.process__step:hover .process__step-dot {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

/* ── Video Banner ─────────────────────────────────────────── */
.video-banner__wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  cursor: pointer;
}

.video-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s var(--ease);
}
.video-banner__wrap:hover .video-banner__bg { transform: scale(1.04); }

/* side gradient overlay — cyan left, teal right */
.video-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(5,196,242,0.82) 0%,
      rgba(5,196,242,0.3) 28%,
      transparent 48%,
      rgba(56,196,192,0.3) 72%,
      rgba(56,196,192,0.82) 100%);
}

/* frosted circle behind button + text */
.video-banner__circle-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.video-banner__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 2;
}

.video-banner__play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(5,10,22,0.85);
  border: none;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.video-banner__play:hover {
  background: var(--cyan);
  color: #fff;
  transform: scale(1.12);
}

.video-banner__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.whyus__layout {
  display: grid;
  grid-template-columns: 1fr 80px 420px;
  gap: 32px;
  align-items: center;
}

.whyus__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 20px;
}

.whyus__desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}

.whyus__cards { display: flex; flex-direction: column; gap: 16px; }

.whyus__card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  background: rgba(5,196,242,0.04);
  border: 1px solid rgba(5,196,242,0.14);
  border-radius: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.whyus__card:hover {
  background: rgba(5,196,242,0.08);
  border-color: rgba(5,196,242,0.3);
}
.whyus__card-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(5,196,242,0.1);
  border: 1px solid rgba(5,196,242,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.whyus__card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.whyus__card-body p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Middle widget column */
.whyus__widget-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
}

.whyus__customers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(5,10,30,0.7);
  border: 1px solid rgba(5,196,242,0.2);
  border-radius: 40px;
  padding: 14px 10px;
}
.whyus__avatars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -6px;
}
.whyus__av {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(5,196,242,0.4);
  margin-top: -6px;
}
.whyus__av:first-child { margin-top: 0; }
.whyus__customer-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.whyus__signal {
  display: flex;
  align-items: center;
  justify-content: center;
}
.whyus__signal-ball {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: hue-rotate(165deg) saturate(2) brightness(1.3);
  will-change: transform;
}

/* Right image */
.whyus__right { position: relative; }

.whyus__ball {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 260px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  filter: brightness(1.2) saturate(1.2);
  will-change: transform;
}

.whyus__img-wrap {
  border-radius: 220px;
  overflow: hidden;
  height: 520px;
  position: relative;
}
.whyus__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.whyus__img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(5,196,242,0.7) 0%, transparent 100%);
}

.whyus__stat {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,10,30,0.95) 60%, rgba(5,196,242,0.15) 100%);
  border: 2px solid rgba(5,196,242,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  box-shadow: 0 0 40px rgba(5,196,242,0.25);
}
.whyus__stat-num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.whyus__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* ── Testimonials ────────────────────────────────────────── */
.testi__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}
.testi__title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 12px;
}
.testi__rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.testi__rating-num {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.testi__rating-meta { display: flex; flex-direction: column; gap: 4px; }
.testi__stars { color: var(--cyan); font-size: 1rem; letter-spacing: 2px; }
.testi__rating-meta span { font-size: 0.8rem; color: var(--text-dim); }

/* Two-column grid */
.testi__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Left quote card */
.testi__quote-card {
  background: linear-gradient(135deg, rgba(5,196,242,0.1) 0%, rgba(8,15,32,0.92) 100%);
  border: 1px solid rgba(5,196,242,0.22);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  min-height: 280px;
}
.testi__circle-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi__circle-img {
  width: 200px;
  height: 200px;
  animation: spin 18s linear infinite;
  opacity: 0.85;
}
.testi__quote-img {
  position: absolute;
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: hue-rotate(165deg) saturate(1.5) brightness(1.2) drop-shadow(0 4px 16px rgba(5,196,242,0.4));
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Right review card */
.testi__review-card {
  background: linear-gradient(135deg, rgba(56,196,192,0.08) 0%, rgba(8,15,32,0.92) 100%);
  border: 1px solid rgba(5,196,242,0.22);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi__body-stars { color: var(--cyan); font-size: 1.1rem; letter-spacing: 3px; }
.testi__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.testi__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testi__author-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(5,196,242,0.3);
}
.testi__author-info { flex: 1; }
.testi__author-info strong { display: block; font-size: 0.9rem; color: #fff; }
.testi__author-info span { font-size: 0.78rem; color: var(--text-dim); }
.testi__nav { display: flex; gap: 8px; margin-left: auto; }
.testi__nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(5,196,242,0.25);
  background: rgba(5,196,242,0.06);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.testi__nav-btn:hover { background: var(--cyan); border-color: var(--cyan); }

/* Bottom bar */
.testi__bottom {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(5,196,242,0.09) 0%, rgba(8,15,32,0.92) 100%);
  border: 1px solid rgba(5,196,242,0.22);
  border-radius: 16px;
  overflow: hidden;
  gap: 0;
}
.testi__bottom-rated {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi__bottom-divider {
  width: 1px;
  height: 40px;
  background: rgba(5,196,242,0.15);
  flex-shrink: 0;
}
.testi__bottom-label { font-size: 0.72rem; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.testi__bottom-score { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.testi__bottom-score strong { color: #fff; }
.testi__platform {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 32px;
}
.testi__platform-info strong { display: block; font-size: 0.88rem; color: #fff; }
.testi__platform-info span { font-size: 0.75rem; color: var(--text-dim); }

/* ── Team ─────────────────────────────────────────────────── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(5,196,242,0.25);
}

.team-card__avatar {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 20px;
}
.team-card__avatar-placeholder {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--gradient-soft);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.team-card:hover .team-card__avatar-placeholder {
  border-color: var(--cyan);
}
.team-card__glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  filter: blur(12px);
}
.team-card:hover .team-card__glow { opacity: 0.4; }

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.82rem;
  color: var(--cyan);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
.team-card__social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: all 0.3s;
}
.social-icon:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }

.testimonials__track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.testimonial-card {
  min-width: calc(50% - 12px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.testimonial-card:hover {
  border-color: rgba(5,196,242,0.25);
  box-shadow: var(--shadow-glow);
}

.testimonial-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--cyan);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: -16px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-faint);
}
.testimonial-card__stars {
  margin-left: auto;
  font-size: 0.8rem;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.testi-btn:hover {
  background: var(--cyan-soft);
  border-color: var(--cyan);
  color: var(--cyan);
}
.testi-dots {
  display: flex;
  gap: 8px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}
.faq__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin-top: 12px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  align-items: start;
}

.faq-item {
  background: linear-gradient(135deg, rgba(5,196,242,0.09) 0%, rgba(10,18,40,0.92) 100%);
  border: 1px solid rgba(5,196,242,0.22);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item.active {
  background: linear-gradient(135deg, rgba(5,196,242,0.10) 0%, rgba(56,196,192,0.06) 100%);
  border-color: rgba(5,196,242,0.45);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 36px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  transition: color 0.3s;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cyan);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  transition: background 0.3s, transform 0.3s;
}
.faq-item.active .faq-item__icon {
  background: var(--cyan);
  transform: rotate(45deg);
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
  overflow: hidden;
}
.faq-item.active .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > * { overflow: hidden; }
.faq-item__a p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  padding: 0 36px 32px;
}

.link--cyan { color: var(--cyan); }
.link--cyan:hover { text-decoration: underline; }

/* ── Features Bento ───────────────────────────────────────── */
.fbento__grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
}
.fbento__card--title  { grid-column: 1 / 7; }
.fbento__card--imgtext{ grid-column: 7 / 11; }
.fbento__card--accent { grid-column: 1 / 5; }
.fbento__card--imgbig { grid-column: 5 / 11; }

.fbento__card {
  border-radius: 20px;
  overflow: hidden;
  padding: 36px 32px;
  position: relative;
  border: 1px solid rgba(5,196,242,0.12);
}

/* Title card (top-left 60%) */
.fbento__card--title {
  background: linear-gradient(145deg, rgba(5,196,242,0.1) 0%, rgba(5,12,28,0.95) 60%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.fbento__dots-bg {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  filter: hue-rotate(165deg) saturate(1.2);
}

/* Image-top card */
.fbento__card--imgtext {
  background: linear-gradient(145deg, rgba(56,196,192,0.09) 0%, rgba(8,14,30,0.95) 60%);
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 420px;
  overflow: hidden;
}
.fbento__imgtext-top {
  height: 180px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.fbento__imgtext-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.fbento__imgtext-body {
  padding: 20px 24px 28px;
}
.fbento__imgtext-body h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.fbento__imgtext-body p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Large image card (bottom-right 60%) */
.fbento__card--imgbig {
  background: rgba(8,14,30,0.9);
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.fbento__imgbig-header {
  padding: 22px 24px 0;
  text-align: right;
}
.fbento__imgbig-header h4 {
  font-size: 1.05rem; font-weight: 700; color: #fff;
}
.fbento__imgbig-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.fbento__imgbig-img img {
  max-height: 150px;
  object-fit: contain;
}
.fbento__imgbig-desc {
  padding: 16px 24px 22px;
}
.fbento__imgbig-desc p {
  font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; text-align: right;
}
.fbento__hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding: 36px 32px;
}
.fbento__hero-img {
  width: 42%;
  height: 100%;
  min-height: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(5,196,242,0.04);
}
.fbento__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: hue-rotate(165deg) saturate(1.2) brightness(1.1);
}
.fbento__hero-title {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 800;
  line-height: 1.3;
  flex: 1;
  margin-top: 12px;
}
.fbento__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-radius: 30px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  width: fit-content;
  transition: opacity 0.3s, transform 0.3s;
}
.fbento__cta:hover { opacity: 0.85; transform: translateX(4px); }

/* Top right: same as accent (image fills, title at bottom) */
.fbento__card--top {
  background: rgba(8,14,30,0.9);
  border-color: rgba(5,196,242,0.2);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 280px;
}

/* Bottom left: colored bg, image fills card */
/* Accent card: colored bg, image top (large), text bottom */
.fbento__card--accent {
  background: linear-gradient(270deg, #05c4f2, #38c4c0, #0a4f8a, #05c4f2);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  border-color: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
}
.fbento__accent-img {
  height: 180px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.fbento__accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.fbento__accent-body {
  padding: 20px 24px 28px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.fbento__accent-body h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.fbento__accent-body p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* Big image card: image center, title+desc right-aligned */
.fbento__card--imgbig {
  background: rgba(8,14,30,0.95);
  border-color: rgba(5,196,242,0.1);
  padding: 0;
  overflow: hidden;
  min-height: 360px;
}
.fbento__imgbig-wrap {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.fbento__imgbig-photo {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  padding: 20px;
  align-self: center;
  will-change: transform;
}
.fbento__imgbig-text {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 28px 12px;
  text-align: right;
}
.fbento__imgbig-text--full {
  grid-column: 1 / -1;
  padding: 36px 40px;
  text-align: left;
  justify-content: flex-start;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

/* ── Fbento contact card ─────────────── */
.fbento__contact-card { justify-content: center; }
.fbc__words {
  display: flex;
  gap: 16px;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 4px;
}
.fbc__word {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  display: block;
}
.fbc__word--1 { color: #fff; }
.fbc__word--2 {
  background: linear-gradient(270deg, #05c4f2, #38c4c0, #05c4f2);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}
.fbc__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.fbc__items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 4px; }
.fbc__item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.fbc__item:hover .fbc__item-val { color: var(--cyan); }
.fbc__item-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(5,196,242,0.12);
  border: 1px solid rgba(5,196,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.fbc__item > div:last-child { display: flex; flex-direction: column; gap: 1px; }
.fbc__item-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.fbc__item-val { font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.fbc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}
.fbc__btn:hover { opacity: 0.85; transform: translateX(3px); }
.fbento__imgbig-text h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.fbento__imgbig-line {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 16px 0;
}
.fbento__imgbig-text p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-top: auto;
}
.fbento__card-img-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.fbento__card-img-center img {
  width: 160px; height: 160px;
  object-fit: contain;
  filter: hue-rotate(165deg) saturate(1.5) brightness(1.2);
}
.fbento__card-body--overlay {
  padding: 20px 28px;
  background: rgba(5,10,20,0.5);
}

/* Bottom right: image left, text right */
.fbento__card--side {
  background: rgba(8,14,30,0.9);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  min-height: 240px;
}
.fbento__card-img-side {
  width: 40%;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,196,242,0.05);
  padding: 20px;
  overflow: hidden;
}
.fbento__card-img-side img {
  width: 100%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
}
.fbento__card--side .fbento__card-body {
  flex: 1;
  padding: 28px 24px;
  min-width: 0;
}

/* Shared body styles */
.fbento__card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.fbento__card-body p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── Blog ─────────────────────────────────────────────────── */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.blog-card__img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card__img-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img-bg { transform: scale(1.06); }

.blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(5,196,242,0.15);
  border: 1px solid rgba(5,196,242,0.3);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card__body { padding: 24px; }
.blog-card__meta {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.blog-card__body h3 {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.blog-card:hover .blog-card__body h3 { color: var(--cyan); }
.blog-card__body p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card__link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.3s;
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5,196,242,0.1) 0%, rgba(8,20,50,0.97) 50%, rgba(56,196,192,0.09) 100%);
  border-top: 1px solid rgba(5,196,242,0.15);
  border-bottom: 1px solid rgba(5,196,242,0.15);
  border-radius: 32px;
  margin: 0 24px;
}
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}
.cta-band__orb--1 {
  width: 500px; height: 500px;
  background: var(--cyan);
  top: -250px; left: -80px;
}
.cta-band__orb--2 {
  width: 400px; height: 400px;
  background: var(--teal);
  bottom: -200px; right: -60px;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.cta-band__content { flex: 1; }
.cta-band__content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-band__content p {
  font-size: 1rem;
  color: var(--text-dim);
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  background: none;
}
.contact .container {
  padding: 0 24px;
}
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(5,196,242,0.18) 0%, rgba(8,28,55,0.95) 45%, rgba(56,196,192,0.14) 100%);
  border: 1px solid rgba(5,196,242,0.3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(5,196,242,0.08), inset 0 0 80px rgba(5,196,242,0.04);
}

/* Left image card */
.contact__left { display: flex; }
.contact__img-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
}
.contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,15,40,0.35) 0%, rgba(5,15,40,0.75) 60%, rgba(5,15,40,0.92) 100%);
}
.contact__img-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
}
.contact__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 12px 0 14px;
}
.contact__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 28px;
}
.contact__meta-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
}
.contact__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.contact__meta-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5,196,242,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 8px;
  flex-shrink: 0;
}
.contact__meta-item strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.contact__meta-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
.contact__meta-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 24px;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  background: rgba(5,196,242,0.04);
  border: none;
  border-radius: 0;
  border-left: 1px solid rgba(5,196,242,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}
.form-group--line label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.form-group--line input,
.form-group--line textarea {
  background: rgba(5,196,242,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  resize: none;
  width: 100%;
}
.form-group--line input:focus,
.form-group--line textarea:focus {
  border-color: var(--cyan);
  background: rgba(5,196,242,0.07);
  box-shadow: 0 0 0 3px rgba(5,196,242,0.1);
}
.form-group--line input::placeholder,
.form-group--line textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group--line textarea { min-height: 120px; }

.contact__submit {
  margin-top: 12px;
  border-radius: 50px;
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  align-self: flex-start;
}

/* ── Footer Clients Ticker ────────────────────────────────── */
.footer__clients { padding: 18px 0; overflow: hidden; }
.footer__clients-ticker {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.footer__clients-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  will-change: transform;
}
.footer__client-item {
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(154,170,200,0.55);
  padding: 0 40px;
  letter-spacing: -0.02em;
  transition: color 0.3s, text-shadow 0.3s;
  cursor: default;
}
.footer__client-item:hover {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(5,196,242,0.7), 0 0 40px rgba(5,196,242,0.3);
}
.footer__client-sep {
  color: var(--cyan);
  font-size: 0.7rem;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer { padding: 24px; }

.footer__card {
  background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(5,212,255,0.14) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 20%, rgba(46,232,192,0.11) 0%, transparent 55%),
              rgba(7,11,28,0.98);
  border-radius: 28px;
  border: 1px solid rgba(5,212,255,0.12);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Globe decoration */
.footer__globe {
  position: absolute;
  right: -80px; bottom: -260px;
  width: 500px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  animation: sphereFloat 6s ease-in-out infinite;
  mix-blend-mode: screen;
}
.footer__globe::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(5,196,242,0.5) 0%, transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
}
.footer__globe-img { width: 100%; display: block; }

/* Main grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
  padding-right: 280px;
  border-bottom: 1px solid rgba(5,196,242,0.1);
  margin-bottom: 36px;
}

.footer__col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer__col--contact .footer__addr {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 4px;
  line-height: 1.6;
}

.footer__info-row {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__info-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
}
.footer__info-val {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer__info-val:hover { color: var(--cyan); }

.footer__col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mobile footer accordion */
@media (max-width: 768px) {
  .footer__col:not(.footer__col--contact) .footer__col-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(5,196,242,0.12);
  }
  .footer__col:not(.footer__col--contact) .footer__col-title::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--cyan);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .footer__col--open .footer__col-title::after {
    transform: rotate(45deg);
  }
  .footer__col:not(.footer__col--contact) .footer__col-list {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s ease;
    margin-top: 0;
  }
  .footer__col:not(.footer__col--contact) .footer__col-list > * {
    overflow: hidden;
  }
  .footer__col--open .footer__col-list {
    grid-template-rows: 1fr;
    margin-top: 16px;
  }
}
.footer__col-list a {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
.footer__col-list a:hover { color: #fff; padding-left: 4px; }

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.footer__bottom-brand { flex-shrink: 0; }
.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__brand-logo { height: 32px; width: auto; }
.footer__brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-dim);
  flex: 1;
  text-align: center;
}
.footer__socials {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.footer__social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(5,196,242,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.footer__social-btn:hover {
  background: rgba(5,196,242,0.1);
  border-color: var(--cyan);
  color: var(--cyan);
}

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-right: 220px; }
}
@media (max-width: 768px) {
  .footer__card { padding: 36px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-right: 0; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 20px; }
  .footer__globe { width: 300px; right: -60px; bottom: -180px; }
}
@media (max-width: 480px) {
  .footer { padding: 12px; }
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__topbar { padding: 32px 0; }
.footer__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__topbar-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__topbar-contact span {
  font-size: 0.88rem;
  color: var(--text-dim);
}
.footer__topbar-contact strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 56px 0;
}

.footer__cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.footer__cta > p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer__subscribe {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  max-width: 380px;
}
.footer__subscribe input {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 20px;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
}
.footer__subscribe input::placeholder { color: rgba(255,255,255,0.35); }
.footer__subscribe button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-btn);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.footer__links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.footer__links-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__links-col a:hover { color: var(--cyan); }

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer__socials { display: flex; gap: 8px; }
.footer__social-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  transition: background 0.3s, color 0.3s;
}
.footer__social-btn:hover { background: var(--cyan); color: #fff; border-color: var(--cyan); }

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(5,196,242,0.3);
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { transform: translateY(-4px); }

/* ── Arrow images ─────────────────────────────────────────── */
/* Convert orange arrow → cyan #05c4f2 */
.card-arrow {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s var(--ease);
  object-fit: contain;
  filter: hue-rotate(165deg) saturate(1.4) brightness(1.15);
}
.service-card__link:hover .card-arrow,
.blog-card__link:hover .card-arrow {
  transform: translateX(5px);
}

/* CTA button arrow — keep white inside the circle */
.hero__cta-arrow {
  display: block;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
  filter: brightness(0) invert(1);
}
.hero__cta-btn:hover .hero__cta-arrow {
  transform: rotate(-45deg) scale(1.15);
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .cursor, .cursor-follower { display: none; }
  .header__phone { display: none; }
  .header,
  .header.scrolled,
  .header--solid { backdrop-filter: none !important; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    height: calc(100vh - var(--header-h));
    background: rgba(6,9,28,0.98);
    backdrop-filter: none;
    padding: 32px 24px;
    transform: translateY(-110vh);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
    z-index: 9000;
  }
  .nav.open { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(240,244,255,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav__link:hover { color: #05d4ff; background: none; }
  .nav__link.active { color: #05d4ff; }
  .nav__link .drop-arrow {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.4);
    margin-left: auto;
    padding-left: 8px;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
  }
  .nav__item--drop:has(.nav__dropdown.open) .drop-arrow {
    transform: rotate(90deg);
    color: #05c4f2;
  }
  .burger { display: flex; }
  .header__actions .btn { display: none; }

  /* Mobile dropdown — inline (not floating) */
  .nav__dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding-top: 0;
    display: none;
  }
  .nav__dropdown.open { display: block; }
  .nav__dropdown__inner,
  .nav__dropdown > li {
    display: block;
  }
  .nav__dropdown__inner {
    background: none;
    border: none;
    border-left: 2px solid rgba(5,196,242,0.35);
    border-radius: 0;
    padding: 4px 0 4px 16px;
    margin: 0 0 8px 8px;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  /* Support <ul> dropdown structure (no __inner wrapper) */
  .nav__dropdown > li > .nav__drop-link {
    padding-left: 16px;
    border-left: 2px solid rgba(5,196,242,0.35);
    margin: 2px 0 2px 8px;
    display: block;
  }
  .nav__drop-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(154,170,200,0.9) !important;
    background: none;
    border-radius: 0;
    border: none;
  }
  .nav__drop-link:hover,
  .nav__drop-link.active {
    background: none !important;
    color: #05d4ff !important;
  }
  .nav__drop-link svg { flex-shrink: 0; color: var(--cyan); }

  /* Hero mobile */
  .hero__sphere { width: 160px; left: -40px; opacity: 0.3; }
  .hero__ellipse { width: 160px; right: -40px; opacity: 0.2; }
  .hero__figure { display: none; }
  .hero__center {
    padding: 60px 24px 80px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__title { text-align: center; }
  .hero__title-top { font-size: 1.2rem; }
  .hero__title-bold { font-size: 2.2rem; }
  .hero__lower { flex-direction: column; align-items: center; gap: 20px; }
  .hero__desc-block { text-align: center; max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }

  .features-strip { display: none; }

  .about__deco-shape { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img-wrap { width: 100%; height: 300px; margin: 0; }
  .about__img-main { height: 300px; }
  .about__content { text-align: left; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { text-align: center; }
  .service-card__icon { display: flex; justify-content: center; }

  .work__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .testimonials__track { flex-direction: column; }
  .testimonial-card { min-width: 100%; }

  /* FAQ */
  .faq__grid { grid-template-columns: 1fr; gap: 12px; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__header { text-align: center; }

  /* Bento grid (index.html) */
  .fbento__grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .fbento__card--title,
  .fbento__card--imgtext,
  .fbento__card--accent,
  .fbento__card--imgbig {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .fbento__card--imgtext,
  .fbento__card--imgbig { min-height: 280px; }

  /* WWA top (about.html) — left aligned */
  .wwa__top { grid-template-columns: 1fr !important; gap: 16px; }
  .wwa__title { font-size: 1.6rem; text-align: left; }
  .who-we-are .section-label,
  .who-we-are .section-title,
  .who-we-are .section-desc,
  .wwa__top,
  .wwa__stat-desc,
  .wwa__bottom { text-align: left; }

  /* Why Choose Us (index.html) */
  .whyus__layout { grid-template-columns: 1fr; gap: 32px; }
  .whyus__widget-col { flex-direction: row; justify-content: center; height: auto; }
  .whyus__customers { flex-direction: row; padding: 10px 16px; border-radius: 50px; }
  .whyus__avatars { flex-direction: row; }
  .whyus__av { margin-top: 0; margin-left: -6px; }
  .whyus__av:first-child { margin-left: 0; }
  .whyus__customer-label { writing-mode: horizontal-tb; transform: none; font-size: 0.7rem; }
  .whyus__signal { display: none; }
  .whyus__right { display: block; }
  .whyus__img-wrap { height: 280px; border-radius: 20px; }
  .whyus__ball { display: none; }
  .showcase-deco-shape { display: none; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__info { text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer__copy { text-align: center; flex: none; width: 100%; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 16px; }
  .footer__col { text-align: left; }

  .process__steps { grid-template-columns: 1fr; gap: 32px; }

  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .hero__stats { gap: 20px; }
  .hero__card--main { min-width: 200px; }
  .back-to-top { bottom: 20px; right: 20px; }
}

/* ── Stats parallax object ───────────────────────────────── */
.stats-parallax-section { position: relative; overflow: hidden; }
.stats-parallax-obj {
  position: absolute;
  width: 360px;
  left: -100px;
  top: 30%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.82;
  animation: sphereFloat 4s ease-in-out infinite;
  will-change: transform;
  filter: drop-shadow(0 20px 50px rgba(5,196,242,0.25));
}
.stats-parallax-section .container { position: relative; z-index: 1; }

/* ── Pre-footer decoration ───────────────────────────────── */
.pre-footer-deco {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
  pointer-events: none;
  overflow: hidden;
}
.pre-footer-deco__img {
  width: 320px;
  opacity: 0.18;
  filter: drop-shadow(0 0 40px rgba(5,196,242,0.3));
  animation: sphereFloat 5s ease-in-out infinite;
}

/* ── Services List Layout ────────────────────────────────── */
.svc-list-section { padding: 80px 0 60px; }
.svc-list__header { margin-bottom: 64px; }
.svc-list__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
  line-height: 1.2;
}
.svc-row {
  position: relative;
  border-radius: 16px;
  transition: background 0.3s;
}
.svc-row:hover {
  background: linear-gradient(90deg, rgba(5,196,242,0.07) 0%, transparent 70%);
}
.svc-row__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(5,196,242,0.25), rgba(56,196,192,0.1), transparent);
  width: 100%;
}
.svc-row__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 20px;
  transition: padding 0.3s;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.svc-row:hover .svc-row__inner { padding: 40px 24px; }
.svc-row:hover::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #05c4f2, #38c4c0);
  border-radius: 4px;
}
.svc-row__img-thumb {
  width: 100px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  max-width: 0;
  transition: opacity 0.4s, max-width 0.4s;
}
.svc-row__img-thumb img { width: 100%; height: 100%; object-fit: cover; }
.svc-row:hover .svc-row__img-thumb { opacity: 1; max-width: 120px; }
.svc-row__left { flex: 0 0 300px; }
.svc-row__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.svc-row__icon {
  width: 40px; height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.75;
  filter: hue-rotate(165deg) saturate(1.5) brightness(1.2);
  transition: opacity 0.3s, transform 0.3s;
}
.svc-row:hover .svc-row__icon { opacity: 1; transform: scale(1.1); }
.svc-row__title {
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.svc-row:hover .svc-row__title { color: var(--cyan); }
.svc-row__cat {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.svc-row__bullets {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-row__bullets li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
  transition: color 0.3s;
}
.svc-row__bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.svc-row:hover .svc-row__bullets li { color: rgba(255,255,255,0.75); }
.svc-row__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(5,196,242,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.svc-row:hover .svc-row__btn,
.svc-row__btn--active {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  border-color: transparent;
  color: #fff;
  transform: rotate(0deg);
}
.svc-row:hover .svc-row__btn { transform: rotate(45deg); }

/* ── Service Row Hover Image Preview ────────────────────── */
.svc-preview {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 300px;
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.88) translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(5,196,242,0.15);
  top: 0; left: 0;
  will-change: transform, opacity;
}
.svc-preview.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.svc-preview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Services Page Grid ──────────────────────────────────── */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.services-page-grid .service-page-card:nth-child(1) { grid-column: 1 / 3; }
.services-page-grid .service-page-card:nth-child(2) { grid-column: 3 / 5; }
.services-page-grid .service-page-card:nth-child(3) { grid-column: 5 / 7; }
.services-page-grid .service-page-card:nth-child(4) { grid-column: 2 / 4; }
.services-page-grid .service-page-card:nth-child(5) { grid-column: 4 / 6; }
.service-page-card {
  background: var(--surface);
  border: 1px solid rgba(5,196,242,0.12);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-page-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5,196,242,0.3);
  box-shadow: 0 12px 40px rgba(5,196,242,0.1);
}
.service-page-card:hover::before { opacity: 1; }
.service-page-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(5,196,242,0.1);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
}
.service-page-card__icon { margin-bottom: 4px; }
.service-page-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.service-page-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}
.service-page-card__link {
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: letter-spacing 0.3s;
  align-self: flex-start;
}
.service-page-card__link:hover { letter-spacing: 0.03em; }

/* ── Map Section ─────────────────────────────────────────── */
.map-section {
  padding: 80px 0 0;
}
.map-section__header { text-align: center; margin-bottom: 48px; }
.map-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.map-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(5,196,242,0.09) 0%, rgba(8,14,30,0.92) 100%);
  border: 1px solid rgba(5,196,242,0.22);
  border-radius: 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.map-card:hover { border-color: rgba(5,196,242,0.4); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(5,196,242,0.1); }
.map-card:hover { border-color: rgba(5,196,242,0.35); }
.map-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(5,196,242,0.1);
  border: 1px solid rgba(5,196,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.map-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.map-card p  { font-size: 0.83rem; color: var(--text-dim); margin-bottom: 4px; }
.map-card span { font-size: 0.78rem; color: var(--cyan); }
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(5,196,242,0.15);
  filter: brightness(0.9) saturate(0.8) hue-rotate(185deg);
}

/* ── Story + Why Choose Us unified ───────────────────────── */
.story-wcu { padding: 80px 0; }
.story-wcu__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.story-wcu__left { display: flex; flex-direction: column; gap: 0; }
.story-wcu__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.story-wcu__desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}
.story-wcu__divider {
  height: 1px;
  background: rgba(5,196,242,0.15);
  margin: 28px 0;
}
.story-wcu__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-wcu__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(5,196,242,0.1);
  background: rgba(5,196,242,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.story-wcu__feat:hover {
  border-color: rgba(5,196,242,0.25);
  background: rgba(5,196,242,0.07);
}
.story-wcu__feat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(5,196,242,0.1);
  border: 1px solid rgba(5,196,242,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.story-wcu__feat h5 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.story-wcu__feat p  { font-size: 0.75rem; color: var(--text-dim); line-height: 1.5; margin: 0; }

/* RIGHT: image */
.story-wcu__right { position: sticky; top: 100px; }
.story-wcu__img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.story-wcu__img {
  width: 100%; height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}
.story-wcu__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(4,10,24,0.7) 100%);
  border-radius: 24px;
}
.story-wcu__badge {
  position: absolute;
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 18px;
  background: rgba(4,10,24,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(5,196,242,0.2);
  border-radius: 16px;
}
.story-wcu__badge--tl { top: 20px; left: 20px; }
.story-wcu__badge--br { bottom: 90px; right: 20px; }
.story-wcu__mini-stats {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex; gap: 24px;
  padding: 14px 20px;
  background: rgba(4,10,24,0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(5,196,242,0.15);
  border-radius: 16px;
}
.story-wcu__mini-stat { display: flex; flex-direction: column; gap: 2px; }
.story-wcu__mini-stat span:last-child { font-size: 0.68rem; color: rgba(255,255,255,0.55); }

/* ── Working Process Accordion ───────────────────────────── */
.process-section { padding: 80px 0; }
.process-cards {
  display: flex;
  gap: 14px;
  height: 400px;
}
.process-card {
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(5,196,242,0.07) 0%, rgba(8,14,30,0.95) 50%);
  border: 1px solid rgba(5,196,242,0.18);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  flex: 1;
  box-shadow: inset 0 0 40px rgba(5,196,242,0.04), 0 4px 24px rgba(5,196,242,0.07);
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, rgba(5,196,242,0.6), transparent);
}
.process-card--active {
  flex: 1.5;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
  border-color: transparent;
}
.process-card--active::before { display: none; }

/* subtle per-card color tint */
.process-card[data-index="1"] {
  background: linear-gradient(160deg, rgba(5,196,242,0.09) 0%, rgba(8,14,30,0.95) 55%);
  border-color: rgba(5,196,242,0.2);
}
.process-card[data-index="2"] {
  background: linear-gradient(160deg, rgba(56,196,192,0.09) 0%, rgba(8,14,30,0.95) 55%);
  border-color: rgba(56,196,192,0.2);
}
.process-card[data-index="3"] {
  background: linear-gradient(160deg, rgba(15,45,110,0.25) 0%, rgba(8,14,30,0.95) 55%);
  border-color: rgba(5,196,242,0.15);
}

/* big ghost number behind content */
.process-card__num-bg {
  position: absolute;
  bottom: -6px;
  right: 10px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(5,196,242,0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
}
.process-card--active .process-card__num-bg { color: rgba(255,255,255,0.12); }

/* small number top-left */
.process-card__num {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: auto;
  transition: color 0.3s;
}
.process-card--active .process-card__num { color: rgba(255,255,255,0.9); }

/* title + desc — hidden when collapsed */
.process-card__body { overflow: hidden; }
.process-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  white-space: nowrap;
  transition: all 0.4s;
}
.process-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 360px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.process-card--active .process-card__desc {
  opacity: 1;
  max-height: 120px;
}

/* collapsed: rotate title + desc vertically */
.process-card:not(.process-card--active) .process-card__body {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  height: 220px;
}
.process-card:not(.process-card--active) .process-card__title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  white-space: nowrap;
}
.process-card:not(.process-card--active) .process-card__desc {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  opacity: 1;
  max-height: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: horizontal;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 160px;
}

/* dot at bottom */
.process-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 20px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.process-card--active .process-card__dot { background: rgba(255,255,255,0.9); }

/* ── Why Choose Us (About page) ──────────────────────────── */
.wcu-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(5,196,242,0.04) 0%, rgba(15,45,110,0.2) 50%, rgba(56,196,192,0.04) 100%);
  position: relative;
  overflow: hidden;
}

/* ── Shape decoration ─────────────────────── */
.wcu__deco {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 0;
  animation: wcuShapeSpin 30s linear infinite;
}
.wcu__deco--top {
  bottom: auto;
  left: auto;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  animation: wcuShapeSpinRev 22s linear infinite;
}
.wcu__deco-shape--top {
  opacity: 0.12;
  animation: wcuShapeFloat 7s ease-in-out infinite reverse;
}
.wcu__deco-shape {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.18;
  animation: wcuShapeFloat 5s ease-in-out infinite;
}

@keyframes wcuShapeFloat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
@keyframes wcuShapeSpin    { to { transform: rotate(360deg);  } }
@keyframes wcuShapeSpinRev { to { transform: rotate(-360deg); } }

.wcu__glass-ring {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 180px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  animation: glassFloat 5s ease-in-out infinite, glassSpin 18s linear infinite;
  opacity: 0.85;
  filter: drop-shadow(0 10px 40px rgba(5,196,242,0.25));
}
@keyframes glassFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(calc(-50% - 14px)) translateX(6px); }
}
@keyframes glassSpin {
  0%   { filter: drop-shadow(0 10px 40px rgba(5,196,242,0.25)) hue-rotate(0deg); }
  100% { filter: drop-shadow(0 10px 40px rgba(56,196,192,0.35)) hue-rotate(30deg); }
}
.wcu__wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.wcu__wrap--reversed {
  grid-template-columns: 1.2fr 1fr;
  direction: rtl;
}
.wcu__wrap--reversed > * { direction: ltr; }
.wcu__left { display: flex; flex-direction: column; gap: 24px; }
.wcu__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}
.wcu__sub {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.wcu__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  background: rgba(8,14,30,0.7);
  border: 1px solid rgba(5,196,242,0.15);
  border-radius: 16px;
}
.wcu__stat { display: flex; flex-direction: column; gap: 4px; }
.wcu__stat-num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.wcu__stat-label { font-size: 0.78rem; color: var(--text-dim); }
.wcu__stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }
.wcu__cta { align-self: flex-start; border-radius: 50px; }

.wcu__mini-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(5,196,242,0.05);
  border: 1px solid rgba(5,196,242,0.12);
  border-radius: 16px;
}
.wcu__mini-stat { display: flex; flex-direction: column; gap: 3px; }
.wcu__mini-num  { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.wcu__mini-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.wcu__mini-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.wcu__imgs {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: start;
}
.wcu__img-main img,
.wcu__img-side img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  height: 220px;
}
.wcu__img-main img { height: 260px; }
.wcu__img-side { position: relative; }
.wcu__img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(5,196,242,0.12);
  border: 1px solid rgba(5,196,242,0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wcu__img-badge-num { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.wcu__img-badge-txt { font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.wcu__img-float {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.wcu__float-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.wcu__img-float:hover .wcu__float-img { transform: scale(1.04); }
.wcu__float-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(5,196,242,0.12);
  border: 1px solid rgba(5,196,242,0.3);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
}
.wcu__float-badge > div { display: flex; flex-direction: column; gap: 2px; }
.wcu__float-badge-num { font-size: 1.3rem; font-weight: 900; line-height: 1; }
.wcu__float-badge-txt { font-size: 0.68rem; color: rgba(255,255,255,0.65); }

.wcu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.wcu__card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.wcu__card:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.wcu__card:nth-child(3) { grid-column: 2; grid-row: 2; }
.wcu__card:nth-child(4) { grid-column: 3; grid-row: 2; }
.wcu__card {
  background: rgba(8,14,30,0.85);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wcu__card:nth-child(1) { justify-content: space-between; min-height: 320px; }
.wcu__card:nth-child(2) { flex-direction: row; align-items: flex-end; gap: 40px; }
.wcu__card:nth-child(2) .wcu__card-text { flex: 1; }
.wcu__card:nth-child(2) .wcu__card-num { position: static; font-size: 5rem; font-weight: 900; opacity: 0.08; line-height: 1; flex-shrink: 0; align-self: center; }
.wcu__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.wcu__card:hover {
  border-color: rgba(5,196,242,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(5,196,242,0.1);
}
.wcu__card:hover::after { opacity: 1; }
.wcu__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,196,242,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.wcu__card:hover::before { opacity: 1; }
.wcu__card-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.wcu__card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(5,196,242,0.1);
  border: 1px solid rgba(5,196,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.wcu__card:hover .wcu__card-icon { background: rgba(5,196,242,0.2); }
.wcu__card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.wcu__card p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── Service Hero ─────────────────────────────────────────── */
.svc-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}
.svc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}
.svc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,196,242,0.15) 0%, rgba(15,45,110,0.5) 50%, rgba(56,196,192,0.1) 100%);
}
.svc-hero__inner {
  position: relative;
  z-index: 2;
}
.svc-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.svc-hero__breadcrumb a { color: var(--cyan); }
.svc-hero__breadcrumb span { opacity: 0.4; }
.svc-hero__title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.svc-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Who We Are (about page) ──────────────────────────────── */
.wwa__top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}
.wwa__title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
}
.wwa__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.wwa__img-col {
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg, rgba(5,212,255,0.15) 0%, rgba(46,232,192,0.08) 50%, rgba(5,212,255,0.05) 100%);
  border-radius: 28px;
  border: 1px solid rgba(5,212,255,0.2);
  box-shadow: 0 0 60px rgba(5,212,255,0.10), 0 20px 60px rgba(0,0,0,0.3);
}
.wwa__img-col::before {
  content: '';
  position: absolute;
  top: -1px; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5,212,255,0.6), rgba(46,232,192,0.6), transparent);
  border-radius: 999px;
}
.wwa__img-col::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, rgba(8,12,32,0.5), transparent);
  border-radius: 0 0 18px 18px;
  pointer-events: none;
  z-index: 1;
}
.wwa__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  transition: transform 0.5s ease;
}
.wwa__img-col:hover .wwa__img { transform: scale(1.03); }
.wwa__img-col:hover {
  box-shadow: 0 0 80px rgba(5,212,255,0.18), 0 20px 60px rgba(0,0,0,0.3);
  border-color: rgba(5,212,255,0.35);
}
.wwa__big-stat {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 12px;
}
.wwa__stat-num {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wwa__stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  margin-top: 8px;
}
.wwa__stat-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 24px;
}
.wwa__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wwa__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.wwa__bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--cyan);
  background: rgba(5,196,242,0.1);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2305c4f2' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.wwa__features-card {
  background: rgba(8,14,30,0.9);
  border: 1px solid rgba(5,196,242,0.15);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wwa__feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wwa__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5,196,242,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.wwa__feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.wwa__feature-item p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.wwa__feature-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.wwa__discover-btn {
  margin-top: auto;
  align-self: flex-start;
  border-radius: 50px;
}

/* ── Inner Pages ──────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/about-1-1.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.6);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 30%, var(--bg) 100%),
    linear-gradient(135deg, rgba(5,212,255,0.18) 0%, rgba(46,232,192,0.20) 50%, rgba(5,212,255,0.10) 100%);
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.page-hero__breadcrumb a { color: var(--cyan); }
.page-hero__breadcrumb span { opacity: 0.4; }
.page-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.inner-section { padding: 80px 0; }
.inner-section--alt { background: transparent; }

/* ── Who We Are Decorative Shape ─────────────────────────── */
.who-we-are {
  position: relative;
  overflow: hidden;
}
.wwa__deco-shape {
  position: absolute;
  top: 20px;
  right: -80px;
  width: 420px;
  pointer-events: none;
  z-index: 0;
  filter: hue-rotate(165deg) saturate(2) brightness(1.2) drop-shadow(0 0 30px rgba(5,196,242,0.5));
  opacity: 0.85;
  animation: wwaDeco 6s ease-in-out infinite;
}
@keyframes wwaDeco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(6deg); }
}
@media (max-width: 900px) {
  .wwa__deco-shape { width: 260px; right: -50px; opacity: 0.5; }
}
@media (max-width: 600px) {
  .wwa__deco-shape { display: none; }
}

/* ── About Inner Page ─────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story__img-wrap {
  position: relative;
}
.about-story__img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-story__img-wrap:hover .about-story__img {
  transform: scale(1.02);
}
.about-story__img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(8,14,30,0.92);
  border: 1px solid rgba(5,196,242,0.3);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(5,196,242,0.1);
  animation: badgeFloat 3s ease-in-out infinite;
}
.about-story__badge-num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.about-story__badge-txt {
  font-size: 0.72rem;
  color: var(--text-dim);
  white-space: nowrap;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.about-story__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.about-story__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-story__desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  background: var(--surface);
  border: 1px solid rgba(5,196,242,0.15);
  border-radius: 20px;
  padding: 36px 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(5,196,242,0.15);
  border-color: rgba(5,196,242,0.35);
}
.stat-card:hover::before { opacity: 1; }
.stat-card__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.stat-card__label {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Team Cards */
.team-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
}
.team-card-inner:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(5,196,242,0.25);
}
.team-card-inner__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.team-card-inner__body {
  padding: 24px;
}
.team-card-inner__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.team-card-inner__role {
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
}

/* Why Us Feature Cards */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--surface);
  border: 1px solid rgba(5,196,242,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(5,196,242,0.3);
}
.why-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(5,196,242,0.1);
  border: 1px solid rgba(5,196,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--cyan);
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Services Page Grid */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-page-card {
  background: var(--surface);
  border: 1px solid rgba(5,196,242,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(5,196,242,0.3);
}
.service-page-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(5,196,242,0.12);
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.service-page-card__icon { margin-bottom: 4px; }
.service-page-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.service-page-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  flex: 1;
}
.service-page-card__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cyan);
  transition: gap 0.3s, opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-page-card__link:hover { opacity: 0.8; }

/* Service Detail Layout */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-detail__img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}
.service-detail__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-detail__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.service-detail__desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.service-detail__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.service-detail__list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-step-card {
  background: var(--surface);
  border: 1px solid rgba(5,196,242,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.process-step-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}
.process-step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Tech Stack / Platform Pills */
.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.tech-pill {
  padding: 8px 20px;
  background: rgba(5,196,242,0.08);
  border: 1px solid rgba(5,196,242,0.2);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  transition: background 0.3s, border-color 0.3s;
}
.tech-pill:hover {
  background: rgba(5,196,242,0.18);
  border-color: var(--cyan);
}

/* SEO / Hosting Feature Cards */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: linear-gradient(145deg, rgba(5,196,242,0.08) 0%, rgba(10,18,40,0.92) 100%);
  border: 1px solid rgba(5,196,242,0.2);
  border-radius: 20px;
  padding: 44px 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(5,196,242,0.3);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(5,196,242,0.1);
  border: 1px solid rgba(5,196,242,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.feature-card__body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card__body p {
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Inner CTA Section */
.inner-cta {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(5,196,242,0.07) 0%, rgba(8,20,50,0.95) 50%, rgba(56,196,192,0.06) 100%);
  border-top: 1px solid rgba(5,196,242,0.12);
  border-bottom: 1px solid rgba(5,196,242,0.12);
}
/* Inner CTA orb decorations */
.inner-cta::before,
.inner-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: ctaOrbPulse 6s ease-in-out infinite;
}
.inner-cta::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(5,196,242,0.18) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.inner-cta::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(56,196,192,0.14) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation-delay: -3s;
}
@keyframes ctaOrbPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}
.inner-cta .container { position: relative; z-index: 1; }
.inner-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.inner-cta p {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Process Steps */
.svc-process {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.svc-process__step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  background: rgba(8,14,30,0.8);
  border: 1px solid rgba(5,196,242,0.12);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.svc-process__step:hover {
  border-color: rgba(5,196,242,0.35);
  transform: translateY(-4px);
}
.svc-process__num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.svc-process__step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.svc-process__step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.svc-process__arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--cyan);
  font-size: 1.4rem;
  opacity: 0.5;
  margin-top: 40px;
}

/* Project Detail */
.project-detail-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  margin-bottom: 60px;
  max-height: 540px;
}
.project-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid rgba(5,196,242,0.12);
  border-radius: 20px;
  margin-bottom: 60px;
}
.project-meta-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
.project-meta-item__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.project-desc {
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.85;
  max-width: 760px;
}
.project-desc p + p { margin-top: 16px; }

@media (max-width: 1024px) {
  /* Story + WCU */
  .story-wcu__wrap { grid-template-columns: 1fr; gap: 48px; }
  .story-wcu__right { position: static; }
  .story-wcu__img { height: 380px; }

  /* WCU bento */
  .wcu__wrap { grid-template-columns: 1fr; gap: 48px; }
  .wcu__grid { grid-template-columns: 1fr 1fr; }
  .wcu__card:nth-child(1),
  .wcu__card:nth-child(2),
  .wcu__card:nth-child(3),
  .wcu__card:nth-child(4) { grid-column: auto; grid-row: auto; }

  /* WWA */
  .wwa__bottom { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Process cards */
  .process-cards { flex-wrap: wrap; height: auto; }
  .process-card { flex: 1 1 calc(50% - 8px); min-height: 200px; }
  .process-card--active { flex: 1 1 calc(50% - 8px); }

  /* Services list */
  .svc-row__inner { gap: 24px; }
  .svc-row__left { flex: 0 0 220px; }
  .svc-row__bullets { display: none; }

  /* Map */
  .map-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Testimonials */
  .testi__grid { grid-template-columns: 1fr; }
  .testi__quote-card { min-height: 220px; }
  .testi__bottom { flex-direction: column; align-items: stretch; gap: 0; }
  .testi__bottom-divider { width: 100%; height: 1px; }
  .testi__platform { padding: 16px 20px; }
  .testi__top { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Page hero */
  .page-hero { padding: 120px 0 60px; }
  .page-hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Who We Are */
  .wwa__top { flex-direction: column; gap: 20px; }
  .wwa__bottom { grid-template-columns: 1fr; }
  .wwa__features-card { padding: 24px 20px; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-parallax-obj { display: none; }

  /* Story + WCU */
  .story-wcu__features { grid-template-columns: 1fr; }
  .story-wcu__img { height: 280px; }
  .story-wcu__badge--br { display: none; }
  .story-wcu__mini-stats { gap: 16px; padding: 10px 14px; }

  /* WCU */
  .wcu__grid { grid-template-columns: 1fr; }
  .wcu__card:nth-child(1) { min-height: auto; }
  .wcu__card:nth-child(2) { flex-direction: column; align-items: flex-start; gap: 0; }
  .wcu__card:nth-child(2) .wcu__card-num { font-size: 1rem; opacity: 0.4; }
  .wcu__mini-stats { gap: 12px; padding: 14px 16px; }

  /* Process accordion */
  .process-cards { flex-direction: column; height: auto; gap: 12px; }
  .process-card,
  .process-card--active { flex: none; width: 100%; min-height: 140px; }
  .process-card:not(.process-card--active) .process-card__body { flex-direction: row; height: auto; }
  .process-card:not(.process-card--active) .process-card__title,
  .process-card:not(.process-card--active) .process-card__desc {
    writing-mode: horizontal-tb;
    transform: none;
    white-space: normal;
    max-width: 100%;
    opacity: 1;
    max-height: none;
    color: rgba(255,255,255,0.6);
  }

  /* Services list */
  .svc-row__inner { flex-wrap: wrap; gap: 16px; padding: 20px 0; }
  .svc-row__left { flex: 1 1 100%; }
  .svc-row__bullets { display: none; }
  .svc-row__img-thumb { display: none; }
  .svc-row__title { font-size: 1.3rem; }
  .svc-list__title { font-size: 1.8rem; }

  /* Contact */
  .contact.section { padding-top: 16px !important; padding-left: 12px !important; padding-right: 12px !important; }
  .contact__wrap { grid-template-columns: 1fr; border-radius: 20px; }
  .contact__img-wrap { min-height: 580px; }
  .contact__img-content { padding: 28px 24px; justify-content: flex-start; padding-top: 28px; }
  .contact__title { font-size: 1.5rem; margin: 8px 0 10px; }
  .contact__desc { margin-bottom: 16px; font-size: 0.85rem; }
  .contact__meta-row { flex-direction: column; gap: 12px; }
  .contact__meta-divider { display: none; }
  .contact__meta-item { gap: 4px; }
  .contact__form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-cards { grid-template-columns: 1fr; gap: 14px; }
  .map-section { padding: 40px 0 0; }

  /* Process layout (index.html) */
  .process__layout { grid-template-columns: 1fr; gap: 40px; }
  .process__img { max-width: 200px; margin: 0 auto; display: block; }

  /* Story + WCU (about.html) */
  .story-wcu__wrap { grid-template-columns: 1fr; gap: 40px; }
  .story-wcu__right { position: static; }
  .story-wcu__img { height: 280px; object-fit: cover; }
  .story-wcu__badge--br { display: none; }

  /* WWA (about.html) */
  .wwa__top { grid-template-columns: 1fr; gap: 16px; }
  .wwa__bottom { grid-template-columns: 1fr; gap: 24px; }
  .wwa__img { min-height: 220px; }

  /* About */
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: 1fr !important; }
  .services-page-grid .service-page-card:nth-child(n) { grid-column: auto; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .project-meta-row { grid-template-columns: repeat(2, 1fr); }

  /* Pre-footer */
  .pre-footer-deco__img { width: 200px; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 24px 16px; }
  .process-cards { gap: 10px; }
  .wcu__mini-stats { flex-wrap: wrap; }
  .story-wcu__title { font-size: 1.6rem; }
  .svc-row__btn { width: 42px; height: 42px; }
  .page-hero__title { font-size: 1.8rem; }
}
