/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #6366f1;
  --primary-dark:  #4f46e5;
  --primary-light: #4f46e5;
  --accent:        #059669;
  --bg:            #ffffff;
  --bg-2:          #f8faff;
  --bg-3:          #eef2ff;
  --heading:       #0f172a;
  --text:          #334155;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --card-bg:       #ffffff;
  --card-border:   #e2e8f0;
  --radius:        16px;
  --radius-sm:     10px;
  --shadow:        0 20px 60px rgba(0,0,0,.12);
  --shadow-card:   0 2px 8px rgba(0,0,0,.06), 0 8px 28px rgba(0,0,0,.08);
  --transition:    .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section helpers ─── */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}
.section-head { margin-bottom: 64px; }
.section-head .section-sub { margin: 0 auto; text-align: center; }
.section-head .section-tag,
.section-head .section-title { text-align: center; display: block; }
.section-head .section-tag {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99,102,241,.5);
}
.btn--ghost {
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.2);
  color: var(--primary-dark);
}
.btn--ghost:hover { background: rgba(99,102,241,.14); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn--white {
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.btn--wa {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  background: #20bc5a;
}
.w-full { width: 100%; justify-content: center; }

/* ─── Gradient text ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -.02em;
}
.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--heading);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__links a:hover { color: var(--heading); background: rgba(0,0,0,.04); }
.nav__cta {
  background: rgb(105, 188, 232) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  
}
.nav__cta:hover { box-shadow: 0 4px 20px rgba(105,188,232,.4); }
.nav__wa {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  background: #25d366 !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  transition: var(--transition);
}
.nav__wa:hover {
  background: #20bc5a !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 101;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background: #ffffff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: rgba(99,102,241,.13);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: rgba(139,92,246,.1);
  top: 100px; right: -100px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 400px; height: 400px;
  background: rgba(5,150,105,.09);
  bottom: -100px; left: 30%;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--heading);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 24px 40px;
}
.stat { text-align: center; }
.stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading);
  font-variant-numeric: tabular-nums;
}
.stat__sym { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.stat__label { display: block; font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.stat__divider {
  width: 1px; height: 48px;
  background: var(--border);
}
.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  width: 28px; height: 44px;
  border: 2px solid rgba(99,102,241,.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator span {
  width: 4px; height: 10px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.marquee-track .dot {
  color: var(--primary);
  font-size: 1.1rem;
  line-height: 1;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99,102,241,.25);
  box-shadow: 0 16px 48px rgba(99,102,241,.12), 0 4px 12px rgba(0,0,0,.06);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(99,102,241,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: rgba(99,102,241,.18);
  transform: scale(1.1);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--primary-dark); }

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why { background: var(--bg-2); }
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__desc {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.75;
}
.why__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why__check {
  width: 28px; height: 28px;
  background: rgba(5,150,105,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.why__list li strong {
  display: block;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 2px;
  font-size: .95rem;
}
.why__list li span {
  font-size: .88rem;
  color: var(--text-muted);
}
.why__card-wrap {
  position: relative;
  height: 420px;
}
.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 2;
}
.fc1 { top: 20px; right: 0; animation-delay: 0s; }
.fc2 { top: 50%; right: 40px; transform: translateY(-50%); animation-delay: -1.5s; }
.fc3 { bottom: 20px; right: 10px; animation-delay: -3s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc2 { animation-name: floatCard2; }
@keyframes floatCard2 {
  0%,100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}
.fc-icon { font-size: 1.8rem; }
.fc-title { font-size: .75rem; color: var(--text-muted); margin-bottom: 2px; }
.fc-value { font-size: 1.15rem; font-weight: 700; color: var(--heading); }
.why__illustration {
  position: absolute;
  top: 50%; left: 20px;
  transform: translateY(-50%);
  width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.illus-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.illus-ring--1 { width: 220px; height: 220px; animation-delay: 0s; }
.illus-ring--2 { width: 160px; height: 160px; animation-delay: -1s; }
.illus-ring--3 { width: 100px; height: 100px; animation-delay: -2s; }
@keyframes ringPulse {
  0%,100% { opacity: .3; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.04); }
}
.illus-center {
  width: 80px; height: 80px;
  background: rgba(99,102,241,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(99,102,241,.3);
  z-index: 1;
}

/* ══════════════════════════════
   GALLERY SLIDER
══════════════════════════════ */
.gallery { padding-bottom: 0; }

.gallery__slider-wrap {
  position: relative;
  overflow: hidden;
  height: 580px;
  margin-top: 0;
  background: var(--bg-2);
}

.gallery__track {
  display: flex;
  height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.gallery__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}

.gallery__slide.active img { transform: scale(1.04); }

.gallery__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,23,42,.72) 0%,
    rgba(15,23,42,.38) 55%,
    transparent 100%
  );
  z-index: 1;
}

