@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ===== TECHAVIDITY BRAND THEME — LIGHT =====
   Primary Navy : #050a30
   Primary Red  : #ff3131
   ============================================ */
:root {
  /* Backgrounds — clean white / light blue-tint family */
  --bg:      #ffffff;
  --bg-2:    #f4f6ff;   /* light blue-white tint */
  --bg-3:    #eaedfa;   /* slightly deeper light */
  --surface: #ffffff;
  --border:  rgba(5,10,48,0.1);
  --border-m:rgba(5,10,48,0.2);

  /* Red — TechAvidity brand */
  --primary:   #ff3131;
  --primary-d: #cc0000;
  --primary-l: #d91a1a;
  --secondary: #cc0000;

  /* Navy accent */
  --navy:   #050a30;
  --navy-l: #1a2560;

  /* Supporting palette */
  --amber:   #b91c1c;
  --rose:    #e11d48;
  --emerald: #059669;
  --violet:  #7c3aed;
  --cyan:    #0284c7;

  /* Text — navy-on-white for maximum brand alignment */
  --text:   #050a30;
  --text-2: #1a2560;
  --text-3: #5a6a96;
  --text-4: #9aaad4;

  /* Gradients */
  --grad:       linear-gradient(135deg, #ff5252 0%, #b91c1c 100%);
  --grad-brand: linear-gradient(135deg, #ff3131 0%, #050a30 100%);
  --grad-warm:  linear-gradient(135deg, #ff3131 0%, #7f0000 100%);
  --grad-cool:  linear-gradient(135deg, #cc0000 0%, #ff3131 100%);

  /* Layout */
  --nav-h: 76px;
  --r:     12px;
  --r-lg:  20px;
  --r-xl:  28px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-d); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-brand {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-l);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--grad);
  border-radius: 99px;
}

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header p { color: var(--text-3); font-size: 1.05rem; margin-top: 14px; line-height: 1.8; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600;
  border: none; transition: all 0.25s ease;
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,49,49,0.45); }

.btn-outline { background: transparent; color: var(--text-2); border: 1px solid var(--border-m); }
.btn-outline:hover { border-color: var(--primary-l); color: var(--primary-l); transform: translateY(-1px); background: rgba(255,49,49,0.06); }

.btn-gradient { background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.btn-gradient::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #ff5252, #cc0000);
  opacity: 0; transition: opacity 0.3s;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,49,49,0.5); }
.btn-gradient:hover::before { opacity: 1; }
.btn-gradient > * { position: relative; z-index: 1; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; border-radius: 8px; }
.btn-lg { padding: 16px 34px; font-size: 1rem; border-radius: 12px; }
.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(5,10,48,0.06);
  transition: all 0.3s ease;
}
.card:hover { border-color: var(--border-m); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(5,10,48,0.1); }

/* ===== NAVBAR ===== */

/* Top accent bar */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #cc0000 0%, #ff3131 40%, #ff5252 100%);
  z-index: 1001;
}

