/* ══════════════════════════════════════════════════
   CLASSIC SOFT TECH — GLOBAL STYLESHEET
   Combines all component styles + shared tokens
══════════════════════════════════════════════════ */

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* ── GLOBAL TOKENS ─────────────────────────────── */
:root {
  --navy:        #1E3A8A;
  --navy-deep:   #0F1F50;
  --navy-mid:    #162d6e;
  --blue:        #2563EB;
  --blue-mid:    #3B6FD4;
  --bright:      #4F8EF7;
  --sky:         #93C5FD;
  --cyan:        #22D3EE;
  --white:       #FFFFFF;
  --bg:          #F5F7FF;
  --bg-alt:      #EEF3FF;
  --ink:         #0D1B3E;
  --body-c:      #3D4F7A;
  --muted:       #8898BB;
  --border:      rgba(30,58,138,0.09);
  --border-dark: rgba(255,255,255,0.10);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-smooth: cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:   0 2px 12px rgba(30,58,138,0.07);
  --shadow-md:   0 8px 32px rgba(30,58,138,0.11);
  --shadow-lg:   0 20px 56px rgba(30,58,138,0.17);
  --header-h:    72px;
}

/* ── FONT IMPORTS ──────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Figtree:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

body { font-family: 'Figtree', 'Outfit', sans-serif; }



/* ════════════════════════════════
   HEADER
════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: #F0F4FF;
  min-height: 200vh; /* scroll demo */
}

/* ─── DESIGN TOKENS ────────────────────────────── */
:root {
  --navy:        #1E3A8A;
  --navy-deep:   #152A6E;
  --navy-mid:    #2348A8;
  --blue:        #3B6FD4;
  --blue-light:  #EEF3FF;
  --accent:      #4F8EF7;
  --accent-glow: rgba(79,142,247,0.35);
  --white:       #FFFFFF;
  --ink:         #0D1B40;
  --muted:       #6B7A9F;
  --border:      rgba(30,58,138,0.10);
  --shadow-sm:   0 1px 4px rgba(30,58,138,0.08);
  --shadow-md:   0 4px 24px rgba(30,58,138,0.12);
  --shadow-lg:   0 12px 48px rgba(30,58,138,0.18);
  --radius:      10px;
  --header-h:    72px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── DEMO PAGE CONTENT ────────────────────────── */
.demo-hero {
  padding-top: calc(var(--header-h) + 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-inline: 24px;
}
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blue-light);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.demo-pill span { color: var(--accent); }
.demo-h { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--ink); line-height: 1.15; }
.demo-sub { font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.7; }
.demo-scroll-hint {
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}
.demo-scroll-hint svg { opacity: 0.5; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── HEADER WRAPPER ───────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--header-h);
}

/* The visible bar */
.header-bar {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.35s var(--ease-smooth),
    box-shadow 0.35s var(--ease-smooth),
    border-color 0.35s var(--ease-smooth);
}

/* Scrolled state */
.site-header.scrolled .header-bar {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* Top accent line — animated in on scroll */
.header-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-smooth);
  animation: shimmer 3s linear infinite paused;
}
.site-header.scrolled .header-bar::before {
  transform: scaleX(1);
  animation-play-state: running;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── INNER LAYOUT ─────────────────────────────── */
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ─── LOGO ─────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  user-select: none;
}

.logo-mark {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Rotating ring on hover */
.logo-mark .ring {
  transform-origin: 20px 20px;
  transition: transform 0.6s var(--ease-smooth);
}
.logo:hover .logo-mark .ring {
  transform: rotate(90deg);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  transition: color 0.2s;
}
.logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 2px;
}
.logo:hover .logo-name { color: var(--navy-mid); }

/* ─── PRIMARY NAV ──────────────────────────────── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition:
    color 0.2s var(--ease-smooth),
    background 0.2s var(--ease-smooth);
  cursor: pointer;
}
.nav-link:hover {
  color: var(--navy);
  background: var(--blue-light);
}

/* Active page indicator */
.nav-item.active .nav-link {
  color: var(--navy);
  background: var(--blue-light);
}
.nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
}

/* Dropdown chevron */
.nav-chevron {
  width: 14px; height: 14px;
  transition: transform 0.25s var(--ease-smooth);
  opacity: 0.5;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* ─── DROPDOWN BASE ────────────────────────────── */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease-smooth),
    transform 0.22s var(--ease-smooth);
  z-index: 100;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Arrow pip */
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 2px 0 0 0;
}

/* ─── MEGA MENU ─────────────────────────────────── */
.dropdown.mega {
  min-width: 640px;
  left: 50%;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dropdown.mega::before { left: 50%; }
.mega-col-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px 10px;
  display: block;
  grid-column: span 2;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.mega-col { display: contents; }

/* Wider mega for Products — 3-col feel */
.dropdown.mega-wide {
  min-width: 760px;
  grid-template-columns: 1fr 1fr 1fr;
}
.dropdown.mega-wide::before { left: 42%; }

/* Featured item in mega */
.dropdown-featured {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,58,138,0.04), rgba(37,99,235,0.07));
  border: 1px solid rgba(37,99,235,0.10);
  text-decoration: none;
  margin-top: 4px;
  transition: all 0.2s;
  cursor: pointer;
}
.dropdown-featured:hover {
  background: linear-gradient(135deg, rgba(30,58,138,0.07), rgba(37,99,235,0.12));
  border-color: rgba(37,99,235,0.20);
}
.df-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30,58,138,0.22);
}
.df-icon svg { width: 20px; height: 20px; }
.df-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.df-sub {
  font-size: 0.74rem;
  color: var(--muted);
  display: block;
}
.df-badge {
  margin-left: auto;
  flex-shrink: 0;
  padding: 3px 10px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 50px;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Dropdown divider */
.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 10px;
  grid-column: span 2;
}

/* Section heading within dropdown */
.dropdown-section-label {
  font-size: 0.63rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px 4px;
  display: block;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s, transform 0.2s var(--ease-smooth);
  cursor: pointer;
  position: relative;
}
.dropdown-link:hover {
  background: var(--blue-light);
  transform: translateX(3px);
}
.dropdown-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.25s var(--ease-smooth);
}
.dropdown-link:hover .dropdown-icon {
  background: #D7E5FF;
  transform: scale(1.1) rotate(-5deg);
}
.dropdown-icon svg { width: 16px; height: 16px; }
.dropdown-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.dropdown-sub {
  font-size: 0.73rem;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
/* New / Hot badge on item */
.dropdown-badge {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-new { background: #DCFCE7; color: #15803D; }
.badge-hot { background: #FEF3C7; color: #B45309; }
.badge-beta { background: #F3E8FF; color: #7C3AED; }

/* ─── CTA BUTTON ───────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-ghost {
  display: none; /* show on wider screens only if needed */
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--blue-light); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth);
  box-shadow: 0 4px 14px rgba(30,58,138,0.28);
}

/* Shine sweep */
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-smooth);
}
.btn-cta:hover::before { left: 130%; }
.btn-cta:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,58,138,0.38);
}
.btn-cta:active { transform: translateY(0); }

.btn-arrow {
  width: 16px; height: 16px;
  transition: transform 0.25s var(--ease-spring);
}
.btn-cta:hover .btn-arrow { transform: translateX(3px); }

/* ─── HAMBURGER ────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--blue-light); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease-spring),
    opacity 0.2s,
    width 0.3s;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 20px; }

/* Open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* ─── MOBILE DRAWER ────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 12px 24px 24px;
  z-index: 9998;

  /* Hidden by default */
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  transition:
    clip-path 0.4s var(--ease-smooth),
    opacity 0.3s var(--ease-smooth);
}
.mobile-drawer.open {
  clip-path: inset(0 0 0% 0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav { list-style: none; display: flex; flex-direction: column; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border-left: none; border-right: none; border-top: none;
  width: 100%; text-align: left;
  font-family: 'Outfit', sans-serif;
}
.mobile-nav-link:hover { color: var(--navy); }
.mobile-nav-link.active { color: var(--navy); }
.mobile-nav-link .m-chevron { opacity: 0.4; width: 18px; height: 18px; transition: transform 0.3s var(--ease-smooth); }
.mobile-nav-link.m-open .m-chevron { transform: rotate(90deg); opacity: 0.8; }

/* Mobile sub-nav */
.mobile-subnav {
  display: none;
  flex-direction: column;
  background: var(--blue-light);
  border-radius: 10px;
  margin: 2px 0 8px;
  overflow: hidden;
}
.mobile-subnav.open { display: flex; }
.mobile-subnav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.18s;
  border-bottom: 1px solid rgba(30,58,138,0.07);
}
.mobile-subnav-link:last-child { border-bottom: none; }
.mobile-subnav-link:hover { background: #D7E5FF; }
.mobile-subnav-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.mobile-subnav-label { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.mobile-subnav-sub { font-size: 0.72rem; color: var(--muted); }

.mobile-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.mobile-cta-row .btn-cta { flex: 1; justify-content: center; }
.mobile-signin {
  flex: 1;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-signin:hover { background: var(--blue-light); border-color: var(--navy); }

/* ─── PROGRESS BAR ─────────────────────────────── */
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .primary-nav { gap: 2px; }
  .nav-link { padding: 7px 10px; }
}

@media (max-width: 820px) {
  .primary-nav { display: none; }
  .btn-cta { display: none; }
  .hamburger { display: flex; }
  .header-bar { padding: 0 20px; }
}

@media (max-width: 480px) {
  .logo-wordmark { display: none; }
}

/* ─── PAGE SECTION DEMO ────────────────────────── */
.demo-section {
  max-width: 800px;
  margin: 120px auto 0;
  padding: 48px 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.demo-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.demo-section p { color: var(--muted); line-height: 1.7; font-size: 0.95rem; }

/* ─── FADE IN PAGE ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.site-header { animation: fadeUp 0.6s ease both; }


/* ════════════════════════════════
   HERO
════════════════════════════════ */

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; background: #050D1F; overflow-x: hidden; }

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --navy:      #1E3A8A;
  --blue:      #2563EB;
  --bright:    #3B82F6;
  --sky:       #60A5FA;
  --cyan:      #22D3EE;
  --white:     #FFFFFF;
  --offwhite:  #EFF6FF;
  --muted:     rgba(255,255,255,0.52);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #050D1F;
}

/* ── LAYER 1: Deep space gradient base ────────── */
.hero-bg-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 90% 80%,  rgba(34,211,238,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at -10% 60%, rgba(30,58,138,0.30) 0%, transparent 60%),
    linear-gradient(180deg, #050D1F 0%, #0A1628 50%, #060E20 100%);
  z-index: 0;
}

/* ── LAYER 2: Animated circuit-board grid ─────── */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(59,130,246,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(52px, 52px); }
}

/* ── LAYER 3: Floating orbs ───────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}
.orb-1 {
  width: 600px; height: 600px;
  top: -160px; left: -140px;
  background: radial-gradient(circle, rgba(37,99,235,0.30) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, transparent 70%);
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(30,58,138,0.35) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

/* ── LAYER 4: Animated SVG circuit lines ──────── */
.circuit-canvas {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.circuit-canvas svg { width: 100%; height: 100%; }

/* ── LAYER 5: Particle dots ───────────────────── */
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--bright);
  animation: particlePulse var(--dur, 4s) ease-in-out var(--delay, 0s) infinite;
}
@keyframes particlePulse {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: var(--max-op, 0.7); transform: scale(1); }
}