.gallery__caption {
  position: absolute;
  bottom: 72px;
  left: 80px;
  z-index: 2;
  max-width: 500px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .5s ease .15s, opacity .5s ease .15s;
}

.gallery__slide.active .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery__caption-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(99,102,241,.75);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}

.gallery__caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.gallery__caption p {
  font-size: .98rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

/* Nav buttons */
.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  backdrop-filter: blur(12px);
}

.gallery__btn:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.65);
  transform: translateY(-50%) scale(1.1);
}

.gallery__btn--prev { left: 36px; }
.gallery__btn--next { right: 36px; }

/* Dots */
.gallery__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .3s ease, width .3s ease, border-radius .3s ease;
}

.gallery__dot.active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* Thumbnail strip */
.gallery__thumbs {
  display: flex;
  gap: 12px;
  padding: 20px 80px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  flex-shrink: 0;
  width: 120px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: border-color .3s ease, transform .3s ease;
  position: relative;
}
.gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery__thumb:hover img { transform: scale(1.06); }
.gallery__thumb.active { border-color: var(--primary); }
.gallery__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(99,102,241,.25);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__thumb.active::after { opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .gallery__thumbs { padding: 16px 40px; }
}
@media (max-width: 768px) {
  .gallery__slider-wrap { height: 440px; }
  .gallery__caption { left: 28px; bottom: 68px; max-width: calc(100% - 80px); }
  .gallery__btn { width: 42px; height: 42px; }
  .gallery__btn--prev { left: 16px; }
  .gallery__btn--next { right: 16px; }
  .gallery__thumbs { padding: 12px 24px; gap: 8px; }
  .gallery__thumb { width: 90px; height: 54px; }
}
@media (max-width: 480px) {
  .gallery__slider-wrap { height: 360px; }
  .gallery__caption { left: 20px; bottom: 56px; }
  .gallery__caption h3 { font-size: 1.4rem; }
}

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(99,102,241,.15);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.step-icon {
  width: 64px; height: 64px;
  background: rgba(99,102,241,.09);
  border: 2px solid rgba(99,102,241,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: rgba(99,102,241,.18);
  border-color: var(--primary);
  transform: scale(1.1);
}
.step-icon svg { width: 28px; height: 28px; }
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.process-step p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(99,102,241,.3), rgba(99,102,241,.7));
  margin-top: 78px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 10px; height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.pricing { background: var(--bg-2); }
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.toggle-label.active { color: var(--heading); }
.toggle-btn {
  width: 48px; height: 26px;
  background: rgba(99,102,241,.15);
  border-radius: 100px;
  border: 1px solid rgba(99,102,241,.3);
  padding: 3px;
  transition: var(--transition);
  position: relative;
}
.toggle-thumb {
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(99,102,241,.4);
}
.toggle-btn.active .toggle-thumb { transform: translateX(22px); }
.save-badge {
  font-size: .72rem;
  background: rgba(5,150,105,.12);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(5,150,105,.25);
  font-weight: 600;
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99,102,241,.1), 0 4px 12px rgba(0,0,0,.06);
}
.pricing-card--featured {
  background: linear-gradient(160deg, #eef2ff 0%, #fff 60%);
  border-color: rgba(99,102,241,.35);
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(99,102,241,.15);
}
.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}
.pricing-card__header p { font-size: .85rem; color: var(--text-muted); }
.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin: 28px 0;
}
.currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 6px;
}
.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.period {
  font-size: .9rem;
  color: var(--text-muted);
  padding-bottom: 6px;
}
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
}
.pricing-card__features li svg { flex-shrink: 0; color: var(--accent); }
.pricing-card__features li.disabled { color: var(--text-muted); opacity: .5; }
.pricing-card__features li.disabled svg { color: var(--text-muted); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials { overflow: hidden; background: var(--bg); }
.testimonials__track-wrap {
  overflow: hidden;
  margin-bottom: 28px;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testi-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.testi-card:hover {
  border-color: rgba(99,102,241,.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(99,102,241,.1), 0 4px 12px rgba(0,0,0,.06);
}
.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c, var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .92rem; color: var(--heading); }
.testi-author span { font-size: .8rem; color: var(--text-muted); }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════
   CTA BANNER  (keeps vibrant color so white text works)
══════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #7c3aed 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb--1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,.12);
  top: -100px; left: -100px;
}
.cta-orb--2 {
  width: 350px; height: 350px;
  background: rgba(5,150,105,.2);
  bottom: -100px; right: -50px;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner__inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner__inner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(99,102,241,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact__details strong { display: block; font-size: .85rem; color: var(--heading); margin-bottom: 2px; }
.contact__details span { font-size: .88rem; color: var(--text-muted); }

/* Form */
.contact__form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .92rem;
  color: var(--heading);
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  resize: none;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(100,116,139,.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.form-group select option { background: #fff; color: var(--heading); }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(5,150,105,.08);
  border: 1px solid rgba(5,150,105,.22);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.7;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__socials a:hover {
  color: var(--primary-dark);
  border-color: rgba(99,102,241,.3);
  background: rgba(99,102,241,.08);
}
.footer__socials a[aria-label="Twitter / X"] {
  color: #000;
  border-color: #000;
}
.footer__socials a[aria-label="Twitter / X"]:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.footer__socials a[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}
.footer__socials a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #e08323, #d6582c, #cc1733, #bc1356, #ac0878);
  color: #fff;
  border-color: transparent;
}
.footer__socials a[aria-label="WhatsApp"] {
  color: #25D366;
  border-color: #25D366;
}
.footer__socials a[aria-label="WhatsApp"]:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.footer__col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__col li a:hover { color: var(--heading); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .pricing__cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .why__inner { gap: 48px; }
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    padding: 72px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 99;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .hero__stats { gap: 16px; padding: 20px 24px; }
  .stat__divider { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__card-wrap { height: 280px; }
  .process__steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, rgba(99,102,241,.3), rgba(99,102,241,.7)); }
  .process-connector::after { right: -4px; top: auto; bottom: -4px; }
  .pricing__cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonials__track .testi-card { width: calc(100% - 24px); }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .contact__form { padding: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .process-step { padding: 24px 16px; }
}

/* ══════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
.wa-float svg { display: block; }

/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,.45);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.35);opacity: 0;  }
  100% { transform: scale(1.35);opacity: 0;  }
}

/* Tooltip */
.wa-float__tip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: #fff;
  color: #0f172a;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.wa-float__tip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: #fff;
}
.wa-float:hover .wa-float__tip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ─── Custom scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ══════════════════════════════
   ACTIVE NAV LINK
══════════════════════════════ */
.nav__links a.active {
  color: var(--heading);
  font-weight: 600;
}

/* ══════════════════════════════
   SECTION CTA (homepage services)
══════════════════════════════ */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════ */
.page-hero {
  padding: 96px 0 48px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.page-hero__orb--1 {
  width: 400px; height: 400px;
  background: rgba(99,102,241,.1);
  top: -150px; left: -100px;
}
.page-hero__orb--2 {
  width: 350px; height: 350px;
  background: rgba(5,150,105,.08);
  top: -100px; right: -80px;
  animation-delay: -4s;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.page-hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-hero-img-wrap {
  width: 380px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  margin: 24px auto 16px;
  flex-shrink: 0;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .about-hero-img-wrap {
    width: 240px;
    height: 300px;
  }
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* ══════════════════════════════
   STATS BAR (about page)
══════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 40px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stats-bar__item { text-align: center; padding: 0 8px; }
.stats-bar__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stats-bar__sym { font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,.8); }
.stats-bar__label { display: block; font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.stats-bar__divider { width: 1px; height: 52px; background: rgba(255,255,255,.2); }

/* ══════════════════════════════
   SERVICES FULL GRID (services page)
══════════════════════════════ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: var(--transition);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(99,102,241,.1), 0 4px 12px rgba(0,0,0,.06);
  border-color: rgba(99,102,241,.2);
}
.svc-card__img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  margin-bottom: 4px;
  background: var(--bg-2);
  flex-shrink: 0;
}
.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.svc-card:hover .svc-card__img img { transform: scale(1.04); }
.svc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.svc-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--ic, #eef2ff);
  display: flex; align-items: center; justify-content: center;
  color: var(--stroke, var(--primary));
  transition: var(--transition);
}
.svc-card:hover .svc-card__icon { transform: scale(1.08); }
.svc-card__icon svg { width: 28px; height: 28px; }
.svc-card__badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(99,102,241,.1);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 100px;
  height: fit-content;
}
.svc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
}
.svc-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.svc-features li {
  font-size: .83rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.svc-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: .8rem;
}

/* ══════════════════════════════
   SERVICE DETAIL SECTIONS
══════════════════════════════ */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail--alt { direction: rtl; }
.svc-detail--alt > * { direction: ltr; }
.svc-detail__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.svc-detail__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
  margin-bottom: 16px;
}
.svc-detail__content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.svc-detail__points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.svc-detail__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.svc-dp-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.svc-detail__point strong { display: block; font-size: .92rem; color: var(--heading); margin-bottom: 2px; }
.svc-detail__point p { font-size: .84rem; color: var(--text-muted); margin: 0; }
.svc-visual-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-visual-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
}
.svc-visual-label { color: var(--text-muted); }
.svc-visual-val { font-weight: 700; color: var(--heading); }
.svc-visual-val.accent { color: var(--accent); }
.svc-visual-status.filed { color: var(--accent); font-weight: 700; }
.svc-visual-due { color: var(--primary); font-weight: 600; }
.svc-visual-divider { height: 1px; background: var(--border); }

/* ══════════════════════════════
   INDUSTRIES (services page)
══════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.industry-card:hover {
  border-color: rgba(99,102,241,.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99,102,241,.1);
}
.industry-icon { font-size: 2rem; }
.industry-card span { font-size: .85rem; font-weight: 600; color: var(--heading); }

/* ══════════════════════════════
   STORY SECTION (about page)
══════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.story-sig-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.story-signature strong { display: block; font-size: .95rem; color: var(--heading); }
.story-signature span { font-size: .82rem; color: var(--text-muted); }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(99,102,241,.15) 100%);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
}
.timeline-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,.2);
}
.timeline-year {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}
.timeline-content h4 { font-size: .95rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.timeline-content p { font-size: .82rem; color: var(--text-muted); }

/* ══════════════════════════════
   MISSION / VISION (about page)
══════════════════════════════ */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mv-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.mv-card--accent {
  background: linear-gradient(160deg, #eef2ff 0%, #fff 60%);
  border-color: rgba(99,102,241,.3);
}
.mv-icon { font-size: 2.2rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
.mv-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════
   VALUES GRID (about page)
══════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(99,102,241,.2); }
.value-card__num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(99,102,241,.08);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
  font-variant-numeric: tabular-nums;
}
.value-card__icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.value-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════
   TEAM SECTION (about page)
══════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(99,102,241,.2); }
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--tc, var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.team-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 3px; }
.team-card__role { font-size: .8rem; color: var(--primary); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card__body p { font-size: .84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.team-card__quals { display: flex; gap: 8px; flex-wrap: wrap; }
.team-card__quals span {
  font-size: .72rem;
  font-weight: 700;
  background: rgba(99,102,241,.09);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(99,102,241,.2);
}

/* ══════════════════════════════
   CERTIFICATIONS (about page)
══════════════════════════════ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: var(--transition);
}
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.cert-icon { font-size: 2.2rem; }
.cert-card strong { font-size: .9rem; color: var(--heading); }
.cert-card span { font-size: .78rem; color: var(--text-muted); }
.cert-img {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-page__form-header { margin-bottom: 32px; }
.contact-page__form-header h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.contact-page__form-header p { color: var(--text-muted); }
.contact-page__form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.contact-info-card:last-child { margin-bottom: 0; }
.contact-info-card h3 { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 20px; }
.office-hours { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.office-hours li { display: flex; justify-content: space-between; font-size: .88rem; }
.office-hours li span { color: var(--text-muted); }
.office-hours li strong { color: var(--heading); }
.office-hours-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
}
.quick-connect { display: flex; gap: 12px; flex-wrap: wrap; }
.qc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  background: rgba(from var(--qc) r g b / .09);
  color: var(--qc);
  border: 1px solid rgba(from var(--qc) r g b / .2);
  transition: var(--transition);
}
.qc-btn:hover { background: var(--qc); color: #fff; }

/* ══════════════════════════════
   MAP STRIP
══════════════════════════════ */
.map-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.map-placeholder {
  position: relative;
  height: clamp(460px, 60vw, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff 0%, #f8faff 100%) center / contain no-repeat;
  background-color: #0a0e1e;
  overflow: hidden;
}
.map-placeholder__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,30,.55) 0%, rgba(10,14,30,.75) 100%);
}
.map-placeholder__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.map-placeholder__inner svg { color: #fff; margin-bottom: 12px; opacity: .9; }
.map-placeholder__inner p { font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 4px; }

/* ══════════════════════════════
   FAQ (contact page)
══════════════════════════════ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: var(--card-bg);
  color: var(--heading);
  font-size: .95rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--bg-2); color: var(--primary); }
.faq-item.open .faq-question { background: var(--bg-3); color: var(--primary); }
.faq-chevron { flex-shrink: 0; transition: transform .3s ease; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  background: var(--bg-3);
}
.faq-answer p {
  padding: 0 28px 24px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ══════════════════════════════
   ADDITIONAL RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid .mv-card:last-child { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; }
  .svc-detail { grid-template-columns: 1fr 1fr; gap: 48px; }
  .story-grid { gap: 48px; }
  .contact-page__grid { gap: 40px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 72px 0 32px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail--alt { direction: ltr; }
  .svc-detail--alt .svc-detail__visual { order: -1; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-grid .mv-card:last-child { max-width: 100%; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__inner { gap: 20px; }
  .stats-bar__divider { display: none; }
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-page__form-wrap { padding: 28px; }
}

/* ══════════════════════════════
   HERO SPLIT LAYOUT (overrides)
══════════════════════════════ */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
  max-width: 1200px;
  width: 100%;
}
.hero__sub { margin-left: 0; margin-right: 0; }
.hero__actions { justify-content: flex-start; }
.hero__stats {
  justify-content: flex-start;
  padding: 20px 28px;
}

/* ── Typewriter cursor ── */
.type-cycle {
  border-right: 3px solid var(--primary);
  padding-right: 4px;
  animation: cursorBlink .8s step-end infinite;
}
@keyframes cursorBlink {
  0%,100% { border-color: var(--primary); }
  50%     { border-color: transparent; }
}

/* ══════════════════════════════
   HERO DASHBOARD WIDGET
══════════════════════════════ */
.hero__dashboard {
  position: relative;
  padding: 32px 16px;
}
.dash-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(99,102,241,.16), 0 4px 16px rgba(0,0,0,.06);
  position: relative;
  z-index: 2;
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(5,150,105,.1);
  border: 1px solid rgba(5,150,105,.22);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 4px;
}
.dash-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.dash-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--heading);
}
.dash-fy {
  font-size: .75rem;
  color: var(--text-muted);
  background: var(--bg-2);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.dash-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.dash-metric__label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.dash-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dash-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-3);
  border-radius: 100px;
  overflow: hidden;
}
.dash-bar {
  height: 100%;
  width: 0;
  background: var(--c, var(--primary));
  border-radius: 100px;
  animation: barGrow 1.4s cubic-bezier(.4,0,.2,1) forwards;
  animation-delay: .6s;
}
@keyframes barGrow {
  to { width: var(--w, 50%); }
}
.dash-bar__val {
  font-size: .78rem;
  font-weight: 700;
  color: var(--heading);
  min-width: 42px;
  text-align: right;
}
.dash-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dash-stat { text-align: center; }
.dash-stat__val {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--heading);
  font-variant-numeric: tabular-nums;
}
.dash-stat__label {
  font-size: .68rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.dash-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
}
.dash-status__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s ease-in-out infinite;
}

