/* =============================================
   LINK BUILDING AGENCY — COMPLETE STYLES
   ============================================= */

:root {
  --bg: #08080f;
  --bg-alt: #0d0d18;
  --bg-card: #111120;
  --bg-card2: #0f0f1c;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(139,92,246,0.5);

  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #10b981;
  --green-bright: #00e896;
  --orange: #f97316;
  --pink: #ec4899;
  --yellow: #f59e0b;
  --red: #ef4444;
  --teal: #14b8a6;

  --grad: linear-gradient(135deg, #7c3aed 0%, #22d3ee 100%);
  --grad-green: linear-gradient(135deg, #10b981, #22d3ee);
  --grad-warm: linear-gradient(135deg, #7c3aed, #ec4899);

  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --white: #ffffff;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-purple: 0 8px 32px rgba(124,58,237,0.25);
  --shadow-green: 0 8px 32px rgba(0,232,150,0.2);

  --nav-h: 72px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: #04040a; }

strong { color: inherit; font-weight: 600; }

/* ---- GRADIENT TEXT ---- */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SECTION HEADER ---- */
.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.sec-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.sec-head p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.sec-head.light h2 { color: var(--white); }
.sec-head.light p { color: rgba(255,255,255,0.5); }

.sec-tag {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--purple-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-dark .sec-tag {
  background: rgba(34,211,238,0.1);
  border-color: rgba(34,211,238,0.25);
  color: var(--cyan);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.4); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

.btn-nav {
  background: rgba(124,58,237,0.2);
  color: var(--purple-light);
  border: 1px solid rgba(124,58,237,0.35);
  padding: 9px 20px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--purple); color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--purple); color: var(--purple-light); }

.btn-xl { padding: 17px 36px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8,8,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 19px;
  font-weight: 900;
  text-decoration: none;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo span { color: var(--purple-light); }
.logo em { font-style: normal; color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* ---- NAV DROPDOWNS ---- */
.nav-link-plain {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link-plain:hover { color: var(--white); }
.navbar.scrolled .nav-link-plain { color: var(--text); }
.navbar.scrolled .nav-link-plain:hover { color: var(--purple); }

.nav-dropdown { position: relative; }

.nav-drop-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: color 0.2s;
}
.nav-drop-btn:hover { color: var(--white); }
.navbar.scrolled .nav-drop-btn { color: var(--text); }
.navbar.scrolled .nav-drop-btn:hover { color: var(--purple); }

.drop-arrow {
  font-size: 10px;
  transition: transform 0.25s;
  display: inline-block;
}
.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,13,24,0.97);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,58,237,0.15);
  min-width: 580px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.nav-drop-menu.compact { min-width: 300px; }

.nav-dropdown.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.ndm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-drop-menu.compact .ndm-inner { grid-template-columns: 1fr; }

.ndm-inner a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
  color: var(--text) !important;
}
.ndm-inner a:hover { background: rgba(124,58,237,0.12); }

.ndm-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ndm-icon.purple { background: rgba(124,58,237,0.15); }
.ndm-icon.blue   { background: rgba(59,130,246,0.15); }
.ndm-icon.orange { background: rgba(249,115,22,0.15); }
.ndm-icon.teal   { background: rgba(20,184,166,0.15); }
.ndm-icon.green  { background: rgba(16,185,129,0.15); }
.ndm-icon.pink   { background: rgba(236,72,153,0.15); }
.ndm-icon.cyan   { background: rgba(34,211,238,0.15); }
.ndm-icon.yellow { background: rgba(245,158,11,0.15); }
.ndm-icon.red    { background: rgba(239,68,68,0.15); }

.ndm-inner a span:last-child { display: flex; flex-direction: column; gap: 1px; }
.ndm-inner a strong { font-size: 13px; color: var(--white); font-weight: 600; }
.ndm-inner a em { font-style: normal; font-size: 11px; color: var(--text-dim); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, var(--hero-glow, rgba(124,58,237,0.3)) 0%, transparent 65%),
              var(--bg);
  z-index: 0;
}

.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  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: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  z-index: 0;
}

.page-hero-body {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); font-size: 11px; }
.breadcrumb .current { color: rgba(255,255,255,0.65); }

.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.page-hero p strong { color: rgba(255,255,255,0.9); }

.page-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ---- INNER PAGE CONTENT ---- */
.content-section { padding: 80px 0; }
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }

.content-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.content-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-text p strong { color: rgba(255,255,255,0.8); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-list li strong { color: rgba(255,255,255,0.8); }

.info-card-stack { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.info-card:hover { transform: translateX(6px); border-color: rgba(124,58,237,0.4); }
.info-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.info-card p  { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Features grid on inner pages */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s;
}
.feat-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.feat-icon { font-size: 28px; margin-bottom: 14px; }
.feat-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.feat-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Inner CTA banner */
.inner-cta {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(34,211,238,0.1));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  margin: 0 0 0 0;
}
.inner-cta h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.inner-cta p  { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.inner-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(26px,3.5vw,38px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.cd-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.cd-text strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.cd-text span { font-size: 14px; color: var(--text-muted); }

/* Case studies */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cs-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.cs-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); box-shadow: var(--shadow-purple); }
.cs-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.cs-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03)1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.03)1px,transparent 1px);
  background-size: 20px 20px;
}
.cs-body { padding: 22px 20px; }
.cs-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--purple-light); background: rgba(124,58,237,0.12); border-radius: 100px; padding: 3px 10px; margin-bottom: 10px; }
.cs-body h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cs-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.cs-metrics { display: flex; gap: 16px; }
.cs-metric strong { display: block; font-size: 20px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cs-metric span { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

/* About page */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; transition: all 0.3s; }
.team-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.team-avatar { width: 72px; height: 72px; background: var(--grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: var(--white); margin: 0 auto 14px; }
.team-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--text-dim); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.value-icon { font-size: 30px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Process page */
.process-full { display: flex; flex-direction: column; gap: 0; max-width: 960px; margin: 0 auto; }
.pf-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--border); }
.pf-step:last-child { border-bottom: none; }
.pf-num-big { font-size: 52px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; padding-top: 4px; }
.pf-content h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.pf-content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.pf-content p strong { color: rgba(255,255,255,0.8); }
.pf-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.pf-tag { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.25); color: var(--purple-light); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }

/* Responsive inner pages */
@media (max-width: 1024px) {
  .content-two-col { grid-template-columns: 1fr; gap: 40px; }
  .content-two-col.reverse { direction: ltr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .cs-grid { grid-template-columns: repeat(2,1fr); }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .cs-grid { grid-template-columns: 1fr; }
  .pf-step { grid-template-columns: 1fr; gap: 12px; }
  .inner-cta { padding: 36px 24px; }
  .ndm-inner { grid-template-columns: 1fr; }
  .nav-drop-menu { min-width: calc(100vw - 48px); left: 0; transform: translateX(0) !important; }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 80% at 50% -10%, rgba(124,58,237,0.3) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 80%, rgba(34,211,238,0.12) 0%, transparent 50%),
              var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-bright);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero-desc strong { color: rgba(255,255,255,0.9); }

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-metrics {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  backdrop-filter: blur(16px);
  justify-content: center;
}

.hm {
  text-align: center;
  padding: 0 32px;
}
.hm strong {
  font-size: 38px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}
.hm sup { font-size: 22px; font-weight: 700; color: var(--cyan); vertical-align: super; }
.hm span { display: block; font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.hm-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ---- TRUSTED ---- */
.trusted {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trusted-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}
.logo-item {
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.logo-item:hover { color: rgba(255,255,255,0.5); }

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

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.svc-card.revealed { opacity: 1; transform: none; }
.svc-card:hover {
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.2), var(--shadow);
  transform: translateY(-4px);
}

.svc-card.popular {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(145deg, rgba(124,58,237,0.12), var(--bg-card));
  box-shadow: var(--shadow-purple);
}

.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg { width: 22px; height: 22px; }

.svc-icon.purple { background: rgba(124,58,237,0.15); color: var(--purple-light); }
.svc-icon.green  { background: rgba(16,185,129,0.15); color: var(--green); }
.svc-icon.blue   { background: rgba(59,130,246,0.15); color: var(--blue); }
.svc-icon.orange { background: rgba(249,115,22,0.15); color: var(--orange); }
.svc-icon.teal   { background: rgba(20,184,166,0.15); color: var(--teal); }
.svc-icon.pink   { background: rgba(236,72,153,0.15); color: var(--pink); }
.svc-icon.yellow { background: rgba(245,158,11,0.15); color: var(--yellow); }
.svc-icon.red    { background: rgba(239,68,68,0.15);  color: var(--red); }

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.svc-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.svc-card ul {
  list-style: none;
  margin-bottom: 22px;
}
.svc-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.svc-card ul li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

.svc-cta {
  color: var(--purple-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.svc-cta:hover { gap: 8px; text-decoration: underline; }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 14px;
}
.about-text h3:first-child { margin-top: 0; }

.about-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-text p strong { color: rgba(255,255,255,0.85); }

.about-aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: transform 0.3s;
  opacity: 0;
  transform: translateX(20px);
}
.result-card.revealed { opacity: 1; transform: none; }
.result-card:hover { transform: translateX(6px); }
.result-card.accent {
  background: var(--grad);
  border-color: transparent;
}

.rc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.result-card.accent .rc-label { color: rgba(255,255,255,0.65); }

.rc-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.rc-sub {
  font-size: 12px;
  color: var(--text-dim);
}
.result-card.accent .rc-sub { color: rgba(255,255,255,0.6); }

.guarantee-box {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.g-icon {
  width: 32px; height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.guarantee-box strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.guarantee-box p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.why-card.revealed { opacity: 1; transform: none; }
.why-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-purple); }

.why-num {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.35;
}
.why-card:hover .why-num { opacity: 1; }

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.why-card p strong { color: rgba(255,255,255,0.8); }

/* ---- PROCESS ---- */
.process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.proc-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s ease;
}
.proc-step.revealed { opacity: 1; transform: none; }