/* ── LAYER 6: Scanline texture ────────────────── */
.scanlines {
  position: absolute; inset: 0; z-index: 3;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.035) 3px,
    rgba(0,0,0,0.035) 4px
  );
  pointer-events: none;
}

/* ── LAYER 7: Bottom fade ─────────────────────── */
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, #050D1F, transparent);
  z-index: 4;
}

/* ═══════════════════════════════════════════════
   HEADER STRIP (minimal, inside hero)
═══════════════════════════════════════════════ */
.hero-header {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 60px;
  animation: revealDown 0.7s var(--ease-out) both;
}
@keyframes revealDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.h-logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.h-logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(37,99,235,0.5);
}
.h-logo-mark svg { width: 20px; height: 20px; }
.h-logo-text {
  font-size: 1rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.2px;
  line-height: 1;
}
.h-logo-sub {
  font-size: 0.6rem; font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 2px;
}
.h-nav {
  display: flex; align-items: center; gap: 30px;
  list-style: none;
}
.h-nav a {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s;
}
.h-nav a:hover { color: white; }
.h-nav-cta {
  padding: 9px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.82rem !important;
  color: white !important;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s !important;
}
.h-nav-cta:hover { background: rgba(255,255,255,0.16) !important; border-color: rgba(255,255,255,0.3) !important; }

/* ═══════════════════════════════════════════════
   HERO CONTENT
═══════════════════════════════════════════════ */
.hero-body {
  flex: 1;
  position: relative; z-index: 10;
  display: flex;
  align-items: center;
  padding: var(--header-h) 60px 80px;
}

.hero-content-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
}

/* ── LEFT: Text ───────────────────────────────── */
.hero-text { max-width: 600px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 10px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,130,246,0.30);
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.8s 0.1s var(--ease-out) both;
}
.eyebrow-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 0 12px rgba(37,99,235,0.6);
  animation: spinPulse 4s linear infinite;
}
@keyframes spinPulse {
  0%   { box-shadow: 0 0 8px rgba(37,99,235,0.5); }
  50%  { box-shadow: 0 0 20px rgba(34,211,238,0.7); }
  100% { box-shadow: 0 0 8px rgba(37,99,235,0.5); }
}
.eyebrow-text {
  font-size: 0.78rem; font-weight: 700;
  color: var(--sky);
  letter-spacing: 1.2px; text-transform: uppercase;
}