/* Notification toasts */
.dash-notif {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  z-index: 3;
  white-space: nowrap;
}
.dash-notif--1 { top: 8px; right: -8px; animation: notifFloat1 3.2s ease-in-out infinite; }
.dash-notif--2 { bottom: 8px; left: -8px; animation: notifFloat2 3.8s ease-in-out infinite; }
@keyframes notifFloat1 { 0%,100% { transform: translateY(0) rotate(.5deg); } 50% { transform: translateY(-8px) rotate(-.5deg); } }
@keyframes notifFloat2 { 0%,100% { transform: translateY(0) rotate(-.5deg); } 50% { transform: translateY(8px) rotate(.5deg); } }
.notif-icon { font-size: 1.4rem; }
.notif-title { font-size: .8rem; font-weight: 700; color: var(--heading); }
.notif-sub { font-size: .7rem; color: var(--text-muted); }

/* ══════════════════════════════
   SERVICE FILTER TABS
══════════════════════════════ */
.services__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stab {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}
.stab:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: rgba(99,102,241,.04);
}
.stab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,.32);
}
.service-card {
  transition: var(--transition), opacity .3s ease, transform .3s ease;
}

/* ══════════════════════════════
   TAX SAVINGS CALCULATOR
══════════════════════════════ */
.calculator { background: var(--bg-2); }
.calc__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.calc__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.calc__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calc__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
}
.calc__points li svg { color: var(--accent); flex-shrink: 0; }
.calc__widget {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.calc__widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.calc__widget-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
}
.calc__free-badge {
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(5,150,105,.1);
  border: 1px solid rgba(5,150,105,.22);
  padding: 3px 10px;
  border-radius: 100px;
}
.calc__field {
  margin-bottom: 24px;
}
.calc__field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 100px;
  background: var(--bg-3);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(99,102,241,.45);
  border: 3px solid #fff;
  transition: transform .15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__slider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.calc__slider-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--heading);
  font-variant-numeric: tabular-nums;
}
.calc__slider-track-label {
  font-size: .72rem;
  color: var(--text-muted);
}
.calc__seg {
  display: flex;
  gap: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
}
.seg-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}
.seg-btn.active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.calc__result-box {
  background: linear-gradient(135deg, rgba(99,102,241,.08) 0%, rgba(99,102,241,.03) 100%);
  border: 1.5px solid rgba(99,102,241,.2);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  margin: 28px 0;
}
.calc__result-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.calc__result-val {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  transition: transform .2s ease, opacity .2s ease;
}
.calc__result-sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ══════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════ */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 820px;
  }
  .hero__sub { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__dashboard { display: none; }
  .calc__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 0 48px; }
}
@media (max-width: 480px) {
  .hero { padding: 36px 0 40px; }
}
@media (max-width: 768px) {
  .services__tabs { justify-content: center; }
  .calc__inner { gap: 36px; }
  .calc__widget { padding: 24px; }
}

