
:root {
  --gold: #FCCF2C;
  --gold-deep: #E5B506;
  --gold-soft: rgba(252, 207, 44, 0.12);
  --blue: #354AC2;
  --blue-light: #5A6FE0;
  --blue-deep: #26379A;
  --blue-soft: rgba(53, 74, 194, 0.10);
  --black: #141A3D;
  --ink: #1A214C;
  --ink-2: #232C64;
  --ink-3: #2B3572;
  --dark-text: #12141A;
  --gray: #5D6470;
  --gray-light: #98A0AD;
  --light: #F6F7FA;
  --light-2: #EEF0F5;
  --white: #FFFFFF;
  --border: #E4E7EE;
  --border-dark: rgba(255, 255, 255, 0.09);
  --shadow-sm: 0 2px 12px rgba(16, 18, 24, 0.06);
  --shadow: 0 8px 32px rgba(16, 18, 24, 0.10);
  --shadow-lg: 0 20px 60px rgba(16, 18, 24, 0.16);
  --shadow-gold: 0 10px 36px rgba(252, 207, 44, 0.28);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --container: 1200px;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--gray); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--gray-light); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(252, 207, 44, 0.35);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section--dark .section-label { color: var(--gold); }

.accent-gold { color: var(--gold); }
.accent-blue { color: var(--blue); }

.grad-text {
  background: linear-gradient(100deg, var(--gold) 10%, #F5AE1C 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text--blue {
  background: linear-gradient(100deg, var(--blue) 10%, var(--blue-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--black); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: #FFD84D; transform: translateY(-3px); box-shadow: 0 16px 44px rgba(252, 207, 44, 0.4); }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 32px rgba(53, 74, 194, 0.32); }
.btn--blue:hover { background: var(--blue-light); transform: translateY(-3px); }
.btn--outline { border: 2px solid rgba(255, 255, 255, 0.25); color: var(--white); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn--outline-dark { border: 2px solid var(--border); color: var(--dark-text); }
.btn--outline-dark:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4.5s var(--ease) infinite;
}
@keyframes btnShine {
  0%, 60% { left: -80%; }
  85%, 100% { left: 140%; }
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(0, 0, 0, 0.98); border-bottom-color: var(--border-dark); }
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 12px 24px; font-size: 0.9rem; }

.nav-dd { position: relative; }
.nav-dd > a i { font-size: 0.65rem; margin-left: 4px; transition: transform 0.3s var(--ease); }
.nav-dd:hover > a i { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 14px;
  background: rgba(6, 8, 20, 0.98);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.nav-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav-dd-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  transition: var(--transition);
}
.nav-dd-menu a::after { display: none; }
.nav-dd-menu a i { width: 18px; text-align: center; color: var(--gold); font-size: 0.85rem; }
.nav-dd-menu a:hover { background: rgba(252, 207, 44, 0.1); color: var(--white); }
.nav-dd-menu .nav-dd-all {
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 6px;
  border-top: 1px solid var(--border-dark);
  border-radius: 0 0 9px 9px;
  color: var(--gold);
  font-weight: 700;
}
.nav-dd-menu .nav-dd-all i { color: var(--gold); }

.mobile-dd-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 4px;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-dd-toggle i { font-size: 0.7rem; transition: transform 0.3s var(--ease); }
.mobile-dd-toggle.open i { transform: rotate(180deg); }
.mobile-dd { display: none; }
.mobile-dd.open { display: block; }
.mobile-dd a { padding-left: 22px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.7); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--white); border-radius: 3px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid var(--border-dark);
  padding: 18px 24px 28px;
}
.mobile-nav.open { display: block; animation: mobileSlide 0.3s var(--ease); }
@keyframes mobileSlide { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.mobile-nav a { display: block; color: rgba(255, 255, 255, 0.85); font-weight: 600; padding: 13px 4px; border-bottom: 1px solid var(--border-dark); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

.hero {
  position: relative;
  background: radial-gradient(1100px 600px at 78% -10%, rgba(53, 74, 194, 0.35), transparent 60%),
              radial-gradient(900px 500px at 8% 110%, rgba(252, 207, 44, 0.10), transparent 55%),
              var(--black);
  color: var(--white);
  padding: 92px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%);
}
.hero .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero .orb--blue { width: 380px; height: 380px; background: rgba(53, 74, 194, 0.45); top: -100px; right: 6%; }
.hero .orb--gold { width: 300px; height: 300px; background: rgba(252, 207, 44, 0.18); bottom: -120px; left: 2%; animation-delay: -6s; }
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 26px) scale(1.08); }
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(252, 207, 44, 0.08);
  border: 1px solid rgba(252, 207, 44, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: dotPulse 1.6s ease-in-out infinite; }