/* Main tagline */
.hero-tagline {
  font-size: clamp(2.4rem, 4.5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 26px;
  animation: fadeSlideUp 0.9s 0.25s var(--ease-out) both;
}
.tagline-highlight {
  position: relative;
  display: inline;
  color: transparent;
  background: linear-gradient(90deg, var(--bright) 0%, var(--cyan) 50%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite, fadeSlideUp 0.9s 0.25s var(--ease-out) both;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
/* Underline stroke under highlight */
.tagline-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  transform-origin: left;
  animation: underlineGrow 1s 1.1s var(--ease-out) both;
}
@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Description */
.hero-desc {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 44px;
  animation: fadeSlideUp 1s 0.4s var(--ease-out) both;
}
.hero-desc strong { color: rgba(255,255,255,0.82); font-weight: 600; }

/* CTA group */
.hero-cta-group {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 1s 0.55s var(--ease-out) both;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem; font-weight: 800;
  border: none; border-radius: 50px;
  cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(37,99,235,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  letter-spacing: 0.2px;
}
/* Shine sweep */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-primary:hover::before { left: 150%; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(37,99,235,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }
.btn-primary-icon {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}
.btn-primary:hover .btn-primary-icon { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  color: white;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.play-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Trust badges row */
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  animation: fadeSlideUp 1s 0.7s var(--ease-out) both;
  flex-wrap: wrap;
}
.trust-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.12);
}
.trust-stat { text-align: left; }
.trust-num {
  font-size: 1.3rem; font-weight: 900;
  color: white; line-height: 1;
  background: linear-gradient(90deg, var(--white), var(--sky));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-label { font-size: 0.73rem; font-weight: 500; color: var(--muted); margin-top: 3px; letter-spacing: 0.3px; }
.trust-avatars {
  display: flex; align-items: center; gap: 0;
}
.t-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #050D1F;
  margin-left: -8px;
  font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.t-avatar:first-child { margin-left: 0; }
.ta1 { background: linear-gradient(135deg, #1D4ED8, #60A5FA); }
.ta2 { background: linear-gradient(135deg, #0E7490, #22D3EE); }
.ta3 { background: linear-gradient(135deg, #1E40AF, #3B82F6); }
.ta4 { background: linear-gradient(135deg, #075985, #0EA5E9); }
.trust-text { font-size: 0.75rem; color: var(--muted); font-weight: 500; margin-left: 10px; line-height: 1.4; max-width: 90px; }

/* ── RIGHT: Visual panel ──────────────────────── */
.hero-visual {
  position: relative;
  height: 480px;
  animation: fadeSlideRight 1s 0.35s var(--ease-out) both;
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Central device mockup */
.device-frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 32px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(37,99,235,0.15);
  z-index: 2;
}
.device-titlebar {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 16px;
}
.dt-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.dt-dot:nth-child(1) { background: #FF5F57; }
.dt-dot:nth-child(2) { background: #FEBC2E; }
.dt-dot:nth-child(3) { background: #28C840; }
.dt-bar {
  flex: 1; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.07); margin-left: 8px;
}

/* Fake code lines */
.code-block { display: flex; flex-direction: column; gap: 7px; }
.code-line {
  height: 9px; border-radius: 5px;
  background: rgba(255,255,255,0.07);
  animation: codePulse 3s ease-in-out infinite;
}
.code-line.indent { margin-left: 18px; }
.code-line.short   { width: 45%; }
.code-line.medium  { width: 70%; }
.code-line.long    { width: 90%; }
.code-line.accent  { background: rgba(37,99,235,0.45); }
.code-line.cyan    { background: rgba(34,211,238,0.35); }
@keyframes codePulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.4s; }
.code-line:nth-child(4) { animation-delay: 0.6s; }
.code-line:nth-child(5) { animation-delay: 0.8s; }
.code-line:nth-child(6) { animation-delay: 1.0s; }
.code-line:nth-child(7) { animation-delay: 1.2s; }
.code-line:nth-child(8) { animation-delay: 1.4s; }
.code-line:nth-child(9) { animation-delay: 1.6s; }

/* Metric bar inside device */
.device-metrics {
  display: flex; gap: 8px; margin-top: 14px;
}
.metric-bar-wrap { flex: 1; }
.metric-label { font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.metric-bar-bg { height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.metric-bar-fill {
  height: 100%; border-radius: 3px;
  animation: barGrow 1.5s 1.2s var(--ease-out) both;
}
@keyframes barGrow {
  from { width: 0%; }
}
.mf1 { width: 82%; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.mf2 { width: 67%; background: linear-gradient(90deg, var(--navy), var(--bright)); }
.mf3 { width: 91%; background: linear-gradient(90deg, #0891B2, var(--cyan)); }

/* Floating cards around device */
.float-chip {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 3;
  white-space: nowrap;
}
.chip-1 { top: 14px; left: -30px; animation: floatA 6s ease-in-out infinite; }
.chip-2 { top: 30px; right: -20px; animation: floatB 7s ease-in-out infinite; }
.chip-3 { bottom: 60px; left: -40px; animation: floatA 8s ease-in-out infinite 1s; }
.chip-4 { bottom: 30px; right: -10px; animation: floatB 5s ease-in-out infinite 2s; }
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50%       { transform: translateY(-16px) rotate(-0.5deg); }
}

.chip-icon { font-size: 1.1rem; margin-bottom: 5px; display: block; }
.chip-val {
  display: block; font-size: 1rem; font-weight: 900; color: white;
  line-height: 1;
}
.chip-label { display: block; font-size: 0.66rem; font-weight: 500; color: var(--muted); margin-top: 3px; }

/* Status chip (chip-2) */
.chip-status { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: blink 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #22C55E; }
  50%       { opacity: 0.4; box-shadow: none; }
}
.chip-status-text { font-size: 0.8rem; font-weight: 700; color: white; }
.chip-status-sub  { font-size: 0.65rem; color: var(--muted); margin-top: 2px; }

/* Ring orbiting device */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 360px;
  border: 1px dashed rgba(59,130,246,0.18);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
  z-index: 1;
}
.orbit-ring::after {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}
.orbit-ring-2 {
  width: 440px; height: 440px;
  border-color: rgba(34,211,238,0.08);
  animation: orbitSpin 30s linear infinite reverse;
}
.orbit-ring-2::after {
  background: var(--bright);
  box-shadow: 0 0 12px var(--bright);
  top: auto; bottom: -5px; left: 30%;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── SCROLL INDICATOR ─────────────────────────── */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeSlideUp 1s 1.1s var(--ease-out) both;
  cursor: default;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel {
  position: absolute;
  top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
.scroll-label { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; }

/* ─── SHARED FADE UP ─────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content-wrap { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .hero-body { padding: var(--header-h) 40px 80px; justify-content: center; }
  .hero-text { max-width: 100%; }
  .hero-header { padding: 22px 40px; }
  .h-nav { display: none; }
}
@media (max-width: 640px) {
  .hero-body { padding: var(--header-h) 24px 80px; }
  .hero-header { padding: 18px 24px; }
  .hero-tagline { font-size: 2.2rem; letter-spacing: -1px; }
  .btn-primary, .btn-ghost { padding: 13px 24px; font-size: 0.88rem; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
}


/* ════════════════════════════════
   WHO-WE-ARE
════════════════════════════════ */

/* ── RESET ─────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:#FFFFFF;color:#0D1B3E;overflow-x:hidden}

/* ── TOKENS ─────────────────────────────────────── */
:root{
  --navy:#1E3A8A;--navy-deep:#0F1F50;--navy-mid:#162d6e;
  --blue:#2563EB;--blue-mid:#3B6FD4;--bright:#60A5FA;
  --sky:#93C5FD;--cyan:#22D3EE;--teal:#0891B2;
  --white:#FFFFFF;--bg:#FFFFFF;--bg-soft:#F8FAFF;--bg-alt:#EEF3FF;
  --ink:#0D1B3E;--body:#3D4F7A;--muted:#8898BB;
  --border:rgba(30,58,138,0.09);
  --ease-spring:cubic-bezier(0.34,1.56,0.64,1);
  --ease-out:cubic-bezier(0.16,1,0.3,1);
  --ease-smooth:cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════════ */
.wwa-section{
  position:relative;
  padding:130px 24px 140px;
  background:var(--bg);
  overflow:hidden;
}

/* Layered background */
.wwa-bg{
  position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 55% 50% at 0% 40%, rgba(147,197,253,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 100% 70%, rgba(34,211,238,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(238,243,255,0.45) 0%, transparent 80%);
}

/* Fine dot texture */
.wwa-texture{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,rgba(30,58,138,0.07) 1px,transparent 1px);
  background-size:24px 24px;
  mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,0.5) 20%,rgba(0,0,0,0.5) 80%,transparent 100%);
}

/* ── CONTAINER ─────────────────────────────────── */
.wwa-container{
  position:relative;z-index:2;
  max-width:1240px;margin:0 auto;
}

/* ══════════════════════════════════════════════════
   TWO-COLUMN LAYOUT
══════════════════════════════════════════════════ */
.wwa-body{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* ══════════════════════════════════════════════════
   LEFT — TEXT PANEL
══════════════════════════════════════════════════ */
.wwa-text{}

/* Eyebrow */
.wwa-eyebrow{
  display:inline-flex;align-items:center;gap:12px;
  margin-bottom:24px;
}
.wwa-eyebrow-line{
  width:40px;height:2px;
  background:linear-gradient(90deg,var(--navy),var(--cyan));
  border-radius:2px;
  animation:lineGrow 1s var(--ease-out) forwards;
  transform-origin:left;
}
@keyframes lineGrow{from{transform:scaleX(0)}to{transform:scaleX(1)}}
.wwa-eyebrow-text{
  font-size:0.72rem;font-weight:700;
  color:var(--blue);letter-spacing:3px;text-transform:uppercase;
}

/* Title */
.wwa-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.4rem,4.5vw,3.8rem);
  font-weight:600;color:var(--ink);
  line-height:1.08;letter-spacing:-0.5px;
  margin-bottom:28px;
}
.wwa-title em{
  font-style:italic;font-weight:400;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Lead paragraph */
.wwa-lead{
  font-size:1.12rem;font-weight:400;
  color:var(--body);line-height:1.80;
  margin-bottom:32px;
  padding-left:18px;
  border-left:3px solid var(--cyan);
}

/* Body paragraphs */
.wwa-paragraphs{
  display:flex;flex-direction:column;gap:20px;
  margin-bottom:36px;
}
.wwa-para{
  font-size:0.97rem;font-weight:400;
  color:var(--body);line-height:1.80;
}
.wwa-para strong{
  color:var(--navy);font-weight:600;
}

/* ── MVV PILLS ─────────────────────────────────── */
.wwa-mvv{
  display:flex;flex-direction:column;gap:14px;
  margin-bottom:44px;
}
.wwa-mvv-item{
  display:flex;align-items:flex-start;gap:16px;
  padding:18px 20px;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:14px;
  transition:all 0.3s var(--ease-out);
  cursor:default;
}
.wwa-mvv-item:hover{
  transform:translateX(6px);
  border-color:rgba(37,99,235,0.20);
  box-shadow:0 6px 24px rgba(30,58,138,0.09);
}
.wwa-mvv-icon{
  width:44px;height:44px;flex-shrink:0;
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  transition:transform 0.35s var(--ease-spring);
}
.wwa-mvv-item:hover .wwa-mvv-icon{transform:scale(1.1) rotate(-5deg);}
.wwa-mvv-label{
  font-family:'Cormorant Garamond',serif;
  font-size:1.05rem;font-weight:600;
  color:var(--ink);margin-bottom:4px;letter-spacing:-0.1px;
}
.wwa-mvv-desc{
  font-size:0.84rem;color:var(--body);line-height:1.60;
}

/* ── CTA ROW ───────────────────────────────────── */
.wwa-cta-row{
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
}

/* Primary CTA */
.wwa-cta-primary{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 32px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:white;border:none;border-radius:12px;
  font-family:'DM Sans',sans-serif;
  font-size:0.95rem;font-weight:600;
  text-decoration:none;cursor:pointer;
  position:relative;overflow:hidden;
  box-shadow:0 6px 24px rgba(30,58,138,0.28);
  transition:transform 0.3s var(--ease-spring),box-shadow 0.3s;
}
.wwa-cta-primary::before{
  content:'';position:absolute;top:0;left:-100%;
  width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
  transform:skewX(-20deg);transition:left 0.5s ease;
}
.wwa-cta-primary:hover::before{left:140%;}
.wwa-cta-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(30,58,138,0.35);
}
.wwa-cta-primary span,.wwa-cta-primary svg{position:relative;z-index:1;}
.cta-arr{transition:transform 0.3s var(--ease-spring);}
.wwa-cta-primary:hover .cta-arr{transform:translateX(4px);}

/* Ghost CTA */
.wwa-cta-ghost{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 28px;
  background:transparent;
  border:1.5px solid rgba(30,58,138,0.18);
  border-radius:12px;
  color:var(--navy);
  font-family:'DM Sans',sans-serif;
  font-size:0.95rem;font-weight:600;
  text-decoration:none;cursor:pointer;
  transition:all 0.25s var(--ease-smooth);
}
.wwa-cta-ghost:hover{
  background:var(--bg-alt);
  border-color:var(--blue);
  color:var(--blue);
  transform:translateY(-2px);
}

/* ── STATS STRIP ───────────────────────────────── */
.wwa-stats{
  display:flex;gap:0;
  margin-top:52px;
  border-top:1px solid var(--border);
  padding-top:32px;
}
.wwa-stat{
  flex:1;
  padding-right:24px;
  border-right:1px solid var(--border);
}
.wwa-stat:last-child{border-right:none;padding-right:0;padding-left:24px;}
.wwa-stat:not(:first-child):not(:last-child){padding:0 24px;}
.ws-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.6rem;font-weight:700;
  color:var(--navy);line-height:1;letter-spacing:-1px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
  display:block;margin-bottom:4px;
}
.ws-label{
  font-size:0.78rem;font-weight:600;
  color:var(--muted);letter-spacing:0.3px;
}

/* ══════════════════════════════════════════════════
   RIGHT — ILLUSTRATION
══════════════════════════════════════════════════ */
.wwa-visual{
  position:relative;
  display:flex;align-items:center;justify-content:center;
}

/* Outer glow card */
.wwa-illus-wrap{
  position:relative;
  width:100%;
  max-width:520px;
}

/* Background blob */
.wwa-blob{
  position:absolute;
  top:-40px;right:-40px;
  width:340px;height:340px;
  border-radius:50% 40% 60% 30%;
  background:linear-gradient(145deg,rgba(147,197,253,0.22),rgba(34,211,238,0.14));
  animation:blobMorph 12s ease-in-out infinite;
  pointer-events:none;
}
@keyframes blobMorph{
  0%,100%{border-radius:50% 40% 60% 30%;transform:translate(0,0) rotate(0deg)}
  33%{border-radius:35% 55% 40% 65%;transform:translate(10px,-15px) rotate(5deg)}
  66%{border-radius:60% 30% 55% 40%;transform:translate(-10px,10px) rotate(-3deg)}
}

/* Main illustration frame */
.wwa-illus-frame{
  position:relative;z-index:2;
  background:white;
  border-radius:24px;
  border:1px solid var(--border);
  box-shadow:0 20px 60px rgba(30,58,138,0.13),0 2px 8px rgba(30,58,138,0.07);
  overflow:hidden;
  aspect-ratio:4/4.5;
}

/* SVG fills the frame */
.wwa-illus-frame svg{
  width:100%;height:100%;
  display:block;
}

/* Floating detail cards */
.wwa-float-card{
  position:absolute;z-index:3;
  background:white;
  border:1px solid rgba(30,58,138,0.10);
  border-radius:14px;
  padding:12px 18px;
  box-shadow:0 8px 28px rgba(30,58,138,0.14);
  display:flex;align-items:center;gap:12px;
  animation:floatCard 5s ease-in-out infinite;
}
.wwa-float-card:nth-child(3){animation-delay:1.5s;animation-duration:6s;}
.wwa-float-card:nth-child(4){animation-delay:3s;animation-duration:4.5s;}
@keyframes floatCard{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}
.wfc-top{top:-18px;left:16px;}
.wfc-right{top:38%;right:-24px;}
.wfc-bottom{bottom:-18px;right:20px;}

.wfc-icon{
  width:36px;height:36px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.wfc-text-label{font-size:0.68rem;font-weight:700;color:var(--muted);letter-spacing:0.5px;text-transform:uppercase;}
.wfc-text-val{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:700;color:var(--ink);line-height:1.1;}

/* Year badge */
.wwa-year-badge{
  position:absolute;bottom:20px;left:-20px;z-index:3;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:white;
  border-radius:16px;
  padding:16px 20px;
  box-shadow:0 8px 32px rgba(30,58,138,0.30);
  text-align:center;
  animation:floatCard 7s ease-in-out infinite;
  animation-delay:2s;
}
.wyb-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.2rem;font-weight:700;
  line-height:1;display:block;
}
.wyb-label{
  font-size:0.65rem;font-weight:700;
  color:rgba(255,255,255,0.7);
  letter-spacing:1.5px;text-transform:uppercase;
  margin-top:2px;display:block;
}

/* ── REVEAL UTILS ──────────────────────────────── */
.reveal{
  opacity:0;transform:translateY(24px);
  transition:opacity 0.65s var(--ease-out),transform 0.65s var(--ease-out);
}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-left{
  opacity:0;transform:translateX(-32px);
  transition:opacity 0.7s var(--ease-out),transform 0.7s var(--ease-out);
}
.reveal-left.visible{opacity:1;transform:translateX(0);}
.reveal-right{
  opacity:0;transform:translateX(32px);
  transition:opacity 0.7s 0.15s var(--ease-out),transform 0.7s 0.15s var(--ease-out);
}
.reveal-right.visible{opacity:1;transform:translateX(0);}

/* Stagger children */
.wwa-mvv-item:nth-child(1){transition-delay:0.1s}
.wwa-mvv-item:nth-child(2){transition-delay:0.2s}
.wwa-mvv-item:nth-child(3){transition-delay:0.3s}

/* ── RESPONSIVE ────────────────────────────────── */
@media(max-width:1024px){
  .wwa-body{grid-template-columns:1fr;gap:56px;}
  .wwa-visual{order:-1;}
  .wwa-illus-wrap{max-width:460px;}
  .wwa-float-card{display:none;}
  .wwa-year-badge{display:none;}
  .wwa-blob{display:none;}
  .wwa-title{font-size:clamp(2.2rem,6vw,3.2rem);}
}
@media(max-width:600px){
  .wwa-section{padding:80px 18px 100px;}
  .wwa-stats{flex-direction:column;gap:20px;}
  .wwa-stat{border-right:none;padding:0;border-bottom:1px solid var(--border);padding-bottom:16px;}
  .wwa-stat:last-child{border-bottom:none;padding:0;}
  .wwa-body{gap:36px;}
  .wwa-cta-row{flex-direction:column;align-items:flex-start;}
}


/* ════════════════════════════════
   TECHNOLOGIES
════════════════════════════════ */

/* ── SECTION SHELL ─────────────────────────────── */
.tech-section {
  position: relative;
  padding: 110px 24px 130px;
  background: #F8FAFF;
  overflow: hidden;
}

/* ── BACKGROUNDS ───────────────────────────────── */
.tech-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 8%  15%,  rgba(147,197,253,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 92% 85%,  rgba(34,211,238,0.12)  0%, transparent 55%),
    radial-gradient(ellipse 85% 75% at 50% 50%,  rgba(238,243,255,0.45) 0%, transparent 80%);
}
.tech-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(30,58,138,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── DECORATIVE CORNER SVG ─────────────────────── */
.tech-geo {
  position: absolute; pointer-events: none; z-index: 0;
}
.tech-geo-tl { top: 40px; left: 40px; }
.tech-geo-br { bottom: 40px; right: 40px; transform: rotate(180deg); }

/* ── CONTAINER ─────────────────────────────────── */
.tech-container {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
}

/* ── HEADER ────────────────────────────────────── */
.tech-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.tech-header.visible { opacity: 1; transform: translateY(0); }

/* Eyebrow badge */
.tech-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 20px;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 50px; margin-bottom: 20px;
}
.tech-eyebrow-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(37,99,235,0.5);
  animation: techPulse 2.2s ease-in-out infinite;
}
@keyframes techPulse {
  0%   { box-shadow: 0 0 0 0    rgba(37,99,235,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0    rgba(37,99,235,0); }
}
.tech-eyebrow-text {
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue); letter-spacing: 2.5px; text-transform: uppercase;
}

/* Title */
.tech-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800; line-height: 1.12;
  color: var(--ink); letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.tech-title .accent {
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-subtitle {
  font-size: 0.98rem; color: var(--body-c);
  line-height: 1.75; margin-bottom: 32px;
}

/* ── FILTER TABS ────────────────────────────────── */
.tech-tabs {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px;
}
.tech-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white; cursor: pointer;
  font-family: 'Figtree', 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--body-c);
  transition: all 0.22s var(--ease-smooth);
  white-space: nowrap;
}
.tech-tab:hover { border-color: var(--blue); color: var(--blue); background: rgba(37,99,235,0.05); }
.tech-tab.active {
  background: var(--navy); color: white;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(30,58,138,0.25);
}

/* ── TECH GRID ──────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

/* ── TECH CARD ──────────────────────────────────── */
.tech-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 16px 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  cursor: default;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), opacity 0.3s ease;
}

/* Top color line */
.tech-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-line, linear-gradient(90deg, var(--navy), var(--cyan)));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  border-radius: 0 0 2px 2px;
}
.tech-card:hover::before { transform: scaleX(1); }
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(30,58,138,0.14);
}
.tech-card.hidden { display: none; }

/* Logo box */
.tc-logo {
  width: 68px; height: 68px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}
.tech-card:hover .tc-logo { transform: scale(1.1) rotate(-4deg); }

/* Tech name */
.tc-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.84rem; font-weight: 700;
  color: var(--ink); text-align: center;
  letter-spacing: -0.1px;
}

/* Category badge */
.tc-badge {
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 50px;
}
.badge-frontend  { background: #EEF3FF; color: #2563EB; }
.badge-backend   { background: #F0FDF4; color: #059669; }
.badge-mobile    { background: #FFF7ED; color: #F97316; }
.badge-database  { background: #F5F3FF; color: #7C3AED; }
.badge-cloud     { background: #ECFEFF; color: #0891B2; }

/* ── MARQUEE STRIP ──────────────────────────────── */
.tech-marquee-wrap {
  overflow: hidden;
  margin-bottom: 48px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out) 0.2s, transform 0.6s var(--ease-out) 0.2s;
}
.tech-marquee-wrap.visible { opacity: 1; transform: translateY(0); }
.tech-marquee-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.tech-marquee-wrap:hover .tech-marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 28px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--muted); white-space: nowrap;
  border-right: 1px solid var(--border);
}
.mi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  flex-shrink: 0;
}

/* ── STATS ROW ──────────────────────────────────── */
.tech-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out) 0.3s, transform 0.6s var(--ease-out) 0.3s;
}
.tech-stats.visible { opacity: 1; transform: translateY(0); }
.tech-stat {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.tech-stat:last-child { border-right: none; }
.tech-stat:hover { background: #F8FAFF; }
.ts-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 6px;
}
.ts-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.3px;
}

/* ── SCROLL REVEAL UTILITY ─────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) { .tech-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .tech-grid { grid-template-columns: repeat(3, 1fr); } .tech-section { padding: 80px 18px; } }
@media (max-width: 520px)  { .tech-grid { grid-template-columns: repeat(2, 1fr); } .tech-stats { flex-direction: column; } .tech-stat { border-right: none; border-bottom: 1px solid var(--border); } .tech-stat:last-child { border-bottom: none; } }


/* ════════════════════════════════
   SOFTWARE-SOLUTIONS
════════════════════════════════ */

/* ── RESET ─────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;background:#F8FAFF;color:#0D1B3E;overflow-x:hidden}

/* ── TOKENS ─────────────────────────────────────── */
:root{
  --navy:#1E3A8A;--navy-deep:#0F1F50;
  --blue:#2563EB;--blue-mid:#3B6FD4;--bright:#60A5FA;
  --cyan:#22D3EE;--teal:#0891B2;
  --white:#FFFFFF;--bg:#F8FAFF;--bg-alt:#EEF3FF;
  --ink:#0D1B3E;--body:#3D4F7A;--muted:#8898BB;
  --border:rgba(30,58,138,0.09);
  --ease-spring:cubic-bezier(0.34,1.56,0.64,1);
  --ease-out:cubic-bezier(0.16,1,0.3,1);
  --ease-smooth:cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:0 2px 12px rgba(30,58,138,0.07);
  --shadow-md:0 8px 32px rgba(30,58,138,0.11);
  --shadow-lg:0 20px 56px rgba(30,58,138,0.17);
}

/* ══════════════════════════════════════════════════
   SECTION SHELL
══════════════════════════════════════════════════ */
.rs-section{
  position:relative;
  padding:120px 24px 140px;
  background:var(--bg);
  overflow:hidden;
}

/* Background mesh */
.rs-bg{
  position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 10%, rgba(147,197,253,0.26) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 88%, rgba(34,211,238,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(238,243,255,0.50) 0%, transparent 80%);
}

/* Dot grid */
.rs-dots{
  position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle,rgba(30,58,138,0.09) 1px,transparent 1px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 90% 80% at 50% 50%,black 30%,transparent 100%);
}

/* Decorative SVG lines top-right */
.rs-deco{
  position:absolute;top:0;right:0;
  width:320px;height:320px;
  pointer-events:none;opacity:0.4;
}

/* ── CONTAINER ─────────────────────────────────── */
.rs-container{position:relative;z-index:2;max-width:1280px;margin:0 auto;}

/* ══════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════ */
.rs-header{text-align:center;margin-bottom:56px;}

.rs-eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  padding:7px 20px;
  background:rgba(37,99,235,0.07);
  border:1px solid rgba(37,99,235,0.15);
  border-radius:50px;margin-bottom:22px;
}
.rs-eyebrow-icon{
  width:18px;height:18px;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  border-radius:5px;
  display:flex;align-items:center;justify-content:center;
}
.rs-eyebrow-icon svg{width:11px;height:11px;}
.rs-eyebrow-text{font-size:0.72rem;font-weight:700;color:var(--blue);letter-spacing:2.5px;text-transform:uppercase;}

.rs-title{
  font-family:'Instrument Serif',serif;
  font-size:clamp(2rem,4.2vw,3.2rem);
  font-weight:400;
  color:var(--ink);
  line-height:1.12;letter-spacing:-0.3px;
  margin-bottom:18px;
}
.rs-title em{
  font-style:italic;
  background:linear-gradient(135deg,var(--navy),var(--cyan));
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;
}

.rs-subtitle{
  font-size:1.05rem;font-weight:400;
  color:var(--body);line-height:1.75;
  max-width:540px;margin:0 auto 40px;
}

/* ── FILTER TABS ───────────────────────────────── */
.rs-filters{
  display:flex;align-items:center;justify-content:center;
  gap:8px;flex-wrap:wrap;
}
.rs-filter{
  padding:9px 20px;border-radius:50px;
  border:1.5px solid var(--border);
  background:var(--white);
  color:var(--muted);
  font-family:'Outfit',sans-serif;
  font-size:0.83rem;font-weight:600;
  cursor:pointer;letter-spacing:0.2px;
  transition:all 0.25s var(--ease-smooth);
  box-shadow:var(--shadow-sm);
}
.rs-filter:hover{color:var(--navy);border-color:rgba(37,99,235,0.22);}
.rs-filter.active{
  background:var(--navy);color:white;
  border-color:var(--navy);
  box-shadow:0 4px 18px rgba(30,58,138,0.28);
}

/* ══════════════════════════════════════════════════
   GRID
══════════════════════════════════════════════════ */
.rs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  margin-top:56px;
}

/* ══════════════════════════════════════════════════
   SOLUTION CARD
══════════════════════════════════════════════════ */
.rs-card{
  background:var(--white);
  border-radius:20px;
  border:1px solid var(--border);
  overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:var(--shadow-sm);
  cursor:default;
  position:relative;

  /* Reveal */
  opacity:0;transform:translateY(28px) scale(0.97);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out),
    box-shadow 0.35s var(--ease-smooth),
    border-color 0.25s;
}
.rs-card.revealed{opacity:1;transform:translateY(0) scale(1);}
.rs-card.hidden{display:none;}