/* ══════════════════════════════
   PHOTO SLIDER (homepage)
══════════════════════════════ */
.photo-slider {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  max-width: 100%;
  isolation: isolate;
}

.photo-slider__wrap {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  contain: layout style;
}

.photo-slider__track {
  display: flex;
  height: 100%;
  transition: transform .72s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.photo-slider__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Image */
.photo-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform .9s ease;
}
.photo-slider__slide.ps-active img {
  transform: scale(1.05);
}

/* Dark gradient overlay */
.photo-slider__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 15, 40, .78) 0%,
    rgba(10, 15, 40, .45) 55%,
    rgba(10, 15, 40, .12) 100%
  );
  z-index: 1;
}

/* Caption */
.photo-slider__caption {
  position: absolute;
  bottom: 80px;
  left: 112px;   /* clears 40px btn-offset + 56px btn-width + 16px gap */
  z-index: 2;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease .2s, transform .55s ease .2s;
}
.photo-slider__slide.ps-active .photo-slider__caption {
  opacity: 1;
  transform: translateY(0);
}

.photo-slider__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(99, 102, 241, .7);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .22);
}

.photo-slider__caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.photo-slider__caption p {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.photo-slider__caption .btn {
  font-size: .9rem;
  padding: 12px 26px;
}

/* Prev / Next buttons */
.photo-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  backdrop-filter: blur(14px);
}
.photo-slider__btn:hover {
  background: rgba(255, 255, 255, .28);
  border-color: rgba(255, 255, 255, .65);
  transform: translateY(-50%) scale(1.1);
}
.photo-slider__btn--prev { left: 40px; }
.photo-slider__btn--next { right: 40px; }