.navbar {
  position: fixed; top: 3px; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(5,10,48,0.07);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: rgba(5,10,48,0.11);
  box-shadow: 0 1px 0 rgba(5,10,48,0.06), 0 8px 40px rgba(5,10,48,0.08);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
  gap: 0;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { display: block; }

/* Vertical separators */
.nav-sep {
  width: 1px; height: 28px;
  background: rgba(5,10,48,0.12);
  flex-shrink: 0; margin: 0 28px;
}
.nav-cta-sep {
  width: 1px; height: 28px;
  background: rgba(5,10,48,0.12);
  flex-shrink: 0; margin-right: 16px;
}

/* Nav links */
.nav-links {
  display: flex; align-items: center;
  gap: 0; list-style: none; flex: 1;
}
.nav-link {
  position: relative;
  padding: 9px 17px;
  color: var(--text-3);
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -1px;
  left: 17px; right: 17px;
  height: 2px;
  background: var(--primary);
  border-radius: 99px 99px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover { color: var(--text); background: none; }
.nav-link:hover::after { transform: scaleX(0.45); opacity: 0.5; }
.nav-link.active { color: var(--primary); background: none; font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

/* CTA zone */
.nav-cta { display: flex; align-items: center; gap: 0; flex-shrink: 0; }

/* CTA button polish */
.nav-cta .btn-primary.btn-sm {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 22px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(255,49,49,0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.nav-cta .btn-primary.btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,49,49,0.35);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none;
  border: 1px solid var(--border-m); border-radius: 8px; padding: 9px;
  margin-left: 12px; cursor: pointer; transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--primary); }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--text-2); border-radius: 99px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== NAV DROPDOWN ===== */
.has-dropdown { position: relative; }

.nav-chevron {
  display: inline-block; margin-left: 4px;
  vertical-align: middle; flex-shrink: 0;
  transition: transform 0.22s ease;
}
.has-dropdown:hover .nav-chevron,
.has-dropdown.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(-8px);
  min-width: 270px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(5,10,48,0.09);
  box-shadow: 0 4px 6px rgba(5,10,48,0.04), 0 16px 48px rgba(5,10,48,0.13);
  padding: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
/* Arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #ffffff;
  border-top: 1px solid rgba(5,10,48,0.09);
  border-left: 1px solid rgba(5,10,48,0.09);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-divider { height: 1px; background: var(--border); margin: 6px 4px; }

.dropdown-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-4); padding: 6px 12px 4px;
}

.dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 9px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.dropdown-item:hover { background: var(--bg-2); }

.dropdown-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.dropdown-text { display: flex; flex-direction: column; gap: 1px; }
.dropdown-title { font-size: 0.875rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.dropdown-desc  { font-size: 0.72rem; color: var(--text-4); line-height: 1.3; }

/* Mobile dropdown */
@media (max-width: 768px) {
  .has-dropdown { position: static; }
  .nav-dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--bg-2) !important;
    border-radius: 10px !important;
    padding: 6px !important;
    margin: 4px 0 !important;
    opacity: 1 !important; visibility: visible !important;
    pointer-events: auto !important;
    display: none;
  }
  .nav-dropdown::before { display: none; }
  .has-dropdown.open .nav-dropdown { display: block; }
  .dropdown-item { padding: 8px 10px; }
  .dropdown-title { font-size: 0.82rem; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 88px) 0 88px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,49,49,0.07) 0%, transparent 65%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; width: 400px; height: 2px;
  background: var(--grad); opacity: 0.35;
  bottom: 0; left: 50%; transform: translateX(-50%);
  pointer-events: none; border-radius: 99px; filter: blur(4px);
}
.page-hero .label { justify-content: center; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); max-width: 760px; margin: 0 auto 18px; }
.page-hero p { max-width: 580px; margin: 0 auto; color: var(--text-3); font-size: 1.05rem; line-height: 1.82; }

/* ===== HERO ===== */
.hero { min-height: 0; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: calc(var(--nav-h) + 20px); padding-bottom: 28px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.35; animation: orbFloat 14s ease-in-out infinite; }
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,49,49,0.45) 0%, transparent 70%);
  top: -250px; right: -150px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,10,48,0.3) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation-delay: -5s;
}
.hero-orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,49,49,0.2) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -9s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-45px) scale(1.07); }
  66%      { transform: translate(-30px,35px) scale(0.93); }
}

/* Grid — light tinted */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(5,10,48,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,10,48,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 72%);
}

.hero-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; width: 100%; }
.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: rgba(255,49,49,0.1);
  border: 1px solid rgba(255,49,49,0.3);
  border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; color: var(--primary-l);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: blink 2.2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.5); }
}
.hero h1 { font-size: clamp(2.28rem, 3.84vw, 3.6rem); letter-spacing: -0.03em; line-height: 1.40; margin-bottom: 14px; }
.hero .subtitle { font-size: clamp(0.9rem, 1.6vw, 1rem); color: var(--text-3); max-width: 520px; line-height: 1.7; margin-bottom: 22px; }
.hero-stats { display: flex; align-items: center; gap: 36px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,49,49,0.15); }
.hero-stat h3 {
  font-size: 2.1rem; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.04em;
}
.hero-stat p    { font-size: 0.82rem; color: var(--text-4); margin-top: 3px; font-weight: 500; }
.hero-divider   { width: 1px; height: 52px; background: rgba(255,49,49,0.18); flex-shrink: 0; }