/* Hover lift */
.rs-card:hover{
  transform:translateY(-10px) scale(1.015);
  box-shadow:var(--shadow-lg);
  border-color:rgba(37,99,235,0.16);
  z-index:2;
}

/* Top colour bar */
.rs-card::before{
  content:'';
  position:absolute;top:0;left:0;right:0;
  height:3px;
  background:var(--card-bar, linear-gradient(90deg,var(--navy),var(--cyan)));
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.4s var(--ease-out);
}
.rs-card:hover::before{transform:scaleX(1);}

/* ── CARD ILLUSTRATION ─────────────────────────── */
.rs-card-art{
  height:168px;
  background:var(--card-bg,linear-gradient(145deg,#EEF3FF,#DDE8FD));
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
  flex-shrink:0;
  transition:background 0.3s;
}

/* Subtle pattern overlay on art */
.rs-card-art::after{
  content:'';
  position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.35) 1px,transparent 1px);
  background-size:18px 18px;
  opacity:0.6;
  pointer-events:none;
}

/* Icon wrapper */
.rs-card-icon{
  width:72px;height:72px;
  border-radius:18px;
  background:var(--white);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 24px rgba(30,58,138,0.14);
  position:relative;z-index:1;
  transition:transform 0.4s var(--ease-spring),box-shadow 0.3s;
}
.rs-card:hover .rs-card-icon{
  transform:scale(1.12) rotate(-4deg);
  box-shadow:0 10px 36px rgba(30,58,138,0.22);
}
.rs-card-icon svg{width:34px;height:34px;}