/* Dots */
.photo-slider__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.photo-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s, border-radius .3s;
  padding: 0;
}
.photo-slider__dot.active {
  background: #fff;
  width: 32px;
  border-radius: 5px;
}

/* Progress bar */
.photo-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  z-index: 4;
}
.photo-slider__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #7c3aed);
  transition: width linear;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .photo-slider__wrap { height: 600px; }
  .photo-slider__btn--prev { left: 24px; }
  .photo-slider__btn--next { right: 24px; }
}

@media (max-width: 768px) {
  .photo-slider__wrap { height: 520px; }
  .photo-slider__slide img { object-position: center 25%; }
  .photo-slider__caption {
    left: 68px;
    bottom: 72px;
    max-width: calc(100% - 136px);
  }
  .photo-slider__caption p { display: none; }
  .photo-slider__btn { width: 44px; height: 44px; }
  .photo-slider__btn--prev { left: 12px; }
  .photo-slider__btn--next { right: 12px; }
}

@media (max-width: 480px) {
  .photo-slider__wrap { height: 460px; }
  .photo-slider__slide img { object-position: center 20%; }
  .photo-slider__caption {
    left: 62px;
    bottom: 60px;
    max-width: calc(100% - 120px);
  }
  .photo-slider__caption h3 { font-size: 1.3rem; }
  .photo-slider__caption .btn { font-size: .82rem; padding: 10px 18px; }
  .photo-slider__btn { width: 38px; height: 38px; }
  .photo-slider__dots { bottom: 24px; }
}