/* ===== TRUSTED BY ===== */
.trusted-by {
  padding: 60px 0;
  background: #0a0a0f;
  position: relative; overflow: hidden;
}
.trusted-by::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,49,49,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(255,82,82,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 0%, rgba(255,49,49,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.trusted-by::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,49,49,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,49,49,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.trusted-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,49,49,0.7); text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  padding: 14px 32px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 4px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  transition: all 0.3s; cursor: default;
  letter-spacing: 0.02em;
}
.brand-name:hover {
  background: linear-gradient(135deg, rgba(255,49,49,0.18) 0%, rgba(255,49,49,0.08) 100%);
  border-color: rgba(255,49,49,0.4);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,49,49,0.2), 0 12px 32px rgba(255,49,49,0.15), 0 4px 12px rgba(0,0,0,0.4);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  box-shadow: 0 2px 12px rgba(5,10,48,0.06);
  transition: all 0.3s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.service-card:hover { border-color: rgba(255,49,49,0.35); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(5,10,48,0.1), 0 0 0 1px rgba(255,49,49,0.08); }
.service-card:hover::after { opacity: 0.05; }
.service-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; margin-bottom: 22px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 0.875rem; color: var(--text-3); line-height: 1.75; margin-bottom: 24px; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--primary-l); transition: gap 0.2s; margin-top: auto; }
.service-link:hover { gap: 10px; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 120px 0; background: linear-gradient(180deg, transparent, var(--bg-2) 25%, var(--bg-2) 75%, transparent); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 39px; left: calc(16.67% + 28px); right: calc(16.67% + 28px);
  height: 1px; background: var(--grad); opacity: 0.4; pointer-events: none;
}
.step-item { padding: 0 36px; text-align: center; }
.step-number {
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid rgba(255,49,49,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.45rem; font-weight: 800;
  color: var(--primary-l); margin: 0 auto 28px; position: relative; z-index: 1; transition: all 0.3s;
}
.step-item:hover .step-number { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 0 32px rgba(255,49,49,0.6); }
.step-item h3 { font-size: 1.1rem; margin-bottom: 12px; }
.step-item p  { font-size: 0.875rem; color: var(--text-3); line-height: 1.75; }

/* ===== WORK PREVIEW ===== */
.work-grid { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: 260px 260px; gap: 18px; }
.work-card { border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; }
.work-card:first-child { grid-row: span 2; }
.work-card-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; transition: transform 0.5s ease; }
.work-card:hover .work-card-bg { transform: scale(1.07); }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0; transition: opacity 0.32s;
}
.work-card:hover .work-overlay { opacity: 1; }
.work-tag {
  display: inline-block; padding: 4px 11px;
  background: rgba(255,49,49,0.22); border: 1px solid rgba(255,49,49,0.4);
  border-radius: 99px; font-size: 0.73rem; font-weight: 700; color: var(--primary-l);
  margin-bottom: 8px; align-self: flex-start; letter-spacing: 0.04em; text-transform: uppercase;
}
.work-overlay h3 { font-size: 1.05rem; margin-bottom: 4px; }
.work-overlay p  { font-size: 0.8rem; color: var(--text-3); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: 0 2px 12px rgba(5,10,48,0.06); transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(255,49,49,0.25); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(5,10,48,0.1), 0 0 0 1px rgba(255,49,49,0.06); }
.stars { display: flex; gap: 3px; margin-bottom: 18px; font-size: 0.9rem; }
.testimonial-text { font-size: 0.925rem; color: var(--text-2); line-height: 1.82; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0; }
.author-info h4 { font-size: 0.88rem; font-weight: 600; }
.author-info p  { font-size: 0.78rem; color: var(--text-3); }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 120px 0; }
.cta-inner {
  background: linear-gradient(135deg, rgba(255,49,49,0.05), rgba(5,10,48,0.04));
  border: 1px solid rgba(255,49,49,0.18);
  border-radius: var(--r-xl); padding: 88px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,49,49,0.08), transparent 70%);
  top: -200px; right: -150px; pointer-events: none;
}
.cta-inner::after {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(5,10,48,0.05), transparent 70%);
  bottom: -100px; left: -60px; pointer-events: none;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 600px; margin: 0 auto 14px; }