@keyframes badgePulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(252, 207, 44, 0.25); } 50% { box-shadow: 0 0 0 7px rgba(252, 207, 44, 0); } }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 { margin-bottom: 22px; }
.hero h1 .typing-wrap { color: var(--gold); display: block; min-height: 1.12em; }
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.95em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blinkCursor 0.85s step-end infinite;
}
@keyframes blinkCursor { 50% { opacity: 0; } }

.hero-sub { font-size: 1.1rem; color: var(--gray-light); max-width: 540px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-trust { display: flex; align-items: center; gap: 16px; }
.avatar-stack { display: flex; }
.avatar-stack .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  margin-left: -10px;
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.av-2 { background: linear-gradient(135deg, #8a6d00, var(--gold-deep)); }
.av-3 { background: linear-gradient(135deg, #263048, #46557e); }
.av-4 { background: linear-gradient(135deg, var(--blue-deep), var(--blue)); }
.hero-trust-text { font-size: 0.88rem; color: var(--gray-light); line-height: 1.45; }
.hero-trust-text strong { color: var(--white); display: block; }
.hero-trust-text .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.82rem; }

.hero-visual { position: relative; }
.dashboard {
  position: relative;
  background: linear-gradient(160deg, rgba(38, 46, 94, 0.9), rgba(18, 23, 52, 0.96));
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}
.dashboard-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: var(--gold); }
.dash-dots span:nth-child(3) { background: #28C840; }
.dash-title { font-size: 0.8rem; font-weight: 600; color: var(--gray-light); }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #3DDC84;
  background: rgba(61, 220, 132, 0.1);
  border: 1px solid rgba(61, 220, 132, 0.35);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.live-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #3DDC84; animation: dotPulse 1.4s ease-in-out infinite; }

.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: background 0.4s;
}
.kpi-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-light); font-weight: 600; margin-bottom: 5px; }
.kpi-value { font-size: 1.06rem; font-weight: 800; color: var(--white); }
.kpi-delta { font-size: 0.7rem; font-weight: 700; margin-top: 3px; }
.kpi-delta.up { color: #3DDC84; }
.kpi-delta.down { color: #FF7B72; }
.kpi.flash-up { animation: kpiFlashUp 0.9s var(--ease); }
.kpi.flash-down { animation: kpiFlashDown 0.9s var(--ease); }
@keyframes kpiFlashUp { 0% { background: rgba(61, 220, 132, 0.18); } 100% { background: rgba(255, 255, 255, 0.035); } }
@keyframes kpiFlashDown { 0% { background: rgba(255, 123, 114, 0.16); } 100% { background: rgba(255, 255, 255, 0.035); } }

.chart-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-dark); border-radius: var(--radius); padding: 16px 14px 8px; }
.chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; padding: 0 4px; }
.chart-head span { font-size: 0.74rem; font-weight: 600; color: var(--gray-light); }
.chart-legend { display: flex; gap: 14px; }
.chart-legend i { font-style: normal; display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; color: var(--gray-light); }
.chart-legend i::before { content: ""; width: 9px; height: 3px; border-radius: 2px; background: var(--gold); }
.chart-legend i.blue::before { background: var(--blue-light); }
#heroChart { width: 100%; height: 120px; display: block; }