.proc-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 56px;
  text-align: center;
  flex-shrink: 0;
  font-family: monospace;
}

.proc-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.proc-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.proc-content p strong { color: rgba(255,255,255,0.75); }

.proc-connector {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, rgba(34,211,238,0.3), rgba(34,211,238,0.05));
  margin-left: 41px;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(34,211,238,0.1));
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 48px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item { text-align: center; }
.stat-item strong {
  font-size: 40px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}
.stat-item sup { font-size: 22px; color: var(--cyan); font-weight: 800; vertical-align: super; }
.stat-item p { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- PRICING COMPARE BAR ---- */
.price-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.pc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  min-width: 160px;
  text-align: center;
  transition: all 0.3s;
}

.pc-item.highlight {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(145deg, rgba(124,58,237,0.12), var(--bg-card));
  box-shadow: var(--shadow-purple);
  transform: scale(1.04);
}

.pc-plan {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dim);
}

.pc-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.pc-price em { font-size: 14px; font-style: normal; font-weight: 500; color: var(--text-dim); }

.pc-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(16,185,129,0.1);
  border-radius: 100px;
  padding: 3px 10px;
}

.pc-arrow {
  font-size: 20px;
  color: var(--text-dim);
}

.price-ideal {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 14px;
  font-style: italic;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.price-card.revealed { opacity: 1; transform: none; }
.price-card:hover { border-color: rgba(124,58,237,0.35); }

.price-card.featured-price {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(160deg, rgba(124,58,237,0.15), var(--bg-card));
  box-shadow: var(--shadow-purple), 0 0 0 1px rgba(124,58,237,0.3);
  transform: translateY(-8px);
}
.price-card.featured-price.revealed { transform: translateY(-8px); }

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.price-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.price-amount span { font-size: 18px; font-weight: 500; color: var(--text-dim); }

.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}
.price-desc strong { color: rgba(255,255,255,0.7); }

.price-features {
  list-style: none;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li span { font-size: 12px; font-weight: 700; color: var(--green); flex-shrink: 0; }
.price-features li.muted { opacity: 0.4; }
.price-features li.muted span { color: var(--text-dim); }

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 36px;
}
.pricing-note a { color: var(--purple-light); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* ---- TESTIMONIALS ---- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.testi-card.revealed { opacity: 1; transform: none; }
.testi-card:hover { border-color: rgba(124,58,237,0.35); box-shadow: var(--shadow-purple); transform: translateY(-4px); }

.testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }

.testi-card > p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testi-card > p strong { color: rgba(255,255,255,0.7); font-style: normal; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 40px; height: 40px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: var(--white); font-weight: 700; }
.testi-author span { font-size: 12px; color: var(--text-dim); }

/* ---- VIDEO TESTIMONIALS ---- */
.vtesti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vtesti-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.vtesti-card.revealed { opacity: 1; transform: none; }
.vtesti-card:hover {
  border-color: rgba(124,58,237,0.4);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}

.vtesti-card.featured-video {
  grid-column: span 1;
  border-color: rgba(124,58,237,0.45);
  box-shadow: var(--shadow-purple);
}

/* Thumbnail */
.vtesti-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--thumb-color, #111120);
  cursor: pointer;
  overflow: hidden;
}

