/* ================================================================
   JR TAX AI – Modern Design System 2025
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #07090f;
  color: #e2e8f0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── TOKENS ─────────────────────────────── */
:root {
  --gold: #10b981;
  /* Primary Green */
  --gold-light: #34d399;
  /* Light Green */
  --gold-dark: #059669;
  /* Dark Green */
  --cyan: #3b82f6;
  /* Accent Blue */
  --navy: #0f172a;
  /* Deep Blue base */
  --navy-2: #1e293b;
  --navy-3: #334155;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-h: rgba(16, 185, 129, 0.35);
  /* Green hover border */
  --text: #e2e8f0;
  --text-mid: #94a3b8;
  --text-dim: #4a5568;
  --r: 20px;
  --rl: 28px;
  --shadow-gold: 0 0 40px rgba(16, 185, 129, 0.15);
  /* Green shadow */
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Poppins', sans-serif;
}

/* ── UTILITIES ─────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.tag-dark {
  background: rgba(16, 185, 129, 0.15);
}

.section-head {
  text-align: center;
  margin-bottom: 72px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.white-h2 {
  color: #fff;
}

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: #07090f;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.32);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 20px;
  font-size: 13px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-xl {
  padding: 20px 42px;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── CURSOR GLOW ─────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ── LOADER ─────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.loader-logo span {
  color: var(--gold);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 3px;
  animation: loaderAnim 1.6s ease forwards;
}

@keyframes loaderAnim {
  0% {
    width: 0%;
  }

  60% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.04em;
}

.logo-name span {
  color: var(--gold);
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.text-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.ai-text {
  background: linear-gradient(135deg, var(--gold-light), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.loader-brand-logo {
  font-size: 56px;
}

.footer-brand-logo {
  font-size: 32px;
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.nav-phone {
  padding: 9px 18px;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ─────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, rgba(7, 9, 15, 0.5) 60%, transparent 100%),
    linear-gradient(to bottom, transparent 60%, var(--navy) 100%),
    url('hero-blue-green.png') center / cover no-repeat;
  animation: bgZoom 30s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  0% {
    transform: scale(1.0);
  }

  100% {
    transform: scale(1.05);
  }
}

.hero-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 28px;
}

/* Hero left */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px #22c55e;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  overflow: hidden;
}

.h1-line {
  display: block;
  color: #fff;
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(60px);
}

.h1-line:nth-child(1) {
  animation-delay: 0.4s;
}

.h1-line:nth-child(2) {
  animation-delay: 0.6s;
}

.h1-line:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-desc {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeIn 1s ease 1.05s forwards;
  opacity: 0;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  animation: fadeIn 1s ease 1.15s forwards;
  opacity: 0;
}

.hero-microcopy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
  animation: fadeIn 1s ease 1.2s forwards;
  opacity: 0;
  letter-spacing: 0.01em;
}

.hero-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 1.25s forwards;
  opacity: 0;
}

.htb-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}

.htb-pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(16, 185, 129, 0.08);
}

.htb-check {
  color: var(--gold);
  font-size: 11px;
}

/* .hero-trust is now declared above */
.trust-banner {
  background: rgba(16, 185, 129, 0.05);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.tb-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.tb-inner span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
}

.trust-avatars {
  display: flex;
}

.ta {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg, #f97316);
  border: 2.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-right: -10px;
}

.trust-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 2px;
}

.trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.trust-label strong {
  color: #fff;
}

/* Hero right – floating cards */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-wrap {
  position: relative;
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcard {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* Main card */
.hcard-main {
  width: 320px;
  position: relative;
  border-color: rgba(16, 185, 129, 0.2);
  animation: fadeIn 1s ease 1.3s forwards;
  opacity: 0;
}

.hcard-main-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hcard-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.hcard-main-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hcard-main-sub {
  font-size: 13px;
  color: var(--text-mid);
}

.hcard-status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 2s ease infinite;
}

.hcard-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hcard-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.hcard-service-item.active {
  color: #fff;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hcs-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
}

.hcard-service-item.active .hcs-dot {
  background: var(--gold);
}

.hcs-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
}

.hcard-service-item.active .hcs-badge {
  color: var(--gold);
}

.hcard-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 11px;
  border-radius: 12px;
  transition: all var(--transition);
}

.hcard-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* Compliance row inside dashboard card */
.hcard-compliance-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 16px;
  padding: 10px 12px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 10px;
}

.hcard-compliance-row span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  white-space: nowrap;
}

/* Savings card */
.hcard-savings {
  width: 200px;
  top: 16px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeIn 1s ease 1.5s forwards;
  opacity: 0;
}

.hcard-icon {
  font-size: 28px;
}