/* NEW badge */
.rs-badge-new{
  position:absolute;top:14px;right:14px;z-index:2;
  padding:4px 10px;
  background:linear-gradient(135deg,#F59E0B,#F97316);
  border-radius:50px;
  font-size:0.62rem;font-weight:800;
  color:white;letter-spacing:0.8px;text-transform:uppercase;
  box-shadow:0 3px 12px rgba(249,115,22,0.35);
}
.rs-badge-pop{
  position:absolute;top:14px;right:14px;z-index:2;
  padding:4px 10px;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
  border-radius:50px;
  font-size:0.62rem;font-weight:800;
  color:white;letter-spacing:0.8px;text-transform:uppercase;
  box-shadow:0 3px 12px rgba(37,99,235,0.35);
}

/* ── CARD BODY ─────────────────────────────────── */
.rs-card-body{
  padding:24px 24px 20px;
  display:flex;flex-direction:column;
  flex:1;
}
.rs-card-cat{
  font-size:0.66rem;font-weight:800;
  color:var(--card-accent,var(--blue));
  letter-spacing:1.5px;text-transform:uppercase;
  margin-bottom:8px;
}
.rs-card-name{
  font-family:'Instrument Serif',serif;
  font-size:1.2rem;font-weight:400;
  color:var(--ink);line-height:1.2;
  margin-bottom:10px;letter-spacing:-0.1px;
}
.rs-card-desc{
  font-size:0.86rem;font-weight:400;
  color:var(--body);line-height:1.68;
  flex:1;margin-bottom:20px;
}

/* Stat chips */
.rs-card-stats{
  display:flex;gap:8px;flex-wrap:wrap;
  margin-bottom:18px;
}
.rs-stat{
  display:flex;align-items:center;gap:5px;
  padding:4px 10px;
  background:var(--bg-alt);border-radius:50px;
  font-size:0.67rem;font-weight:700;
  color:var(--muted);
}
.rs-stat svg{width:11px;height:11px;color:var(--blue);}

/* CTA */
.rs-card-cta{
  display:inline-flex;align-items:center;gap:8px;
  padding:11px 22px;
  border-radius:12px;
  font-family:'Outfit',sans-serif;
  font-size:0.82rem;font-weight:700;
  text-decoration:none;cursor:pointer;
  border:none;
  transition:all 0.3s var(--ease-spring);
  align-self:flex-start;
  position:relative;overflow:hidden;
}
.rs-cta-primary{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:white;
  box-shadow:0 4px 16px rgba(30,58,138,0.25);
}
.rs-cta-primary::before{
  content:'';position:absolute;top:0;left:-100%;width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
  transform:skewX(-20deg);transition:left 0.5s ease;
}
.rs-cta-primary:hover::before{left:140%;}
.rs-cta-primary:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(30,58,138,0.32);}
.rs-cta-ghost{
  background:var(--bg-alt);color:var(--navy);
  border:1.5px solid rgba(30,58,138,0.14);
}
.rs-cta-ghost:hover{background:var(--bg);border-color:var(--blue);color:var(--blue);transform:translateY(-2px);}
.rs-cta-arrow{transition:transform 0.3s var(--ease-spring);}
.rs-card-cta:hover .rs-cta-arrow{transform:translateX(4px);}

/* ── VIEW ALL ROW ──────────────────────────────── */
.rs-cta-row{
  display:flex;align-items:center;justify-content:center;
  gap:16px;margin-top:56px;flex-wrap:wrap;
}
.rs-view-all{
  display:inline-flex;align-items:center;gap:12px;
  padding:16px 36px;
  border-radius:50px;
  background:var(--navy);color:white;
  font-family:'Outfit',sans-serif;
  font-size:0.95rem;font-weight:700;
  text-decoration:none;cursor:pointer;border:none;
  position:relative;overflow:hidden;
  box-shadow:0 6px 24px rgba(30,58,138,0.28);
  transition:transform 0.3s var(--ease-spring),box-shadow 0.3s;
}
.rs-view-all::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,var(--navy-deep),var(--blue));
  opacity:0;transition:opacity 0.3s;
}
.rs-view-all:hover::before{opacity:1;}
.rs-view-all:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(30,58,138,0.35);}
.rs-view-all span,.rs-view-all svg{position:relative;z-index:1;}
.rs-view-all svg{transition:transform 0.3s var(--ease-spring);}
.rs-view-all:hover svg{transform:translateX(5px);}

.rs-count-note{
  font-size:0.82rem;font-weight:500;color:var(--muted);
  display:flex;align-items:center;gap:6px;
}
.rs-count-note strong{color:var(--blue);font-weight:800;}

/* ── REVEAL UTIL ───────────────────────────────── */
.reveal-fade{
  opacity:0;transform:translateY(20px);
  transition:opacity 0.65s var(--ease-out),transform 0.65s var(--ease-out);
}
.reveal-fade.visible{opacity:1;transform:translateY(0);}

/* ── RESPONSIVE ────────────────────────────────── */
@media(max-width:1180px){.rs-grid{grid-template-columns:repeat(3,1fr);}}
@media(max-width:860px) {.rs-grid{grid-template-columns:repeat(2,1fr);gap:16px;}}
@media(max-width:520px) {
  .rs-grid{grid-template-columns:1fr;gap:14px;}
  .rs-section{padding:80px 16px 100px;}
  .rs-card-art{height:140px;}
}


/* ════════════════════════════════
   SERVICES
════════════════════════════════ */

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #F5F7FF;
  color: #0D1B3E;
}

/* ── TOKENS ─────────────────────────────────── */
:root {
  --navy:       #1E3A8A;
  --navy-deep:  #0F2159;
  --blue:       #2563EB;
  --blue-mid:   #3B6FD4;
  --bright:     #4F8EF7;
  --sky:        #93C5FD;
  --cyan:       #22D3EE;
  --ink:        #0D1B3E;
  --body:       #445075;
  --muted:      #8898BB;
  --border:     rgba(30,58,138,0.09);
  --surface:    #FFFFFF;
  --bg:         #F5F7FF;
  --blue-tint:  #EEF3FF;
  --shadow-xs:  0 1px 3px rgba(30,58,138,0.06);
  --shadow-sm:  0 4px 16px rgba(30,58,138,0.08);
  --shadow-md:  0 12px 40px rgba(30,58,138,0.13);
  --shadow-lg:  0 24px 64px rgba(30,58,138,0.18);
  --radius-card: 20px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════════ */
.services-section {
  position: relative;
  padding: 120px 24px 140px;
  overflow: hidden;
  background: var(--bg);
}

/* ── Decorative background blobs ─────────────── */
.s-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.s-blob-1 {
  width: 500px; height: 500px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
}
.s-blob-2 {
  width: 400px; height: 400px;
  bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(34,211,238,0.06) 0%, transparent 70%);
}

/* Subtle dot grid overlay */
.s-dotgrid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(30,58,138,0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── INNER CONTAINER ─────────────────────────── */
.s-container {
  position: relative; z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* ── SECTION HEADER ─────────────────────────── */
.s-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 72px;
}

.s-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.s-eyebrow-line {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}
.s-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.s-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.8px;
}
.s-title em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
}

.s-header-right { text-align: right; }
.s-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.72;
  max-width: 340px;
  margin-left: auto;
  margin-bottom: 24px;
}
.s-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: gap 0.25s var(--ease-spring);
}
.s-all-link svg { transition: transform 0.25s var(--ease-spring); }
.s-all-link:hover { gap: 12px; }
.s-all-link:hover svg { transform: translateX(3px); }

/* ── SERVICES GRID ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── SERVICE CARD ────────────────────────────── */
.s-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: default;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s ease;

  /* Reveal animation */
  opacity: 0;
  transform: translateY(32px);
}
.s-card.visible {
  animation: cardReveal 0.7s var(--ease-out) forwards;
}
@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Hover lift */
.s-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.18);
}

/* ── Corner glow on hover ── */
.s-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow, rgba(37,99,235,0.12)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.7);
}
.s-card:hover::before { opacity: 1; transform: scale(1); }

/* ── Bottom progress line ── */
.s-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-gradient, linear-gradient(90deg, var(--navy), var(--bright)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  border-radius: 0 0 0 0;
}
.s-card:hover::after { transform: scaleX(1); }

/* ── ICON WRAPPER ────────────────────────────── */
.s-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s ease;
  flex-shrink: 0;
}
.s-card:hover .s-icon-wrap {
  transform: scale(1.12) rotate(-4deg);
}

/* Icon background variants */
.s-icon-wrap.blue   { background: #EEF3FF; box-shadow: 0 4px 14px rgba(37,99,235,0.15); }
.s-icon-wrap.cyan   { background: #ECFEFF; box-shadow: 0 4px 14px rgba(34,211,238,0.15); }
.s-icon-wrap.indigo { background: #EEF2FF; box-shadow: 0 4px 14px rgba(79,70,229,0.12); }
.s-icon-wrap.sky    { background: #F0F9FF; box-shadow: 0 4px 14px rgba(14,165,233,0.15); }
.s-icon-wrap.teal   { background: #F0FDFA; box-shadow: 0 4px 14px rgba(20,184,166,0.15); }
.s-icon-wrap.violet { background: #F5F3FF; box-shadow: 0 4px 14px rgba(124,58,237,0.12); }

.s-card:hover .s-icon-wrap.blue   { background: #DBEAFE; box-shadow: 0 8px 24px rgba(37,99,235,0.25); }
.s-card:hover .s-icon-wrap.cyan   { background: #CFFAFE; box-shadow: 0 8px 24px rgba(34,211,238,0.25); }
.s-card:hover .s-icon-wrap.indigo { background: #E0E7FF; box-shadow: 0 8px 24px rgba(79,70,229,0.2); }
.s-card:hover .s-icon-wrap.sky    { background: #E0F2FE; box-shadow: 0 8px 24px rgba(14,165,233,0.25); }
.s-card:hover .s-icon-wrap.teal   { background: #CCFBF1; box-shadow: 0 8px 24px rgba(20,184,166,0.25); }
.s-card:hover .s-icon-wrap.violet { background: #EDE9FE; box-shadow: 0 8px 24px rgba(124,58,237,0.2); }

/* SVG icon sizing */
.s-icon-wrap svg { width: 30px; height: 30px; }

/* ── CARD NUMBER ─────────────────────────────── */
.s-card-num {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.s-card:hover .s-card-num { color: rgba(30,58,138,0.2); }

/* ── CARD TEXT ───────────────────────────────── */
.s-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  line-height: 1.25;
  transition: color 0.2s;
}
.s-card:hover .s-card-title { color: var(--navy-deep); }

.s-card-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.72;
  flex: 1;
}

/* ── CARD FOOTER ─────────────────────────────── */
.s-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.s-card-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.s-tag {
  padding: 3px 10px;
  background: var(--blue-tint);
  color: var(--blue);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
}
.s-card:hover .s-tag { background: #DBEAFE; }

.s-card-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition:
    background 0.3s var(--ease-spring),
    border-color 0.3s,
    color 0.3s,
    transform 0.4s var(--ease-spring);
  flex-shrink: 0;
}
.s-card:hover .s-card-arrow {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: rotate(-45deg) scale(1.1);
}

/* ── FEATURED CARD (wide) ─────────────────────── */
.s-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  padding: 40px 40px;
}
.s-card.featured .s-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px;
  flex-shrink: 0;
}
.s-card.featured .s-icon-wrap svg { width: 34px; height: 34px; }
.s-card.featured .s-card-body { flex: 1; }
.s-card.featured .s-card-title { font-size: 1.35rem; }
.s-card.featured .s-card-desc { max-width: 480px; }

/* featured badge */
.featured-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(30,58,138,0.25);
}
.featured-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}

/* ── STATS ROW ───────────────────────────────── */
.s-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  align-items: center;
}
.s-stat { text-align: center; flex: 1; }
.s-stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
}
.s-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--navy), var(--bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .s-card.featured { grid-column: span 2; }
  .s-header { grid-template-columns: 1fr; gap: 20px; }
  .s-header-right { text-align: left; }
  .s-subtitle { margin-left: 0; }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .s-card.featured { grid-column: span 1; flex-direction: column; gap: 0; }
  .s-stats-row { flex-wrap: wrap; gap: 24px; padding: 24px; }
  .s-stat-divider { display: none; }
  .services-section { padding: 80px 20px 100px; }
  .s-header { margin-bottom: 48px; }
}

/* ── ANIMATION UTILITIES ─────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════
   PORTFOLIO
════════════════════════════════ */

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Epilogue', sans-serif; background: #06101F; color: #fff; overflow-x: hidden; }

/* ── TOKENS ─────────────────────────────────── */
:root {
  --navy:      #1E3A8A;
  --blue:      #2563EB;
  --bright:    #3B82F6;
  --sky:       #60A5FA;
  --cyan:      #22D3EE;
  --white:     #FFFFFF;
  --ink:       #06101F;
  --ink2:      #0D1B3E;
  --muted:     rgba(255,255,255,0.45);
  --border:    rgba(255,255,255,0.08);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-smooth: cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════ */
.portfolio-section {
  position: relative;
  padding: 120px 24px 140px;
  background: #06101F;
  overflow: hidden;
}

/* Subtle grid texture */
.p-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
/* Radial vignette */
.p-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, #06101F 100%);
}
/* Glow orbs */
.p-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.p-orb-1 {
  width: 600px; height: 600px; top: -150px; left: -200px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
}
.p-orb-2 {
  width: 500px; height: 500px; bottom: 0; right: -100px;
  background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, transparent 70%);
}

/* ── CONTAINER ───────────────────────────────── */
.p-container {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
}

/* ── SECTION HEADER ──────────────────────────── */
.p-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.p-header-left {}

.p-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.p-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: eyeDot 2.5s ease-in-out infinite;
}
@keyframes eyeDot {
  0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6}
}
.p-eyebrow-text {
  font-size: 0.72rem; font-weight: 700;
  color: var(--cyan); letter-spacing: 3px; text-transform: uppercase;
}

.p-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.p-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-header-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 18px;
}
.p-subtitle {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.7; max-width: 300px; text-align: right;
}