.float-card {
  position: absolute;
  z-index: 2;
  background: rgba(26, 32, 70, 0.92);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.float-card small { display: block; font-size: 0.68rem; color: var(--gray-light); font-weight: 500; }
.float-card .fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.float-card--tax { top: -44px; right: 5%; animation: floatCardA 6s ease-in-out infinite; }
.float-card--tax .fc-icon { background: rgba(61, 220, 132, 0.14); color: #3DDC84; }
.float-card--growth { bottom: -24px; left: -4%; animation: floatCardB 7s ease-in-out infinite; }
.float-card--growth .fc-icon { background: var(--gold-soft); color: var(--gold); }
@keyframes floatCardA { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes floatCardB { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

.page-hero {
  position: relative;
  background: radial-gradient(1000px 500px at 80% -20%, rgba(53, 74, 194, 0.4), transparent 60%),
              radial-gradient(700px 400px at 5% 120%, rgba(252, 207, 44, 0.08), transparent 55%),
              var(--black);
  color: var(--white);
  padding: 72px 0 84px;
  overflow: hidden;
}
.page-hero .container { position: relative; max-width: 900px; }
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin: 20px 0 18px; }
.page-sub { font-size: 1.12rem; color: var(--gray-light); max-width: 640px; margin-bottom: 34px; }

.breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--gray-light); margin-bottom: 26px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-light); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; opacity: 0.6; }
.breadcrumb span { color: var(--white); font-weight: 600; }

.svc-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 56px; align-items: start; }
.svc-main h2 { margin-bottom: 28px; }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 34px; }
.svc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.svc-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(53, 74, 194, 0.3); }
.svc-item i { color: var(--blue); margin-top: 3px; }
.svc-item strong { font-size: 0.95rem; line-height: 1.45; display: block; }
.svc-item span { font-size: 0.83rem; color: var(--gray); display: block; margin-top: 3px; }