.hcard-label {
  font-size: 11px;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.hcard-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.hcard-trend {
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  margin-top: 2px;
}

/* Rating card */
.hcard-rating {
  width: 130px;
  bottom: 20px;
  left: -10px;
  text-align: center;
  animation: fadeIn 1s ease 1.7s forwards;
  opacity: 0;
}

.hcard-rating-stars {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 4px;
}

.hcard-rating-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hcard-rating-label {
  font-size: 11px;
  color: var(--text-mid);
  margin-top: 4px;
}

/* Float animation */
.float-anim {
  animation: floatCard 4s ease-in-out infinite, fadeIn 1s ease 1.5s forwards !important;
  opacity: 0;
}

.float-delay {
  animation: floatCard 4s ease-in-out 1s infinite, fadeIn 1s ease 1.7s forwards !important;
  opacity: 0;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── STATS BAR ─────────────────────────── */
.stats-bar {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 0;
}

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

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}

.stat-lbl {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 4px;
  font-weight: 500;
  display: block;
}

.stat-sep {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── SERVICES / BENTO ──────────────────── */
.services-section {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

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

.svc-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, -20%), rgba(255, 255, 255, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card > * {
  position: relative;
  z-index: 1;
}

.svc-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  border-top-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(16, 185, 129, 0.15);
  transform: translateY(-6px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Highlight card – ITR Filing */
.svc-card--highlight {
  border-color: rgba(16, 185, 129, 0.3);
  border-top-color: rgba(16, 185, 129, 0.5);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.svc-card--highlight:hover {
  border-color: rgba(16, 185, 129, 0.6);
  border-top-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 12px 48px rgba(16, 185, 129, 0.2), 0 0 0 1px rgba(16, 185, 129, 0.25);
}

.svc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.35);
}

.svc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}

.svc-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.svc-tags span {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.svc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.svc-card:hover .svc-cta {
  color: #fff;
  gap: 8px;
}



/* ── ABOUT ─────────────────────────────── */
.about-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Orbit visual */
.about-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.15);
  animation: ringRotate 20s linear infinite;
}

.about-glow-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
  transform: translateX(-50%);
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

.about-center-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  padding: 36px 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.1);
}

.acc-symbol {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.acc-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 4px;
}

.acc-sub {
  font-size: 13px;
  color: var(--text-mid);
}

.about-orbit {
  position: absolute;
  inset: 0;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 1px;
  transform-origin: 0 0;
  transform: rotate(var(--deg));
}

.od-inner {
  position: absolute;
  right: 0;
  top: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  animation: counterRotate 20s linear infinite;
  transform-origin: 50% 50%;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.about-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 20px;
  padding: 16px 22px;
  text-align: center;
  backdrop-filter: blur(12px);
  z-index: 3;
}

.ab-r {
  right: 0;
}

.ab-l {
  left: 0;
}

.ab-top {
  top: 30px;
}

.ab-bot {
  bottom: 30px;
}

.ab-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.ab-lbl {
  font-size: 12px;
  color: var(--text-mid);
}

/* About text */
.about-text .section-tag-pill {
  display: inline-flex;
}

.about-text .section-h2 {
  text-align: left;
}

.about-para {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.af-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--gold);
  font-style: normal;
}

/* ── PROCESS ───────────────────────────── */
.process-section {
  background: var(--navy-2);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 60px;
}

.process-line {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3) 20%, rgba(16, 185, 129, 0.3) 80%, transparent);
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.process-step:hover {
  border-color: var(--card-border-h);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.ps-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--navy-2);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.ps-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PRICING ───────────────────────────── */
.pricing-section {
  background: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--rl);
  padding: 44px 36px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--card-border-h);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

.pricing-card.popular {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(16, 185, 129, 0.06) 100%);
  border-color: rgba(16, 185, 129, 0.25);
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
}

.pc-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.pc-header {
  margin-bottom: 28px;
  text-align: center;
}

.pc-header h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.pc-header p {
  font-size: 15px;
  color: var(--text-mid);
}

.pc-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 30px;
}

.pc-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-mid);
}

.pc-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pc-period {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}

.pc-features {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.pc-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.pc-btn {
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-mid);
}

.pricing-note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all var(--transition);
}

.pricing-note a:hover {
  text-decoration-color: var(--gold);
}

/* ── GST PRICING EXTENSION ────────── */
.gst-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.gst-pricing-grid .pc-amount {
  font-size: 32px;
}

.gst-pricing-grid .pc-header h3 {
  font-size: 18px;
}

.pc-old-price {
  text-decoration: line-through;
  color: var(--text-dim);
  font-size: 0.7em;
  margin-left: 6px;
  display: inline-block;
}

.pc-market-price {
  font-size: 12px;
  color: var(--text-mid);
  margin-top: -30px;
  margin-bottom: 30px;
  text-align: center;
}