/* Gradient shimmer overlay */
.vtesti-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 30% 40%, rgba(124,58,237,0.25), transparent 60%),
    radial-gradient(ellipse 60% 60% at 75% 70%, rgba(34,211,238,0.15), transparent 50%);
  z-index: 0;
}

/* Grid pattern on thumbnail */
.vtesti-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}

.vt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s;
}
.vtesti-thumb:hover .vt-overlay { background: rgba(0,0,0,0.2); }

.vt-play {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  position: relative;
  z-index: 3;
}
.vt-play svg { width: 22px; height: 22px; margin-left: 3px; }

.vt-play.large {
  width: 68px;
  height: 68px;
  background: var(--grad);
  border: none;
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
}
.vt-play.large svg { width: 26px; height: 26px; }

.vtesti-thumb:hover .vt-play {
  transform: scale(1.12);
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(124,58,237,0.5);
}

.vt-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.vt-avatar {
  position: absolute;
  bottom: 10px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  z-index: 3;
  border: 2px solid rgba(255,255,255,0.2);
}

/* Card body */
.vtesti-body {
  padding: 20px 20px 22px;
}

.vtesti-body .testi-stars {
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.vtesti-body > p {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 14px;
}

.vtesti-author {
  margin-bottom: 10px;
}
.vtesti-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}
.vtesti-author span {
  font-size: 12px;
  color: var(--text-dim);
}

.vr-badge {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---- VIDEO MODAL ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.vm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.vm-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 1;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.video-modal.open .vm-box { transform: scale(1); }

.vm-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.vm-close:hover { background: rgba(255,255,255,0.25); }

.vm-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.vm-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .vtesti-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .vtesti-grid { grid-template-columns: 1fr; }
  .vtesti-card.featured-video { grid-column: span 1; }
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:has(.faq-a.open) { border-color: rgba(124,58,237,0.4); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple-light); }
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--purple-light);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-q.open::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-a p strong { color: rgba(255,255,255,0.8); }

/* ---- CTA / CONTACT ---- */
.cta-contact { position: relative; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-left .sec-tag { display: inline-block; margin-bottom: 16px; }

.cta-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta-left > p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.75;
}
.cta-left > p strong { color: rgba(255,255,255,0.8); }

.cta-list {
  list-style: none;
  margin-bottom: 40px;
}
.cta-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 7px 0;
  font-weight: 500;
}
.cta-list li strong { color: rgba(255,255,255,0.9); }

.cta-trust {
  display: flex;
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-item span { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg { margin-bottom: 16px; }

.fg label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--text-dim); }

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.fg select option { background: var(--bg); color: var(--text); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ---- PAGE AUDIT FORM ---- */
.page-audit-form {
  max-width: 760px;
  margin: 0 auto;
}

.form-success {
  text-align: center;
  padding: 56px 24px;
}
.form-success-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.form-success h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  background: #04040a;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { display: block; font-size: 20px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 280px; }
.footer-brand p strong { color: rgba(255,255,255,0.6); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--purple); border-color: var(--purple); color: var(--white); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.footer-badge span {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.footer-bottom { padding: 24px 0; }
.footer-btm-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom p strong { color: rgba(255,255,255,0.3); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--white); }

/* ---- RELATED SERVICES ---- */
.related-services { background: var(--bg-alt); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.related-card:hover {
  border-color: rgba(124,58,237,0.45);
  background: rgba(124,58,237,0.07);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
}

.related-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(124,58,237,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.related-card span {
  font-size: 12px;
  color: var(--text-dim);
}

.back-home {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 8px;
}

@media (max-width: 900px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ---- STICKY CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  background: var(--grad);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: var(--shadow-purple), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticky-cta.visible { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(124,58,237,0.5); }

/* ---- REVEAL ANIMATION ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .result-card { flex: 1; min-width: 160px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured-price { transform: none; }
  .price-card.featured-price.revealed { transform: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: rgba(8,8,15,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 17px; color: var(--white); }

  .hero h1 { letter-spacing: -1px; }
  .hero-metrics { padding: 20px; gap: 16px; }
  .hm { padding: 0 16px; }
  .hm-sep { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-btm-inner { flex-direction: column; text-align: center; }
  .process-track { padding: 0; }
  .sticky-cta { bottom: 16px; right: 16px; font-size: 13px; padding: 12px 20px; }
  .stats-inner { gap: 20px; }
  .cta-trust { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-xl { width: 100%; max-width: 340px; }
  .trusted-logos { gap: 20px 32px; }
  .about-aside { flex-direction: column; }
}