.outcome-card {
  background: var(--ink);
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.outcome-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.outcome-card p { color: rgba(255, 255, 255, 0.88); font-size: 1.04rem; font-weight: 500; }

.svc-side { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 22px; }
.glance-card {
  background: linear-gradient(160deg, rgba(53, 74, 194, 0.12), rgba(53, 74, 194, 0.03));
  border: 1px solid rgba(53, 74, 194, 0.25);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  text-align: center;
}
.glance-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue); }
.glance-num { font-size: 3.2rem; font-weight: 800; line-height: 1.1; margin: 8px 0 6px; background: linear-gradient(100deg, var(--gold) 10%, #F5AE1C 90%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.glance-card p { font-size: 0.9rem; }

.side-contact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.side-contact h3 { margin-bottom: 8px; }
.side-contact > p { font-size: 0.9rem; margin-bottom: 20px; }
.side-contact .btn { width: 100%; justify-content: center; margin-bottom: 12px; padding: 13px 22px; font-size: 0.92rem; }
.side-contact-meta { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 16px; display: grid; gap: 8px; }
.side-contact-meta span { font-size: 0.83rem; color: var(--gray); display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.side-contact-meta i { color: var(--blue); }

.related-head { text-align: center; margin-bottom: 26px; }
.related-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.related-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  transition: var(--transition);
}
.related-chip i { color: var(--blue); font-size: 0.8rem; }
.related-chip:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.related-chip:hover i { color: var(--gold-deep); }

.stats-band { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding: 10px 8px; }
.stat-num { font-size: clamp(2.1rem, 3.6vw, 2.9rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.stat-label { margin-top: 6px; font-size: 0.92rem; color: var(--gray); font-weight: 500; }

.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-copy .section-label { margin-bottom: 14px; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { margin-bottom: 16px; font-size: 1.03rem; }
.about-points { margin: 26px 0 34px; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; font-weight: 600; color: var(--dark-text); }
.about-points li i { color: var(--blue); margin-top: 4px; }

.mv-cards { display: grid; gap: 22px; }
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mv-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.mv-card--mission::before { background: var(--gold); }
.mv-card--vision::before { background: var(--blue); }
.mv-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.mv-card--mission .mv-icon { background: var(--gold-soft); color: var(--gold-deep); }
.mv-card--vision .mv-icon { background: var(--blue-soft); color: var(--blue); }
.mv-card h3 { margin-bottom: 10px; }
.mv-card p { font-size: 0.99rem; }

.story-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.story-copy p { font-size: 1.05rem; margin-bottom: 18px; }
.story-copy strong { color: var(--gold); }
.story-quote {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 20px;
  margin: 26px 0 30px;
}
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
}
.pillar strong { display: block; color: var(--gold); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.pillar span { font-size: 0.82rem; color: var(--gray-light); line-height: 1.5; display: block; }

.leader-card {
  background: linear-gradient(165deg, rgba(53, 74, 194, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(90, 111, 224, 0.35);
  border-radius: var(--radius-lg);
  padding: 38px 36px 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.leader-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.leader-card h3 { margin-bottom: 16px; font-size: 1.35rem; }
.leader-card p { font-size: 0.97rem; margin-bottom: 14px; }
.leader-sig { border-top: 1px solid var(--border-dark); margin-top: 22px; padding-top: 18px; }
.leader-sig strong { display: block; color: var(--white); font-size: 1.05rem; }
.leader-sig span { font-size: 0.84rem; color: var(--gray-light); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .sc-icon { background: var(--gold); color: var(--black); transform: rotate(-6deg) scale(1.06); }
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; flex-grow: 1; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.sc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.featured-flag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  background: var(--gold-soft);
  border: 1px solid rgba(252, 207, 44, 0.4);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}
a.service-card { color: inherit; }
.sc-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  transition: var(--transition);
}
.sc-more i { font-size: 0.75rem; transition: transform 0.3s var(--ease); }
.service-card:hover .sc-more { color: var(--gold-deep); }
.service-card:hover .sc-more i { transform: translateX(4px); }

.service-card--cta { background: var(--ink); border-color: var(--ink); }
.service-card--cta h3 { color: var(--white); }
.service-card--cta p { color: var(--gray-light); }
.service-card--cta .sc-icon { background: rgba(252, 207, 44, 0.14); color: var(--gold); }
.service-card--cta .btn { margin-top: 20px; justify-content: center; padding: 12px 22px; font-size: 0.9rem; }
.service-card--cta:hover .sc-icon { background: var(--gold); color: var(--ink); }

.services-note { text-align: center; margin-top: 40px; color: var(--gray); font-size: 0.96rem; }
.services-note a { color: var(--blue); font-weight: 700; }
.services-note a:hover { text-decoration: underline; }

.compare-wrap { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.compare-col { border-radius: var(--radius-lg); padding: 38px 34px; position: relative; }
.compare-col--without { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-dark); }
.compare-col--with {
  background: linear-gradient(165deg, rgba(53, 74, 194, 0.22), rgba(53, 74, 194, 0.05));
  border: 1px solid rgba(90, 111, 224, 0.4);
  box-shadow: 0 24px 70px rgba(53, 74, 194, 0.22);
}
.compare-col h3 { margin-bottom: 8px; }
.compare-col .compare-sub { font-size: 0.9rem; margin-bottom: 26px; }
.compare-list { display: grid; gap: 15px; }
.compare-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.96rem; color: rgba(255, 255, 255, 0.86); }
.compare-list li i { margin-top: 4px; font-size: 0.85rem; }
.compare-list li i.fa-xmark { color: #FF7B72; }
.compare-list li i.fa-check { color: var(--gold); }
.vs-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(252, 207, 44, 0.15);
  animation: vsPulse 2.6s ease-in-out infinite;
}
@keyframes vsPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(252, 207, 44, 0.15); }
  50% { box-shadow: 0 0 0 16px rgba(252, 207, 44, 0.04); }
}
.impact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.impact { text-align: center; padding: 26px 18px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); }
.impact-num { font-size: 2rem; font-weight: 800; }
.impact-label { font-size: 0.88rem; color: var(--gray-light); margin-top: 5px; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.values-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 44px; }
.values-strip-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-right: 6px; }
.values-chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  background: var(--light);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(53, 74, 194, 0.3); }
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.value-card:nth-child(even) .value-icon { background: var(--blue-soft); color: var(--blue); }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { font-size: 0.93rem; }

.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; position: relative; }
.process-steps::before {
  content: "";
  position: absolute;
  top: 34px; left: 7%; right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: 0.35;
}
.step { position: relative; text-align: center; padding: 0 8px; }
.step-num {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 2px solid rgba(252, 207, 44, 0.5);
  color: var(--gold);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step:hover .step-num { background: var(--gold); color: var(--black); transform: scale(1.08); box-shadow: 0 0 0 10px rgba(252, 207, 44, 0.12); }
.step-week {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  background: rgba(53, 74, 194, 0.16);
  border: 1px solid rgba(90, 111, 224, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }
.process-cta { text-align: center; margin-top: 56px; }

.tst-slider { position: relative; max-width: 860px; margin: 0 auto; overflow: hidden; }
.tst-track { display: flex; transition: transform 0.55s var(--ease); }
.tst-slide { flex: 0 0 100%; padding: 8px 10px 18px; }
.tst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 44px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}
.tst-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 20px; }
.tst-quote { font-size: 1.13rem; color: var(--dark-text); font-weight: 500; line-height: 1.7; margin-bottom: 28px; }
.tst-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tst-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}
.tst-slide:nth-child(even) .tst-avatar { background: linear-gradient(135deg, #8a6d00, var(--gold-deep)); }
.tst-who { text-align: left; }
.tst-who strong { display: block; font-size: 0.97rem; }
.tst-who span { font-size: 0.82rem; color: var(--gray); }
.tst-tag {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.tst-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 26px; }
.tst-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark-text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.tst-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.tst-dots { display: flex; gap: 9px; }
.tst-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); padding: 0; transition: var(--transition); }
.tst-dot.active { background: var(--gold); transform: scale(1.3); }