.pricing-card.variant-green {
  background: linear-gradient(145deg, #16a34a 0%, #15803d 100%);
  border-color: #22c55e;
}

.pricing-card.variant-green .pc-header h3,
.pricing-card.variant-green .pc-header p,
.pricing-card.variant-green .pc-price .pc-currency,
.pricing-card.variant-green .pc-price .pc-amount,
.pricing-card.variant-green .pc-price .pc-period,
.pricing-card.variant-green .pc-features li,
.pricing-card.variant-green .pc-note {
  color: #fff;
}

.pricing-card.variant-green .pc-check {
  color: #fff;
}

.pricing-card.variant-green .btn-primary {
  background: #fff;
  color: #15803d;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.pc-note {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: center;
}

.pc-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.pc-actions .btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 14px;
  justify-content: center;
}

.btn-wa {
  background: #25D366;
  color: #fff;
}

.btn-wa:hover {
  background: #22c35e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1200px) {
  .gst-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 600px) {
  .gst-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ── REVIEWS ───────────────────────────── */
.reviews-section {
  background: var(--navy);
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  backdrop-filter: blur(8px);
}

.gi {
  width: 22px;
  height: 22px;
}

.reviews-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-top: 20px;
}

.reviews-marquee {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.rc {
  width: 320px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 28px;
  transition: all var(--transition);
}

.rc:hover {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.rc-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rc-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.rc-stars {
  font-size: 13px;
  color: var(--gold);
}

.rc p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.rc-date {
  font-size: 13px;
  color: var(--text-dim);
}

/* ── CONTACT ───────────────────────────── */
.contact-section {
  background: var(--navy-2);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.contact-left .section-h2 {
  text-align: left;
  margin-bottom: 16px;
}

.contact-left .section-tag-pill {
  display: inline-flex;
}

.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  font-size: 15px;
  color: var(--text-mid);
  transition: all var(--transition);
  line-height: 1.6;
}

.cinfo-item:hover {
  border-color: var(--card-border-h);
  color: var(--text);
}

.cinfo-item strong {
  color: #fff;
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
}

.cinfo-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact form */
.contact-right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rl);
  padding: 44px;
  backdrop-filter: blur(16px);
}

.cform-header {
  margin-bottom: 32px;
}

.cform-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cform-header p {
  font-size: 15px;
  color: var(--text-mid);
}

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

.cform-group {
  position: relative;
  margin-bottom: 18px;
}

.cform-group input,
.cform-group select,
.cform-group textarea {
  width: 100%;
  padding: 20px 18px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
  transition: all var(--transition);
  appearance: none;
}

.cform-group select {
  color: var(--text-mid);
}

.cform-group select option {
  background: var(--navy-3);
  color: #fff;
}

.cform-group input:focus,
.cform-group select:focus,
.cform-group textarea:focus {
  border-color: var(--gold);
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.cform-group label {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 14px;
  color: var(--text-mid);
  transition: all var(--transition);
  pointer-events: none;
}

.cform-group input:not(:placeholder-shown)~label,
.cform-group input:focus~label,
.cform-group textarea:not(:placeholder-shown)~label,
.cform-group textarea:focus~label,
.cform-group select~label {
  top: 6px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.cform-group textarea {
  padding-top: 24px;
  resize: vertical;
}

.cform-success {
  text-align: center;
  padding: 60px 20px;
}

.cfs-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 20px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cform-success h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.cform-success p {
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* Map */
.map-container {
  margin-top: 0;
}

.map-inner {
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.map-inner iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(30%) invert(5%);
}

/* ── FOOTER ────────────────────────────── */
.footer {
  background: #040507;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.fsoc-btn {
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.fsoc-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--gold);
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bot-inner p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ── FLOATING ACTIONS ──────────────────── */
.fab-wa {
  position: fixed;
  bottom: 32px;
  right: 90px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  color: #fff;
}

.fab-wa svg {
  width: 28px;
  height: 28px;
}

.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ── SCROLL REVEAL ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc,
  .hero-ctas {
    max-width: 100%;
  }

  .hero-ctas,
  .hero-trust,
  .hero-microcopy,
  .hero-trust-badges {
    justify-content: center;
  }

  .hero-microcopy {
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .about-wrap {
    grid-template-columns: 1fr;
  }

  .about-visual {
    display: none;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .cform-row {
    grid-template-columns: 1fr;
  }
}

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

  .nav-links,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(7, 9, 15, 0.98);
    backdrop-filter: blur(24px);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }

  .stats-inner {
    gap: 32px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .about-feats {
    grid-template-columns: 1fr;
  }

  .contact-right {
    padding: 28px 22px;
  }

  .hero-h1 {
    font-size: 40px;
  }

  .fab-wa {
    right: 90px;
    bottom: 24px;
  }

  .scroll-top {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .btn-xl {
    padding: 16px 28px;
    font-size: 15px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bot-inner {
    flex-direction: column;
    text-align: center;
  }

  .stats-inner {
    flex-direction: column;
  }

  .stat-sep {
    width: 60px;
    height: 1px;
  }
}