/* ══════════════════════════════
   HERO BLUE (new landing design)
══════════════════════════════ */
.hero--blue {
  background: linear-gradient(148deg, #5aafe3 0%, #6bbde9 45%, #7ac7ee 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  display: block;
  min-height: calc(100vh - 72px);
}
.hero--blue .hero__bg,
.hero--blue .hero__scroll { display: none; }

.hero-wave-blob {
  position: absolute;
  top: -140px; left: -140px;
  width: 520px; height: 460px;
  background: rgba(255,255,255,0.1);
  border-radius: 50% 60% 40% 70% / 60% 30% 70% 40%;
  animation: blobMorph 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes blobMorph {
  0%,100% { border-radius: 50% 60% 40% 70% / 60% 30% 70% 40%; }
  50%      { border-radius: 40% 70% 60% 50% / 70% 50% 30% 60%; }
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hero__content-blue { text-align: left; }

.hero__badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero__title-blue {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

.hero__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.95);
  font-size: .97rem;
  font-weight: 500;
}
.hero__checklist li svg { flex-shrink: 0; }
.hero__checklist li.plus {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.hero__checklist li.plus a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__actions-blue {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--hero-white {
  background: #fff;
  color: #1a3566;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: all .3s ease;
  white-space: nowrap;
}
.btn--hero-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  color: #1a3566;
}

.btn--hero-wa {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: all .3s ease;
  white-space: nowrap;
}
.btn--hero-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  background: #20bc5a;
}

.hero__illus-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__illus-svg {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.1));
  animation: heroIllusFloat 6s ease-in-out infinite;
}
@keyframes heroIllusFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero-wave-bottom {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}
.hero-wave-bottom svg { display: block; width: 100%; }