.cta-inner p  { color: var(--text-3); margin-bottom: 36px; font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer {
  background: #1e1e1e;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, #ff3131, #ff6b6b, #ff3131, transparent) 1;
  padding: 72px 0 32px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 120px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,49,49,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1.6fr; gap: 52px; margin-bottom: 56px; }
.footer .logo img { filter: brightness(0) invert(1); }
.footer-brand p { color: #b0b0b0; font-size: 0.875rem; line-height: 1.75; margin: 16px 0 24px; max-width: 280px; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,49,49,0.08); border: 1px solid rgba(255,49,49,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #ccc; transition: all 0.25s;
}
.social-link:hover { border-color: #ff3131; color: #fff; background: rgba(255,49,49,0.25); box-shadow: 0 0 14px rgba(255,49,49,0.35); }
.footer-links h4 { font-size: 0.8rem; font-weight: 800; color: #ff6b6b; margin-bottom: 18px; letter-spacing: 1.2px; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.86rem; color: #b0b0b0; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-newsletter h4 { font-size: 0.8rem; font-weight: 800; color: #ff6b6b; margin-bottom: 10px; letter-spacing: 1.2px; text-transform: uppercase; }
.footer-newsletter > p { font-size: 0.84rem; color: #b0b0b0; margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 9px 13px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,49,49,0.25); border-radius: 8px;
  color: #fff; font-size: 0.84rem; outline: none; transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: #777; }
.newsletter-form input:focus { border-color: #ff3131; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,49,49,0.15);
  font-size: 0.83rem; color: #888;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: #888; transition: color 0.2s; }
.footer-legal a:hover { color: #ff6b6b; }

/* ===== ABOUT PAGE ===== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-image { border-radius: var(--r-xl); overflow: hidden; position: relative; aspect-ratio: 5/4; border: 1px solid rgba(255,49,49,0.15); }
.story-image-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex; align-items: center; justify-content: center; font-size: 7rem;
}
.story-image::after { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0.05; }
.story-content h2 { margin-bottom: 18px; }
.story-content p  { color: var(--text-3); line-height: 1.88; margin-bottom: 14px; font-size: 0.95rem; }
.story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.highlight-item {
  padding: 20px; background: var(--surface);
  border: 1px solid rgba(255,49,49,0.15); border-radius: var(--r); text-align: center; transition: border-color 0.2s;
}
.highlight-item:hover { border-color: rgba(255,49,49,0.3); }
.highlight-item h3 { font-size: 2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.highlight-item p   { font-size: 0.78rem; color: var(--text-3); margin-top: 4px; }

.value-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
  box-shadow: 0 2px 12px rgba(5,10,48,0.06); transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(255,49,49,0.25); box-shadow: 0 20px 44px rgba(5,10,48,0.09); }
.value-icon { font-size: 2.1rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.85rem; color: var(--text-3); line-height: 1.68; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 2px 12px rgba(5,10,48,0.06); transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(5,10,48,0.1); border-color: rgba(255,49,49,0.25); }
.team-photo { height: 210px; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; }
.team-info { padding: 22px 24px; }
.team-info h3   { font-size: 1rem; margin-bottom: 3px; }
.team-info .role{ font-size: 0.82rem; color: var(--primary-l); margin-bottom: 10px; font-weight: 600; }
.team-info p    { font-size: 0.83rem; color: var(--text-3); line-height: 1.65; }

.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--navy-l), transparent); opacity: 0.4;
}
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 60px; position: relative; }
.timeline-item::after {
  content: ''; position: absolute; left: 50%; top: 24px; transform: translate(-50%,-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--bg);
  box-shadow: 0 0 22px rgba(255,49,49,0.7); z-index: 1;
}
.timeline-item:nth-child(odd) .tl-content  { grid-column: 1; text-align: right; }
.timeline-item:nth-child(even) .tl-content { grid-column: 2; }
.timeline-item:nth-child(odd) .tl-year     { grid-column: 2; }
.timeline-item:nth-child(even) .tl-year    { grid-column: 1; text-align: right; }
.tl-content h3 { font-size: 1.02rem; margin-bottom: 8px; }
.tl-content p  { font-size: 0.865rem; color: var(--text-3); line-height: 1.65; }
.tl-year { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--text-4); align-self: center; letter-spacing: -0.03em; }

/* ===== SERVICES PAGE ===== */
.services-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-full-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  box-shadow: 0 2px 12px rgba(5,10,48,0.06); transition: all 0.3s; display: flex; flex-direction: column;
}
.service-full-card:hover { transform: translateY(-4px); border-color: rgba(255,49,49,0.3); box-shadow: 0 20px 60px rgba(5,10,48,0.1); }
.service-full-card h3   { font-size: 1.1rem; margin: 18px 0 11px; }
.service-full-card > p  { font-size: 0.88rem; color: var(--text-3); line-height: 1.75; flex: 1; }
.service-features { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; }
.service-feature  { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-2); }
.feature-dot      { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step { text-align: center; }
.process-step-num {
  width: 62px; height: 62px; border-radius: var(--r);
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; color: white;
  margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(255,49,49,0.4);
}
.process-step h3 { font-size: 0.98rem; margin-bottom: 10px; }
.process-step p  { font-size: 0.85rem; color: var(--text-3); line-height: 1.68; }

.tech-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tech-tag {
  padding: 9px 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-2); transition: all 0.2s;
}
.tech-tag:hover { border-color: var(--primary); color: var(--primary-l); background: rgba(255,49,49,0.07); box-shadow: 0 0 12px rgba(255,49,49,0.2); }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px 34px; position: relative;
  box-shadow: 0 2px 12px rgba(5,10,48,0.06); transition: all 0.3s;
}
.pricing-card:hover { border-color: rgba(255,49,49,0.25); box-shadow: 0 20px 50px rgba(5,10,48,0.1); }
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(255,49,49,0.06), rgba(5,10,48,0.04));
  border-color: rgba(255,49,49,0.35); transform: scale(1.03);
}
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: white;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 16px; border-radius: 99px; white-space: nowrap; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(255,49,49,0.45);
}
.pricing-badge {
  display: inline-block; padding: 4px 12px;
  background: rgba(255,49,49,0.12); border: 1px solid rgba(255,49,49,0.22);
  border-radius: 99px; font-size: 0.75rem; font-weight: 700; color: var(--primary-l); margin-bottom: 14px;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-price   { margin: 18px 0; }
.pricing-price .amount {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800; letter-spacing: -0.05em;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-price .period { font-size: 0.88rem; color: var(--text-3); margin-left: 4px; }
.pricing-desc { font-size: 0.86rem; color: var(--text-3); line-height: 1.65; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,49,49,0.1); }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-feature  { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--text-2); }
.check-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; font-weight: 700; }