/* ── FILTER TABS ─────────────────────────────── */
.p-filters {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
}
.p-filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.3px;
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap;
}
.p-filter-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}
.p-filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}

/* ── MASONRY-EDITORIAL GRID ──────────────────── */
.p-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-bottom: 60px;
}

/* Layout map:
   Card 1 (hero):  col 1-8,  row 1       → large landscape
   Card 2:         col 9-12, row 1        → tall portrait
   Card 3:         col 1-4,  row 2        → small square
   Card 4:         col 5-8,  row 2        → small square
   Card 5:         col 9-12, row 2-3      → medium (spans 2 rows)  -- but row 2 only since row 3 handled
   Card 6 (wide):  col 1-8,  row 3        → wide landscape
   Card 7:         col 9-12, row 3 done via card5 span
   Actually simplified for clarity below:
*/
.p-card:nth-child(1) { grid-column: 1 / 9;  grid-row: 1; }
.p-card:nth-child(2) { grid-column: 9 / 13; grid-row: 1 / 3; }
.p-card:nth-child(3) { grid-column: 1 / 5;  grid-row: 2; }
.p-card:nth-child(4) { grid-column: 5 / 9;  grid-row: 2; }
.p-card:nth-child(5) { grid-column: 1 / 7;  grid-row: 3; }
.p-card:nth-child(6) { grid-column: 7 / 13; grid-row: 3; }

/* ── PROJECT CARD ────────────────────────────── */
.p-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  min-height: 280px;

  /* Reveal */
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
.p-card.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ── THUMBNAIL (SVG art background) ─────────── */
.p-thumb {
  position: absolute; inset: 0;
  overflow: hidden;
}
.p-thumb svg {
  width: 100%; height: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.p-card:hover .p-thumb svg { transform: scale(1.06); }

/* ── OVERLAY ─────────────────────────────────── */
.p-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,16,31,0.97) 0%,
    rgba(6,16,31,0.70) 40%,
    rgba(6,16,31,0.10) 80%,
    transparent 100%
  );
  transition: background 0.4s ease;
}
.p-card:hover .p-overlay {
  background: linear-gradient(
    to top,
    rgba(6,16,31,0.98) 0%,
    rgba(6,16,31,0.85) 50%,
    rgba(6,16,31,0.40) 100%
  );
}

/* ── CARD CONTENT ────────────────────────────── */
.p-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 2;
}

.p-card-top {
  position: absolute;
  top: 22px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.p-card-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px; text-transform: uppercase;
}
.p-card-year {
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

/* Bottom text — always visible */
.p-card-meta {
  transition: transform 0.4s var(--ease-out);
}
.p-card:hover .p-card-meta { transform: translateY(-8px); }

.p-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.p-card:nth-child(1) .p-card-name { font-size: 1.9rem; }
.p-card:nth-child(2) .p-card-name { font-size: 1.5rem; }

.p-card-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 380px;

  /* Hidden → revealed on hover */
  max-height: 0; overflow: hidden; opacity: 0;
  transition:
    max-height 0.4s var(--ease-out),
    opacity 0.35s ease,
    margin-top 0.3s ease;
}
.p-card:hover .p-card-desc {
  max-height: 80px; opacity: 1; margin-top: 10px;
}

/* Link row — appears on hover */
.p-card-actions {
  display: flex; align-items: center; gap: 12px;
  margin-top: 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition:
    max-height 0.4s 0.05s var(--ease-out),
    opacity 0.3s 0.08s ease,
    margin-top 0.3s ease;
}
.p-card:hover .p-card-actions {
  max-height: 60px; opacity: 1; margin-top: 16px;
}
.p-card-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
  letter-spacing: 0.2px;
}
.p-btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(37,99,235,0.4);
}
.p-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.5); }
.p-btn-ghost {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}
.p-btn-ghost:hover { background: rgba(255,255,255,0.14); color: white; }

/* Tech pills inside card */
.p-card-tech {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition:
    max-height 0.3s var(--ease-out),
    opacity 0.3s ease,
    margin-top 0.3s ease;
}
.p-card:hover .p-card-tech { max-height: 40px; opacity: 1; margin-top: 10px; }
.p-tech-pill {
  padding: 3px 9px;
  background: rgba(37,99,235,0.25);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 50px;
  font-size: 0.65rem; font-weight: 700;
  color: var(--sky);
  letter-spacing: 0.3px;
}

/* ── VIEW ALL BUTTON ─────────────────────────── */
.p-cta-row {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap;
  margin-top: 20px;
}
.p-view-all {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 40px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--white);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  letter-spacing: 0.3px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-spring);
}
.p-view-all::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p-view-all:hover::before { opacity: 1; }
.p-view-all:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.35);
}
.p-view-all span, .p-view-all svg { position: relative; z-index: 1; }
.p-view-all svg { transition: transform 0.3s var(--ease-spring); }
.p-view-all:hover svg { transform: translateX(5px); }

.p-count-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
}
.p-count-badge strong { color: var(--sky); font-weight: 800; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .p-card:nth-child(1) { grid-column: 1 / 13; grid-row: 1; min-height: 320px; }
  .p-card:nth-child(2) { grid-column: 1 / 7;  grid-row: 2; grid-row-end: auto; }
  .p-card:nth-child(3) { grid-column: 7 / 13; grid-row: 2; }
  .p-card:nth-child(4) { grid-column: 1 / 7;  grid-row: 3; }
  .p-card:nth-child(5) { grid-column: 7 / 13; grid-row: 3; }
  .p-card:nth-child(6) { grid-column: 1 / 13; grid-row: 4; }
}
@media (max-width: 700px) {
  .p-grid { grid-template-columns: 1fr; gap: 16px; }
  .p-card { grid-column: 1 !important; grid-row: auto !important; min-height: 260px; }
  .p-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .p-header-right { align-items: flex-start; }
  .p-subtitle { text-align: left; }
  .portfolio-section { padding: 80px 18px 100px; }
  .p-card-desc, .p-card-actions, .p-card-tech { max-height: none !important; opacity: 1 !important; margin-top: 10px !important; }
}

/* ── ANIMATED COUNTER ────────────────────────── */
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── REVEAL UTILITY ──────────────────────────── */
.reveal-fade {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-fade.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════
   TESTIMONIAL
════════════════════════════════ */

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { font-family: 'Cabinet Grotesk', sans-serif; background: #EDF2FE; }

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  --navy:        #1E3A8A;
  --navy-deep:   #0F2159;
  --blue:        #2563EB;
  --blue-mid:    #3B6FD4;
  --bright:      #4F8EF7;
  --sky:         #93C5FD;
  --cyan:        #67E8F9;
  --teal:        #22D3EE;
  --white:       #FFFFFF;
  --bg:          #EDF2FE;
  --bg-deep:     #DDE8FD;
  --ink:         #0D1B3E;
  --body-clr:    #3D4F7A;
  --muted:       #7D8FB5;
  --border:      rgba(30,58,138,0.10);
  --card-bg:     #FFFFFF;
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-smooth: cubic-bezier(0.4,0,0.2,1);
  --shadow-card: 0 8px 40px rgba(30,58,138,0.10), 0 1px 4px rgba(30,58,138,0.06);
  --shadow-hover: 0 24px 64px rgba(30,58,138,0.18), 0 4px 16px rgba(30,58,138,0.10);
}

/* ══════════════════════════════════════════════════
   SECTION
══════════════════════════════════════════════════ */
.testi-section {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%, rgba(147,197,253,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(103,232,249,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(219,234,254,0.60) 0%, transparent 80%),
    #EDF2FE;
}

/* Decorative wavy pattern */
.t-pattern {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.t-pattern svg { width: 100%; height: 100%; position: absolute; }

/* Large quote watermark */
.t-watermark {
  position: absolute;
  top: 60px; right: 5%;
  font-family: 'Fraunces', serif;
  font-size: clamp(200px, 20vw, 320px);
  font-style: italic;
  font-weight: 700;
  color: rgba(37,99,235,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -10px;
}

/* ── CONTAINER ─────────────────────────────────── */
.t-container {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── HEADER ────────────────────────────────────── */
.t-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 72px;
}

.t-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.t-eyebrow-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.30);
}
.t-eyebrow-icon svg { width: 18px; height: 18px; }
.t-eyebrow-text {
  font-size: 0.72rem; font-weight: 800;
  color: var(--blue);
  letter-spacing: 2.5px; text-transform: uppercase;
}

.t-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.t-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
}

.t-header-right {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  gap: 24px;
  padding-bottom: 4px;
}
.t-subtitle {
  font-size: 1rem; font-weight: 400;
  color: var(--body-clr); line-height: 1.75;
  max-width: 380px;
}

/* Rating summary */
.t-rating-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 22px;
  background: var(--white);
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.t-stars { display: flex; gap: 3px; }
.t-stars svg { width: 16px; height: 16px; }
.t-rating-num {
  font-size: 1.2rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.5px;
}
.t-rating-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--muted);
}
.t-rating-sep {
  width: 1px; height: 24px;
  background: var(--border);
}
.t-review-count {
  font-size: 0.8rem; font-weight: 700;
  color: var(--blue);
}

/* ── CAROUSEL WRAPPER ──────────────────────────── */
.t-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 52px;

  /* Fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

/* Track */
.t-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s var(--ease-out);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.t-track.dragging { cursor: grabbing; transition: none; }