.marquee-section { padding: 56px 0; background: var(--ink); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.marquee-title { text-align: center; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gray-light); font-weight: 700; margin-bottom: 30px; }
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marqueeScroll 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
}
.marquee-chip i { color: var(--gold); font-size: 0.85rem; }

.faq-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); margin-bottom: 14px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: rgba(53, 74, 194, 0.4); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 21px 24px;
  font-size: 1.01rem;
  font-weight: 700;
  color: var(--dark-text);
}
.faq-q i { color: var(--blue); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--gold-deep); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: 0.96rem; }

.faq-side { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-side-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
}
.faq-side-card h3 { margin-bottom: 10px; }
.faq-side-card p { color: var(--gray-light); font-size: 0.93rem; margin-bottom: 24px; }
.faq-side-card .btn { width: 100%; justify-content: center; margin-bottom: 22px; }
.faq-side-stats { display: flex; justify-content: center; gap: 34px; border-top: 1px solid var(--border-dark); padding-top: 22px; }
.faq-side-stats strong { display: block; font-size: 1.3rem; color: var(--gold); }
.faq-side-stats span { font-size: 0.76rem; color: var(--gray-light); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 18px; margin-top: 30px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); border-color: rgba(53, 74, 194, 0.35); box-shadow: var(--shadow-sm); }
.contact-card .cc-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card:nth-child(2) .cc-icon { background: var(--gold-soft); color: var(--gold-deep); }
.contact-card:nth-child(3) .cc-icon { background: rgba(61, 220, 132, 0.12); color: #1FA85B; }
.contact-card strong { display: block; font-size: 0.95rem; }
.contact-card span { font-size: 0.88rem; color: var(--gray); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { font-size: 0.92rem; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--light);
  color: var(--dark-text);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 14px; }

.final-cta {
  position: relative;
  background: radial-gradient(800px 400px at 50% -20%, rgba(53, 74, 194, 0.4), transparent 65%), var(--black);
  color: var(--white);
  padding: 110px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 207, 44, 0.12), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaGlow 5s ease-in-out infinite alternate;
}
@keyframes ctaGlow { from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.92); } to { opacity: 1; transform: translate(-50%, -50%) scale(1.1); } }
.final-cta .container { position: relative; }
.final-cta h2 { max-width: 700px; margin: 0 auto 18px; }
.final-cta > .container > p { color: var(--gray-light); font-size: 1.08rem; margin-bottom: 40px; }
.final-cta .hero-ctas { justify-content: center; margin-bottom: 44px; }
.cta-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; font-size: 0.87rem; color: var(--gray-light); }
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.cta-trust i { color: var(--gold); font-size: 0.8rem; }

.footer { background: var(--black); color: var(--gray-light); border-top: 1px solid var(--border-dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 54px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; color: var(--gray-light); max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: translateY(-4px); }
.footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.9rem; color: var(--gray-light); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; font-size: 0.9rem; }
.footer-contact i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold); }

.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.4s ease-in-out infinite;
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

body.locked { overflow: hidden; }

.door-intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  perspective: 1900px;
  transition: opacity 0.5s ease 0.15s;
}
.door-intro.done { opacity: 0; pointer-events: none; }