/* ══════════════════════════════
   WHO DO WE HELP
══════════════════════════════ */
.who-help { background: #fff; }

.who-help__head { text-align: center; margin-bottom: 56px; }

.who-help__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a3566;
  margin-bottom: 12px;
}
.who-help__sub {
  font-size: 1rem;
  font-weight: 600;
  color: #5a6a84;
}

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

.who-card {
  background: #fff;
  border: 1.5px solid #e5eaf2;
  border-radius: 20px;
  padding: 40px 28px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.who-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4dc8a8, #3db894);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(61,142,207,.15);
  border-color: #c5d8ee;
}
.who-card:hover::after { transform: scaleX(1); }

.who-card__icon {
  width: 110px;
  height: 110px;
}
.who-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a3566;
  margin: 0;
}
.who-card__price-row {
  font-size: .92rem;
  color: #6b7280;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.who-card__price-row strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2872b8;
}
.who-card p {
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.btn--teal {
  background: linear-gradient(135deg, #4dc8a8 0%, #3db894 100%);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: 13px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(77,200,168,.3);
  white-space: nowrap;
}
.btn--teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77,200,168,.5);
}

.who-card__link {
  font-size: .88rem;
  color: #2872b8;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .25s;
}
.who-card__link:hover { color: #1a3566; }

/* ══════════════════════════════
   WHY CHOOSE (3-column feature grid)
══════════════════════════════ */
.why-choose-new { background: #f7faff; }

.why-choose__head { text-align: center; margin-bottom: 56px; }

.why-choose__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #1a3566;
  margin-bottom: 14px;
}
.why-choose__sub {
  font-size: 1rem;
  font-weight: 500;
  color: #5a6a84;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-choose__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.why-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-col__illus {
  width: 100%;
  max-width: 200px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-col__illus svg { width: 100%; height: 100%; }
.why-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2872b8;
  margin-bottom: 14px;
}
.why-col p {
  font-size: .9rem;
  color: #5a6a84;
  line-height: 1.8;
}
.why-col p strong { color: #1a3566; }

/* ══════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero__split { gap: 32px; }
}
@media (max-width: 900px) {
  .hero--blue { min-height: auto; }
  .hero__split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 40px;
  }
  .hero__content-blue { text-align: center; }
  .hero__checklist li { justify-content: flex-start; text-align: left; }
  .hero__actions-blue { justify-content: center; }
  .hero__illus-wrap { display: none; }
  .who-help__cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .why-choose__cols { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero--blue { padding: 48px 0 0; }
  .hero__title-blue { font-size: 1.9rem; }
  .hero__actions-blue { flex-direction: column; align-items: center; }
}