/* ── TESTIMONIAL CARD ──────────────────────────── */
.t-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 36px 36px 32px;
  border: 1px solid rgba(30,58,138,0.08);
  box-shadow: var(--shadow-card);
  flex: 0 0 calc(33.333% - 16px);
  min-width: 340px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s var(--ease-smooth);
}
.t-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Top accent strip */
.t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, linear-gradient(90deg, var(--navy), var(--teal)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.t-card:hover::before { transform: scaleX(1); }

/* Card glow on hover */
.t-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--card-glow, radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%));
  opacity: 0;
  transition: opacity 0.4s;
}
.t-card:hover::after { opacity: 1; }

/* ── QUOTE ICON ────────────────────────────────── */
.t-quote-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.t-quote-icon svg { width: 100%; height: 100%; }

/* ── STARS ─────────────────────────────────────── */
.t-card-stars {
  display: flex; gap: 4px;
  margin-bottom: 18px;
}
.t-card-stars svg { width: 15px; height: 15px; }

/* ── FEEDBACK TEXT ─────────────────────────────── */
.t-feedback {
  font-family: 'Fraunces', serif;
  font-size: 1.06rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 28px;
}
.t-feedback strong {
  font-weight: 600;
  font-style: normal;
  color: var(--navy);
  background: linear-gradient(120deg, rgba(37,99,235,0.1) 0%, rgba(103,232,249,0.15) 100%);
  padding: 1px 4px;
  border-radius: 4px;
}

/* ── AUTHOR ────────────────────────────────────── */
.t-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* SVG Avatar */
.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2.5px solid var(--border);
  box-shadow: 0 4px 14px rgba(30,58,138,0.12);
  transition: transform 0.35s var(--ease-spring), border-color 0.3s;
}
.t-card:hover .t-avatar {
  transform: scale(1.08);
  border-color: var(--sky);
}

.t-author-info {}
.t-author-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 0.97rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.1px;
  margin-bottom: 3px;
}
.t-author-role {
  font-size: 0.78rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.2px;
}
.t-author-company {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 4px;
}
.t-company-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); opacity: 0.6;
}
.t-company-name {
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue); letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Verified badge */
.t-verified {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  background: rgba(37,99,235,0.07);
  border-radius: 50px;
  border: 1px solid rgba(37,99,235,0.12);
  flex-shrink: 0;
}
.t-verified svg { width: 13px; height: 13px; }
.t-verified span {
  font-size: 0.66rem; font-weight: 800;
  color: var(--blue); letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── FEATURED CARD ─────────────────────────────── */
.t-card.featured {
  background: linear-gradient(145deg, var(--navy) 0%, #162d6a 100%);
  border-color: transparent;
}
.t-card.featured .t-feedback { color: rgba(255,255,255,0.88); }
.t-card.featured .t-feedback strong {
  color: var(--cyan);
  background: rgba(103,232,249,0.12);
}
.t-card.featured .t-author-name { color: var(--white); }
.t-card.featured .t-author-role { color: rgba(255,255,255,0.5); }
.t-card.featured .t-author { border-top-color: rgba(255,255,255,0.10); }
.t-card.featured .t-avatar { border-color: rgba(255,255,255,0.2); }
.t-card.featured:hover .t-avatar { border-color: var(--cyan); }
.t-card.featured .t-verified {
  background: rgba(103,232,249,0.1);
  border-color: rgba(103,232,249,0.2);
}
.t-card.featured .t-verified svg path { fill: var(--cyan); }
.t-card.featured .t-verified span { color: var(--cyan); }
.t-card.featured .t-company-name { color: var(--sky); }
.t-card.featured .t-company-dot { background: var(--sky); }

/* ── CAROUSEL CONTROLS ─────────────────────────── */
.t-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
}

/* Dot indicators */
.t-dots {
  display: flex; gap: 8px; align-items: center;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(30,58,138,0.20);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.35s var(--ease-spring);
}
.t-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--navy);
}

/* Arrow buttons */
.t-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-spring);
  color: var(--navy);
  flex-shrink: 0;
}
.t-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(30,58,138,0.30);
}
.t-arrow:active { transform: scale(0.95); }
.t-arrow svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-spring); }
.t-arrow:hover svg { transform: scale(1.1); }
.t-arrow-prev:hover svg { transform: translateX(-2px); }
.t-arrow-next:hover svg { transform: translateX(2px); }

/* Auto-progress bar */
.t-progress-bar {
  width: 120px; height: 2px;
  background: rgba(30,58,138,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.t-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  border-radius: 2px;
  transform-origin: left;
  animation: progressAnim 5s linear infinite;
}
@keyframes progressAnim {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.t-progress-fill.paused { animation-play-state: paused; }

/* ── TRUST LOGOS ───────────────────────────────── */
.t-trust {
  margin-top: 72px;
  text-align: center;
}
.t-trust-label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--muted); letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.t-logos {
  display: flex; align-items: center;
  justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.t-logo-item {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.35;
  transition: opacity 0.25s;
  cursor: default;
}
.t-logo-item:hover { opacity: 0.6; }
.t-logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.t-logo-name {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.3px;
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .t-card { flex: 0 0 calc(50% - 12px); min-width: 300px; }
  .t-header { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .t-card { flex: 0 0 calc(100% - 0px); min-width: 280px; }
  .t-container { padding: 0 18px; }
  .testi-section { padding: 80px 0 100px; }
  .t-header { margin-bottom: 48px; }
  .t-logos { gap: 28px; }
  .t-watermark { display: none; }
  .t-progress-bar { display: none; }
}

/* ── SCROLL REVEAL ─────────────────────────────── */
.t-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.t-reveal.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════
   CONTACT-FOOTER
════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Figtree', sans-serif; background: #F5F7FF; overflow-x: hidden; }
:root {
  --navy: #1E3A8A; --navy-deep: #0F1F50; --navy-mid: #162d6e;
  --blue: #2563EB; --bright: #4F8EF7; --sky: #93C5FD; --cyan: #22D3EE;
  --white: #FFFFFF; --bg: #F5F7FF; --bg-alt: #EEF3FF;
  --ink: #0D1B3E; --body-c: #3D4F7A; --muted: #8898BB;
  --border: rgba(30,58,138,0.09); --border-dark: rgba(255,255,255,0.10);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-smooth: cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════ CONTACT SECTION ═══════════ */
.contact-section {
  position: relative; padding: 120px 24px 0;
  background: var(--bg); overflow: hidden;
}
.c-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 5% 30%, rgba(147,197,253,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 95% 70%, rgba(34,211,238,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(219,234,254,0.35) 0%, transparent 80%);
}
.c-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(30,58,138,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 20%, transparent 100%);
}
.c-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.c-header { text-align: center; margin-bottom: 72px; }
.c-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 18px; background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.16); border-radius: 50px; margin-bottom: 20px;
}
.c-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue);
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.6)} }
.c-eyebrow-text { font-size: 0.72rem; font-weight: 700; color: var(--blue); letter-spacing: 2.5px; text-transform: uppercase; }
.c-title {
  font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -0.8px; margin-bottom: 16px;
}
.c-title .grad {
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.c-subtitle { font-size: 1.02rem; font-weight: 400; color: var(--body-c); line-height: 1.72; max-width: 500px; margin: 0 auto; }
.c-body { display: grid; grid-template-columns: 1fr 1.45fr; gap: 60px; align-items: start; padding-bottom: 120px; }

/* Info panel */
.c-info-headline { font-family: 'Syne', sans-serif; font-size: 1.55rem; font-weight: 800; color: var(--ink); line-height: 1.2; letter-spacing: -0.3px; margin-bottom: 14px; }
.c-info-sub { font-size: 0.95rem; color: var(--body-c); line-height: 1.72; margin-bottom: 40px; }
.c-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.c-detail {
  display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,58,138,0.06);
  transition: all 0.3s var(--ease-out);
}
.c-detail:hover { transform: translateX(6px); border-color: rgba(37,99,235,0.2); box-shadow: 0 6px 24px rgba(30,58,138,0.12); }
.c-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease-spring);
}
.c-detail:hover .c-detail-icon { transform: scale(1.1) rotate(-5deg); }
.c-detail-label { font-size: 0.7rem; font-weight: 800; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.c-detail-val { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.c-detail-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
.c-detail-val a:hover { color: var(--blue); }

/* Map */
.c-map { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(30,58,138,0.09); }
.c-map-inner {
  height: 200px; background: linear-gradient(145deg, #dde8fd 0%, #c7d9fb 100%);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.c-map-inner::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(30,58,138,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(30,58,138,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.c-map-pin { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0; animation: pinBounce 2s ease-in-out infinite; }
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.c-map-pin-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(30,58,138,0.40);
}
.c-map-pin-icon svg { transform: rotate(45deg); width: 20px; height: 20px; }
.c-map-pin-shadow { width: 14px; height: 5px; background: rgba(30,58,138,0.20); border-radius: 50%; margin-top: 4px; animation: shadowPulse 2s ease-in-out infinite; }
@keyframes shadowPulse { 0%,100%{transform:scale(1);opacity:0.4} 50%{transform:scale(0.7);opacity:0.2} }
.c-map-label {
  position: absolute; bottom: 14px; left: 14px; background: white;
  padding: 8px 14px; border-radius: 10px; font-size: 0.78rem; font-weight: 700; color: var(--navy);
  box-shadow: 0 4px 14px rgba(30,58,138,0.15); display: flex; align-items: center; gap: 6px;
}
.c-map-label-dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 6px #22C55E; }

/* Form card */
.c-form-card {
  background: var(--white); border-radius: 24px; padding: 48px 44px;
  border: 1px solid var(--border); position: sticky; top: 100px;
  box-shadow: 0 8px 40px rgba(30,58,138,0.10), 0 1px 4px rgba(30,58,138,0.06);
}
.c-form-title { font-family: 'Syne', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.3px; }
.c-form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.c-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.c-field { margin-bottom: 20px; position: relative; }
.c-field label { display: block; font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--navy); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 9px; }
.c-field label .req { color: #EF4444; margin-left: 2px; }
.c-input-wrap { position: relative; }
.c-input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; transition: color 0.25s; }
.c-field.has-icon input, .c-field.has-icon select { padding-left: 44px; }
.c-field input, .c-field select, .c-field textarea {
  width: 100%; padding: 14px 18px; background: var(--bg);
  border: 1.5px solid rgba(30,58,138,0.11); border-radius: 12px;
  font-family: 'Figtree', sans-serif; font-size: 0.95rem; font-weight: 400; color: var(--ink);
  transition: all 0.25s var(--ease-smooth); outline: none; appearance: none;
}
.c-field input::placeholder, .c-field textarea::placeholder { color: var(--muted); }
.c-field input:focus, .c-field select:focus, .c-field textarea:focus {
  background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,0.10);
}
.c-field:focus-within .c-input-icon { color: var(--blue); }
.c-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.c-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%238898BB' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer;
}
.c-char-counter { position: absolute; bottom: 12px; right: 14px; font-size: 0.7rem; font-weight: 600; color: var(--muted); pointer-events: none; }
.c-submit {
  width: 100%; padding: 16px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white); border: none; border-radius: 14px;
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.3px;
  cursor: pointer; position: relative; overflow: hidden; margin-top: 8px;
  box-shadow: 0 6px 24px rgba(30,58,138,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.c-submit::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transform: skewX(-20deg); transition: left 0.55s ease;
}
.c-submit:hover::before { left: 150%; }
.c-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(30,58,138,0.38), inset 0 1px 0 rgba(255,255,255,0.12); }
.c-submit:active { transform: translateY(0) scale(0.99); }
.c-submit-arrow {
  width: 22px; height: 22px; background: rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--ease-spring);
}
.c-submit:hover .c-submit-arrow { transform: translateX(4px); }
.c-form-trust { display: flex; align-items: center; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.c-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.c-trust-item svg { flex-shrink: 0; color: var(--blue); }
.c-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 20px; gap: 16px;
}
.c-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(30,58,138,0.30); animation: successBounce 0.6s var(--ease-spring);
}
@keyframes successBounce { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.c-success-title { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.c-success-sub { font-size: 0.92rem; color: var(--muted); max-width: 300px; line-height: 1.6; }

/* ═══════════ FOOTER ═══════════ */
footer { background: var(--navy); position: relative; overflow: hidden; }
.f-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 10% 20%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(34,211,238,0.07) 0%, transparent 55%);
}
.f-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px; animation: fGridDrift 40s linear infinite;
}
@keyframes fGridDrift { from{transform:translate(0,0)} to{transform:translate(52px,52px)} }