.door-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 16px solid transparent;
  border-image: linear-gradient(180deg, #43301a 0%, #2a1d0e 45%, #150e06 100%) 1;
  box-shadow:
    inset 0 0 0 2px rgba(252, 207, 44, 0.3),
    inset 0 0 70px rgba(0, 0, 0, 0.8);
}

.door {
  position: absolute;
  top: 0; bottom: 0;
  width: 50.05%;
  transition: transform 1.7s cubic-bezier(0.66, 0, 0.32, 1);
  backface-visibility: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.11 0.008' numOctaves='4' seed='11'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0 0 0 0'/%3E%3C/filter%3E%3Crect width='420' height='420' filter='url(%23g)'/%3E%3C/svg%3E"),
        repeating-linear-gradient(90deg,
      rgba(0, 0, 0, 0.5) 0px, rgba(0, 0, 0, 0.5) 2px,
      rgba(255, 214, 120, 0.05) 2px, rgba(255, 214, 120, 0.05) 3px,
      transparent 3px, transparent 92px),
        linear-gradient(180deg, #35250f 0%, #2b1d0c 40%, #201406 100%);
}
.door--left {
  left: 0;
  transform-origin: left center;
  box-shadow:
    inset -4px 0 10px -2px rgba(0, 0, 0, 0.85),
    inset 12px 0 30px -12px rgba(255, 226, 140, 0.10);
}
.door--right {
  right: 0;
  transform-origin: right center;
  box-shadow:
    inset 4px 0 10px -2px rgba(0, 0, 0, 0.85),
    inset -12px 0 30px -12px rgba(255, 226, 140, 0.10);
}
.door::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 236, 170, 0.06), transparent 18%, transparent 80%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.door-panel {
  position: absolute;
  left: 13%; right: 13%;
  border-radius: 5px;
  background: linear-gradient(165deg, #26180a 0%, #1d1206 55%, #170e04 100%);
  border: 1px solid rgba(0, 0, 0, 0.65);
  outline: 1px solid rgba(252, 207, 44, 0.13);
  outline-offset: -9px;
  box-shadow:
    inset 0 3px 8px rgba(0, 0, 0, 0.9),
    inset 3px 0 6px rgba(0, 0, 0, 0.6),
    inset 0 -1px 2px rgba(255, 224, 120, 0.06),
    0 1px 0 rgba(255, 224, 120, 0.08),
    0 -2px 3px rgba(0, 0, 0, 0.7);
}
.dp-top { top: 7.5%; height: 35%; }
.dp-bottom { bottom: 7.5%; height: 35%; }

.door-studs {
  position: absolute;
  top: 3%; bottom: 3%;
  width: 15px;
  background-image: radial-gradient(circle at 50% 50%,
    #ffe9a3 0px, #ecc23a 2.5px, #967311 4px, #6b500b 5px,
    rgba(0, 0, 0, 0.4) 6px, transparent 7.5px);
  background-size: 15px 52px;
  background-repeat: repeat-y;
  background-position: center 10px;
}
.door--left .ds-outer { left: 3.5%; }
.door--left .ds-inner { right: 4.5%; }
.door--right .ds-outer { right: 3.5%; }
.door--right .ds-inner { left: 4.5%; }

.door-ring {
  position: absolute;
  top: 55%;
  width: 76px;
  height: 84px;
  z-index: 2;
  filter: drop-shadow(0 7px 9px rgba(0, 0, 0, 0.65));
}
.door--left .door-ring { right: 8%; }
.door--right .door-ring { left: 8%; }
.door-ring::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffedb0, #e2b52a 45%, #8a6a10 80%, #5d450a);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), inset 0 -2px 3px rgba(0, 0, 0, 0.4);
}
.door-ring::after {
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 66px; height: 66px;
  border-radius: 50%;
  background: conic-gradient(from 220deg,
    #6b500b, #ffe9a3 18%, #caA33a 38%, #7a5c08 55%, #f0cf5e 75%, #96731a 90%, #6b500b);
  -webkit-mask: radial-gradient(circle, transparent 0 22px, #000 23px 32px, transparent 33px);
  mask: radial-gradient(circle, transparent 0 22px, #000 23px 32px, transparent 33px);
}

.door-edge {
  position: absolute;
  top: 0; bottom: 0;
  width: 34px;
  background: linear-gradient(180deg, #33240f 0%, #271a0a 55%, #1c1206 100%);
  box-shadow: inset 2px 0 3px rgba(255, 220, 140, 0.14), inset -2px 0 4px rgba(0, 0, 0, 0.5), inset 0 0 24px rgba(0, 0, 0, 0.45);
}
.door--left .door-edge {
  right: 0;
  transform-origin: right center;
  transform: rotateY(-90deg);
}
.door--right .door-edge {
  left: 0;
  transform-origin: left center;
  transform: rotateY(90deg);
}

.door-hinge {
  position: absolute;
  height: 30px;
  width: 24%;
  z-index: 1;
  background-image:
    radial-gradient(circle at 15% 50%, #fff0b8 0 2.5px, #7a5c08 4px, transparent 5.5px),
    radial-gradient(circle at 46% 50%, #fff0b8 0 2.5px, #7a5c08 4px, transparent 5.5px),
    radial-gradient(circle at 74% 50%, #fff0b8 0 2.5px, #7a5c08 4px, transparent 5.5px),
    linear-gradient(180deg, #dfb432 0%, #a87f14 55%, #6f540c 100%);
  box-shadow:
    0 4px 7px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 240, 190, 0.55),
    inset 0 -2px 3px rgba(0, 0, 0, 0.45);
}
.door--left .door-hinge {
  left: 0;
  clip-path: polygon(0 0, 82% 0, 100% 50%, 82% 100%, 0 100%);
}
.door--right .door-hinge {
  right: 0;
  clip-path: polygon(100% 0, 18% 0, 0 50%, 18% 100%, 100% 100%);
  background-image:
    radial-gradient(circle at 85% 50%, #fff0b8 0 2.5px, #7a5c08 4px, transparent 5.5px),
    radial-gradient(circle at 54% 50%, #fff0b8 0 2.5px, #7a5c08 4px, transparent 5.5px),
    radial-gradient(circle at 26% 50%, #fff0b8 0 2.5px, #7a5c08 4px, transparent 5.5px),
    linear-gradient(180deg, #dfb432 0%, #a87f14 55%, #6f540c 100%);
}
.dh-top { top: 12%; }
.dh-bottom { bottom: 12%; }

.door-shade {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0);
  transition: background 1.7s cubic-bezier(0.66, 0, 0.32, 1);
  pointer-events: none;
}

.door-light {
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 85% at 50% 50%, rgba(255, 240, 198, 0.95), rgba(255, 240, 198, 0) 70%);
  opacity: 0;
  pointer-events: none;
}
.door-intro.open .door-light { animation: lightFlood 1.9s ease forwards; }
@keyframes lightFlood {
  0% { opacity: 0; }
  30% { opacity: 0.7; }
  100% { opacity: 0; }
}

.door-intro.open .door--left { transform: rotateY(-110deg); }
.door-intro.open .door--right { transform: rotateY(110deg); transition-delay: 0.14s; }
.door-intro.open .door-shade { background: rgba(0, 0, 0, 0.6); }

@media (prefers-reduced-motion: reduce) {
  .door-intro { display: none; }
}

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.13s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.21s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.29s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.37s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.53s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.61s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.69s; }
.stagger.visible > *:nth-child(10) { transition-delay: 0.77s; }
.stagger.visible > *:nth-child(11) { transition-delay: 0.85s; }
.stagger.visible > *:nth-child(12) { transition-delay: 0.93s; }
.stagger.visible > *:nth-child(13) { transition-delay: 1.01s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .services-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .process-steps::before { display: none; }
  .about-grid, .contact-grid, .faq-grid, .story-grid, .svc-layout { grid-template-columns: 1fr; gap: 48px; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .svc-side { position: static; }
  .faq-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .compare-wrap { grid-template-columns: 1fr; }
  .vs-badge { position: relative; top: auto; left: auto; transform: none; margin: -8px auto; }
  .impact-row { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
}

@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .services-grid, .values-grid, .process-steps, .form-row, .pillars, .svc-list { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .kpi { padding: 10px; }
  .kpi-value { font-size: 0.9rem; }
  .float-card--tax { right: 0; top: -46px; }
  .door-hinge { height: 20px; }
  .door-edge { width: 22px; }
  .float-card--growth { left: 0; bottom: -18px; }
  .tst-card { padding: 32px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 64px 0 90px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