.faq-list  { display: flex; flex-direction: column; gap: 10px; }
.faq-item  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: 0 1px 6px rgba(5,10,48,0.05); transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(255,49,49,0.28); }
.faq-question  { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; cursor: pointer; font-weight: 600; font-size: 0.94rem; transition: color 0.2s; }
.faq-question:hover { color: var(--primary-l); }
.faq-icon { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--border-m); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--text-3); transition: all 0.3s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); color: white; transform: rotate(45deg); box-shadow: 0 0 12px rgba(255,49,49,0.45); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; font-size: 0.88rem; color: var(--text-3); line-height: 1.78; }
.faq-answer.open { max-height: 300px; padding: 0 22px 20px; }

/* ===== BLOG PAGE ===== */
.featured-post {
  display: grid; grid-template-columns: 1.15fr 1fr;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 2px 16px rgba(5,10,48,0.07); transition: border-color 0.3s;
}
.featured-post:hover { border-color: rgba(255,49,49,0.28); }
.featured-post-image { min-height: 380px; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.featured-post-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.post-category { display: inline-block; padding: 4px 12px; border-radius: 99px; font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.featured-post-content h2 { font-size: 1.65rem; line-height: 1.32; margin-bottom: 14px; }
.post-meta { display: flex; align-items: center; gap: 16px; font-size: 0.79rem; color: var(--text-3); margin-bottom: 14px; }
.featured-post-content > p { font-size: 0.9rem; color: var(--text-3); line-height: 1.8; margin-bottom: 24px; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 2px 12px rgba(5,10,48,0.06); transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,49,49,0.28); box-shadow: 0 20px 44px rgba(5,10,48,0.1); }
.blog-card-image   { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.blog-card-content { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-content h3   { font-size: 0.98rem; line-height: 1.42; margin-bottom: 9px; }
.blog-card-content > p  { font-size: 0.855rem; color: var(--text-3); line-height: 1.68; flex: 1; }
.blog-card-content .post-meta { margin-top: 14px; margin-bottom: 0; }

.newsletter-section { background: var(--bg-2); border-top: 1px solid rgba(255,49,49,0.12); padding: 88px 0; }
.newsletter-inner   { max-width: 540px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: clamp(1.8rem,3.5vw,2.4rem); margin-bottom: 12px; }
.newsletter-inner p  { color: var(--text-3); margin-bottom: 28px; line-height: 1.72; }
.newsletter-form-lg  { display: flex; gap: 10px; }
.newsletter-form-lg input {
  flex: 1; padding: 14px 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 0.94rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-form-lg input::placeholder { color: var(--text-4); }
.newsletter-form-lg input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,49,49,0.14); }

/* ===== CONTACT PAGE ===== */
.contact-layout     { display: grid; grid-template-columns: 1fr 1.55fr; gap: 60px; align-items: start; }
.contact-info h2    { font-size: 1.65rem; margin-bottom: 12px; }
.contact-info > p   { font-size: 0.9rem; color: var(--text-3); line-height: 1.82; margin-bottom: 32px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-info-card  {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: 0 1px 6px rgba(5,10,48,0.05); transition: border-color 0.2s;
}
.contact-info-card:hover { border-color: rgba(255,49,49,0.28); }
.contact-info-icon  { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-card h4 { font-size: 0.84rem; font-weight: 600; margin-bottom: 2px; }
.contact-info-card p  { font-size: 0.8rem; color: var(--text-3); }
.contact-form-card  {
  background: var(--surface); border: 1px solid rgba(255,49,49,0.15);
  border-radius: var(--r-xl); padding: 44px;
  box-shadow: 0 4px 24px rgba(5,10,48,0.08);
}
.contact-form-card h3 { font-size: 1.3rem; margin-bottom: 28px; }
.form-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group  { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text-2); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px; background: var(--bg-3);
  border: 1px solid var(--border); border-radius: 9px;
  color: var(--text); font-size: 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,49,49,0.14); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237b8db8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; padding: 14px 18px;
  background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3);
  border-radius: 9px; color: var(--emerald); font-size: 0.875rem; font-weight: 500;
  margin-bottom: 16px; text-align: center;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--grad);
  box-shadow: 0 0 8px rgba(255,49,49,0.6);
  z-index: 9999; pointer-events: none; transition: width 0.08s linear;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-full-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .work-card:first-child { grid-row: span 1; }
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-layout { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-image { min-height: 260px; }
  .featured-post-content { padding: 32px; }
  .timeline::before { left: 22px; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 56px; }
  .timeline-item::after { left: 22px; }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content { grid-column: 1; text-align: left; }
  .timeline-item:nth-child(odd) .tl-year,
  .timeline-item:nth-child(even) .tl-year    { grid-column: 1; text-align: left; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .cta-inner { padding: 52px 28px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .services-full-grid, .team-grid, .testimonial-grid, .pricing-grid, .blog-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .story-highlights { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .contact-form-card { padding: 28px 22px; }
  .newsletter-form-lg { flex-direction: column; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding-top: 28px; margin-top: 36px; }
  .hero-divider { display: none; }
  .nav-sep { display: none; }
  .nav-cta-sep { display: none; }
  .nav-links {
    display: none; position: fixed;
    top: calc(var(--nav-h) + 3px); left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(5,10,48,0.1);
    box-shadow: 0 8px 32px rgba(5,10,48,0.1);
    padding: 12px 16px 20px; flex-direction: column; align-items: stretch; gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 12px 16px; border-radius: 8px; font-size: 0.92rem;
    border-bottom: none;
  }
  .nav-link::after { display: none; }
  .nav-link.active { background: rgba(255,49,49,0.08); color: var(--primary); }
  .nav-link:hover { background: var(--bg-2); color: var(--text); }
  .hamburger { display: flex; }
  .nav-cta .btn:not(.always-show) { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .values-grid { grid-template-columns: 1fr; }
  .story-highlights { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== PRACTICE TILES ===== */
.practice-tile {
  border-radius: 22px; padding: 32px 28px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s, border-color 0.32s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.06) inset;
  cursor: pointer; height: 100%; position: relative; overflow: hidden;
}
.practice-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.practice-tile:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.1) inset;
  border-color: rgba(255,255,255,0.18);
}
.pt-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: #fff; letter-spacing: 0.03em;
  flex-shrink: 0; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.pt-body { flex: 1; }
.pt-body h3 { font-size: 1.08rem; font-weight: 800; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.pt-body p  { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.7; margin: 0; }
.pt-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pt-tags span {
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1); border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 11px; letter-spacing: 0.02em;
}
.pt-arrow { font-size: 1.2rem; color: rgba(255,255,255,0.4); align-self: flex-end; transition: color 0.2s, transform 0.2s; }
.practice-tile:hover .pt-arrow { color: #fff; transform: translateX(5px); }
@media (max-width: 960px) {
  .practice-tile-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  .practice-tile-grid { grid-template-columns: 1fr !important; }
}

/* ===== PRACTICES SHOWCASE SLIDER ===== */
.prac-showcase { padding: calc(var(--nav-h) + 3px + 28px) 0 0; }
.prac-top-container { padding-bottom: 16px; }
.prac-top-inner { display:flex; justify-content:space-between; align-items:flex-end; gap:32px; }
.prac-top-sub { color:var(--text-3); font-size:0.95rem; max-width:560px; margin-top:12px; line-height:1.72; }
.prac-nav-btns { display:flex; align-items:center; gap:16px; flex-shrink:0; }
.prac-arrow {
  width:46px; height:46px; border-radius:50%; cursor:pointer;
  border:1.5px solid var(--border-m); background:var(--surface);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-2); transition:all 0.2s; box-shadow:0 2px 8px rgba(5,10,48,0.06);
}
.prac-arrow:hover { border-color:var(--primary); color:var(--primary); background:rgba(255,49,49,0.05); }
.prac-counter {
  font-family:'Plus Jakarta Sans',sans-serif; font-size:1.05rem; font-weight:800;
  color:var(--text); letter-spacing:-0.01em; min-width:64px; text-align:center;
}
.prac-sep { color:var(--text-4); margin:0 3px; font-weight:400; }
.prac-slider-wrap {
  border-radius:28px; overflow:hidden;
  box-shadow:0 48px 140px rgba(5,10,48,0.22),0 8px 30px rgba(5,10,48,0.12);
  position:relative;
}
.prac-track {
  display:flex; transition:transform 0.65s cubic-bezier(0.77,0,0.175,1); will-change:transform;
}
.prac-slide {
  min-width:100%; height:540px; position:relative; overflow:hidden;
  background:linear-gradient(150deg,var(--sc2) 0%,var(--sc1) 100%);
}
.prac-bg-orb {
  position:absolute; border-radius:50%; pointer-events:none;
  background:rgba(255,255,255,0.04);
}
.prac-bg-orb-1 { width:700px; height:700px; top:-250px; right:-120px; }
.prac-bg-orb-2 { width:320px; height:320px; bottom:-120px; left:8%; background:rgba(255,255,255,0.03); }
.prac-slide-num {
  position:absolute; top:50%; left:42%; transform:translateY(-50%);
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:clamp(100px,15vw,210px); font-weight:900;
  color:rgba(255,255,255,0.04); letter-spacing:-0.06em;
  pointer-events:none; user-select:none; line-height:1;
}
.prac-slide-inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1fr 1fr; gap:40px;
  align-items:center; height:100%; padding-top:48px; padding-bottom:48px;
}
.prac-content { display:flex; flex-direction:column; gap:20px; }
.prac-eyebrow {
  display:flex; align-items:center; gap:10px;
  font-size:0.78rem; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:rgba(255,255,255,0.65);
}
.prac-dot-pulse {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,0.8);
  animation:prac-pulse 2s ease-in-out infinite;
}
@keyframes prac-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.45; transform:scale(0.7); }
}
.prac-h3 {
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:clamp(1.8rem,3.2vw,2.75rem); font-weight:900;
  color:#fff; line-height:1.15; letter-spacing:-0.03em; margin:0;
}
.prac-p {
  font-size:0.895rem; color:rgba(255,255,255,0.72); line-height:1.84; margin:0; max-width:520px;
}
.prac-chips { display:flex; flex-wrap:wrap; gap:8px; }
.prac-chips span {
  padding:5px 13px; border-radius:99px;
  background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.2);
  color:rgba(255,255,255,0.88); font-size:0.75rem; font-weight:600;
  backdrop-filter:blur(6px);
}
.prac-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; border-radius:10px;
  background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.28);
  color:#fff; font-size:0.875rem; font-weight:700;
  text-decoration:none; transition:all 0.22s; align-self:flex-start;
  backdrop-filter:blur(8px);
}
.prac-btn:hover { background:rgba(255,255,255,0.26); border-color:rgba(255,255,255,0.45); transform:translateX(4px); }
.prac-btn svg { transition:transform 0.22s; }
.prac-btn:hover svg { transform:translateX(3px); }
.prac-visual {
  position:relative; height:380px;
  display:flex; align-items:center; justify-content:center;
}
.prac-ring {
  position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,0.12);
}
.prac-ring-outer { width:310px; height:310px; border-style:dashed; animation:prac-spin 22s linear infinite; }
.prac-ring-mid  { width:200px; height:200px; animation:prac-spin-r 15s linear infinite; }
@keyframes prac-spin  { to { transform:rotate(360deg); } }
@keyframes prac-spin-r{ to { transform:rotate(-360deg); } }
.prac-icon-badge {
  width:92px; height:92px; border-radius:22px;
  background:rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.32);
  backdrop-filter:blur(14px);
  display:flex; align-items:center; justify-content:center;
  font-family:'Plus Jakarta Sans',sans-serif; font-size:0.92rem; font-weight:900;
  color:#fff; letter-spacing:0.04em;
  box-shadow:0 10px 40px rgba(0,0,0,0.22); position:relative; z-index:2;
}
.prac-node-cluster { position:absolute; inset:0; pointer-events:none; }
.pn {
  position:absolute; border-radius:50%;
  background:rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.28);
  animation:prac-float 4s ease-in-out infinite;
}
.pn.diamond { border-radius:4px; transform:rotate(45deg); animation:prac-float-d 4s ease-in-out infinite; }
.pn.rect,.pn.rect-sq { border-radius:5px; }
.pn.hex { clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); border:none; background:rgba(255,255,255,0.22); }
.pn.bar { border-radius:3px; }
.pn.graph-n { border-radius:50%; background:rgba(255,255,255,0.25); }
@keyframes prac-float {
  0%,100% { transform:translateY(0); opacity:0.55; }
  50% { transform:translateY(-11px); opacity:1; }
}
@keyframes prac-float-d {
  0%,100% { transform:rotate(45deg) translateY(0); opacity:0.55; }
  50% { transform:rotate(45deg) translateY(-9px); opacity:1; }
}
.prac-bottom-bar {
  position:absolute; bottom:0; left:0; right:0; z-index:10;
  background:rgba(5,10,30,0.72); backdrop-filter:blur(14px);
  padding:16px 36px; display:flex; align-items:center; gap:28px;
}
.prac-dots { display:flex; gap:8px; }
.prac-dot {
  width:8px; height:8px; border-radius:99px;
  background:rgba(255,255,255,0.28); border:none; cursor:pointer;
  transition:all 0.35s; padding:0;
}
.prac-dot.active { width:30px; background:#fff; }
.prac-progress-track {
  flex:1; height:2px; background:rgba(255,255,255,0.14); border-radius:99px; overflow:hidden;
}
.prac-progress-fill {
  height:100%; background:rgba(255,255,255,0.72); border-radius:99px;
  transition:width 0.65s cubic-bezier(0.77,0,0.175,1); width:16.67%;
}
@media (max-width:960px) {
  .prac-top-inner { flex-direction:column; align-items:flex-start; gap:24px; }
  .prac-slide { height:auto; min-height:560px; }
  .prac-slide-inner { grid-template-columns:1fr; }
  .prac-visual { display:none; }
  .prac-slide-num { font-size:80px; left:auto; right:20px; }
}
@media (max-width:640px) {
  .prac-showcase { padding:64px 0 0; }
  .prac-h3 { font-size:1.75rem; }
  .prac-bottom-bar { padding:14px 20px; gap:16px; }
  .prac-slide { min-height:520px; }
  .prac-slide-inner { padding:36px 0; }
}

/* ===== PRACTICE PAGE — CONSULT CARD UNIQUE COLOR TILES ===== */
.consult-card-icon {
  width: 42px !important; height: 42px !important;
  border-radius: 11px !important; font-size: 1.15rem !important;
  box-shadow: 0 3px 10px rgba(5,10,48,0.15) !important;
}
.consult-grid .consult-card:nth-child(1) .consult-card-icon { background: linear-gradient(135deg,#0f62fe,#002d9c) !important; }
.consult-grid .consult-card:nth-child(2) .consult-card-icon { background: linear-gradient(135deg,#059669,#064e3b) !important; }
.consult-grid .consult-card:nth-child(3) .consult-card-icon { background: linear-gradient(135deg,#7c3aed,#4c1d95) !important; }
.consult-grid .consult-card:nth-child(4) .consult-card-icon { background: linear-gradient(135deg,#d97706,#92400e) !important; }
.consult-grid .consult-card:nth-child(5) .consult-card-icon { background: linear-gradient(135deg,#e11d48,#881337) !important; }
.consult-grid .consult-card:nth-child(6) .consult-card-icon { background: linear-gradient(135deg,#0891b2,#164e63) !important; }
.consult-grid .consult-card:nth-child(7) .consult-card-icon { background: linear-gradient(135deg,#ea580c,#7c2d12) !important; }