/* Newsletter banner */
.f-newsletter { position: relative; z-index: 2; background: linear-gradient(135deg, #162d6e 0%, #1a3882 100%); border-bottom: 1px solid var(--border-dark); padding: 48px 24px; }
.f-nl-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.f-nl-tag {
  display: inline-flex; align-items: center; gap: 7px; padding: 4px 12px;
  background: rgba(34,211,238,0.12); border: 1px solid rgba(34,211,238,0.2); border-radius: 50px;
  font-size: 0.68rem; font-weight: 800; color: var(--cyan); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px;
}
.f-nl-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.f-nl-title { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
.f-nl-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.f-nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.f-nl-input {
  flex: 1; min-width: 220px; padding: 13px 18px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
  font-family: 'Figtree', sans-serif; font-size: 0.9rem; color: var(--white); outline: none; transition: all 0.25s;
}
.f-nl-input::placeholder { color: rgba(255,255,255,0.35); }
.f-nl-input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,0.15); }
.f-nl-btn {
  padding: 13px 24px; background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white; border: none; border-radius: 10px; font-family: 'Syne', sans-serif;
  font-size: 0.88rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: all 0.3s var(--ease-spring); box-shadow: 0 4px 16px rgba(34,211,238,0.25);
}
.f-nl-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,211,238,0.35); }

/* Main footer grid */
.f-body {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 72px 24px 56px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px;
}
.f-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 24px; width: fit-content;
}
.f-logo-mark {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.3s;
}
.f-logo:hover .f-logo-mark { transform: scale(1.08) rotate(-5deg); box-shadow: 0 8px 28px rgba(34,211,238,0.35); }
.f-logo-mark svg { width: 22px; height: 22px; }
.f-logo-name { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--white); display: block; }
.f-logo-tag { font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.40); letter-spacing: 2px; text-transform: uppercase; }
.f-brand-desc { font-size: 0.9rem; color: rgba(255,255,255,0.50); line-height: 1.75; max-width: 300px; margin-bottom: 28px; }
.f-socials { display: flex; gap: 10px; margin-bottom: 32px; }
.f-social {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.55);
  transition: all 0.3s var(--ease-spring);
}
.f-social:hover {
  background: var(--social-bg, var(--blue)); border-color: transparent; color: white;
  transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 20px var(--social-shadow, rgba(37,99,235,0.35));
}
.f-social svg { width: 17px; height: 17px; }
.f-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.f-badge {
  display: flex; align-items: center; gap: 6px; padding: 6px 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px;
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.40); letter-spacing: 0.5px;
  transition: all 0.2s;
}
.f-badge:hover { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.65); }
.f-badge svg { width: 12px; height: 12px; color: var(--sky); }
.f-col-title {
  font-family: 'Syne', sans-serif; font-size: 0.78rem; font-weight: 800;
  color: rgba(255,255,255,0.30); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.f-col-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.50);
  text-decoration: none; transition: all 0.2s var(--ease-smooth); padding: 2px 0;
}
.f-links a::before {
  content: ''; width: 0; height: 1.5px; background: var(--cyan);
  border-radius: 1px; transition: width 0.25s var(--ease-out); flex-shrink: 0;
}
.f-links a:hover { color: var(--white); transform: translateX(6px); }
.f-links a:hover::before { width: 12px; }
.f-hiring {
  padding: 2px 8px; background: rgba(34,211,238,0.15); border-radius: 50px;
  font-size: 0.65rem; font-weight: 800; color: var(--cyan); letter-spacing: 0.5px; margin-left: 4px;
}
.f-divider { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.f-bottom {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 24px 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.f-copy { font-size: 0.82rem; color: rgba(255,255,255,0.30); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.f-copy strong { color: rgba(255,255,255,0.50); font-weight: 600; }
.f-copy-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.20); }
.f-copy-heart { color: #F87171; }
.f-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.f-bottom-links a { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.30); text-decoration: none; transition: color 0.2s; }
.f-bottom-links a:hover { color: var(--white); }
.f-top-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.5); transition: all 0.3s var(--ease-spring); flex-shrink: 0;
}
.f-top-btn:hover { background: var(--blue); border-color: var(--blue); color: white; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37,99,235,0.35); }
.f-top-btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-spring); }
.f-top-btn:hover svg { transform: translateY(-2px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION — Hostseba Style
══════════════════════════════════════════════ */
.footer-mobile-menu {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  background: #1a2550;
  border-top: 2px solid #2563EB;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.3);
  padding-bottom: env(safe-area-inset-bottom);
}

.footer-mobile-menu ul {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0; padding: 0;
  width: 100%;
}

.footer-mobile-menu ul li {
  flex: 1;
}

.footer-mobile-menu ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 5px 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.footer-mobile-menu ul li a:hover,
.footer-mobile-menu ul li a.active {
  color: #fff;
  background: rgba(37,99,235,0.18);
}

.footer-mobile-menu ul li a i {
  font-size: 1.25rem;
  line-height: 1;
}

.footer-mobile-menu ul li a small {
  font-family: 'Figtree', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}

/* active top border — like hostseba active tab */
.footer-mobile-menu ul li a.active {
  border-top: 2px solid #22d3ee;
  padding-top: 8px;
  color: #fff;
}
.footer-mobile-menu ul li a.active i {
  color: #22d3ee;
}
.footer-mobile-menu ul li a.active small {
  color: #93c5fd;
}

/* ── CENTER PHONE BUTTON (phone-iccon) ─────── */
.footer-mobile-menu ul li.phone-iccon {
  flex: none;
  width: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5px;
}
.footer-mobile-menu ul li.phone-iccon a {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #2563EB;
  border: 3px solid #1a2550;
  outline: 2px solid #2563EB;
  padding: 0;
  gap: 0;
  margin-bottom: -2px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.5);
  transition: background 0.2s, transform 0.2s;
}
.footer-mobile-menu ul li.phone-iccon a:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
  border-top: none;
  padding-top: 0;
}
.footer-mobile-menu ul li.phone-iccon a.active {
  border-top: none;
  padding-top: 0;
}
.footer-mobile-menu ul li.phone-iccon a i { font-size: 1.3rem; }
.footer-mobile-menu ul li.phone-iccon a small { display: none; }

/* ── SHOW ON MOBILE ─────────────────────────── */
@media (max-width: 768px) {
  .footer-mobile-menu { display: block; }
  body { padding-bottom: 64px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .c-body { grid-template-columns: 1fr; gap: 48px; }
  .c-form-card { position: static; }
  .f-body { grid-template-columns: 1fr 1fr; gap: 40px; }
  .f-brand { grid-column: span 2; }
}
@media (max-width: 700px) {
  .c-form-card { padding: 32px 24px; }
  .c-form-row { grid-template-columns: 1fr; }
  .f-body { grid-template-columns: 1fr 1fr; gap: 32px; }
  .f-brand { grid-column: span 2; }
  .f-nl-inner { flex-direction: column; gap: 24px; }
  .f-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact-section { padding: 80px 18px 0; }
}
@media (max-width: 480px) {
  .f-body { grid-template-columns: 1fr; }
  .f-brand { grid-column: span 1; }
  .c-header { margin-bottom: 48px; }
}


/* ════════════════════════════════
   WHY CHOOSE US
════════════════════════════════ */
.wcu-section {
  position: relative;
  padding: 110px 24px 120px;
  background: #F8FAFF;
  overflow: hidden;
}
.wcu-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(147,197,253,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(34,211,238,0.10) 0%, transparent 55%);
}
.wcu-container { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; }
.wcu-header { text-align: center; margin-bottom: 64px; }
.wcu-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 20px;
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 50px; margin-bottom: 20px;
}
.wcu-ey-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 8px var(--blue);
  animation: wcuDot 2.5s ease-in-out infinite;
}
@keyframes wcuDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.6)} }
.wcu-ey-text { font-size: 0.72rem; font-weight: 700; color: var(--blue); letter-spacing: 2.5px; text-transform: uppercase; }
.wcu-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px;
}
.wcu-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wcu-sub { font-size: 1rem; color: var(--body-c); line-height: 1.75; max-width: 520px; margin: 0 auto; }
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.wcu-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
  opacity: 0; transform: translateY(20px);
  position: relative; overflow: hidden;
}
.wcu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.wcu-card:hover::before { transform: scaleX(1); }
.wcu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.15); }
.wcu-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.55s var(--ease-out) var(--delay, 0s), transform 0.55s var(--ease-out) var(--delay, 0s), box-shadow 0.35s, border-color 0.25s; }
.wcu-card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease-spring);
}
.wcu-card:hover .wcu-card-icon { transform: scale(1.1) rotate(-5deg); }
.wcu-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.08rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.2px;
}
.wcu-card-desc { font-size: 0.88rem; color: var(--body-c); line-height: 1.7; }
@media (max-width: 900px) { .wcu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .wcu-grid { grid-template-columns: 1fr; } .wcu-section { padding: 80px 18px; } }


/* ════════════════════════════════
   CALL TO ACTION
════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 100px 24px;
  background: var(--navy);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(37,99,235,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(34,211,238,0.18) 0%, transparent 55%);
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-container { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.cta-inner { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.cta-inner.visible { opacity: 1; transform: translateY(0); }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; margin-bottom: 24px;
}
.cta-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: wcuDot 2.5s ease-in-out infinite;
}
.cta-eyebrow-text { font-size: 0.72rem; font-weight: 700; color: var(--cyan); letter-spacing: 2.5px; text-transform: uppercase; }
.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 18px;
}
.cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-sub { font-size: 1.02rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 40px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: white; color: var(--navy);
  border: none; border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.30); }
.cta-btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px; color: white;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s;
}
.cta-btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.55); }
@media (max-width: 520px) { .cta-section { padding: 80px 18px; } .cta-actions { flex-direction: column; align-items: stretch; } .cta-trust { flex-direction: column; gap: 12px; } }
