/* ---------- CSS Variables ---------- */
:root {
  --c-dark: #0d1117;
  --c-dark-2: #161b22;
  --c-dark-3: #1f2937;
  --c-surface: #ffffff;
  --c-border: #e5e9f0;
  --c-text: #1a2332;
  --c-text-muted: #6b7a99;

  --c-gold: #c9a84c;
  --c-gold-light: #f0d68a;
  --c-green: #22c55e;
  --c-green-dark: #16a34a;
  --c-amber: #f59e0b;
  --c-blue: #3b82f6;
  --c-red: #ef4444;

  --c-primary: #1d4ed8;
  --c-primary-hover: #1e40af;
  --c-accent: #c9a84c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, .15);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, .20);

  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-surface);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Scroll progress bar ---------- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: var(--scroll-pct, 0%);
  background: linear-gradient(90deg, var(--c-gold), var(--c-primary));
  z-index: 10000;
  transition: width .1s;
}

/* ---------- Intersection Observer Reveal ---------- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s calc(var(--delay, 0s) + .1s),
    transform .7s calc(var(--delay, 0s) + .1s) cubic-bezier(.22, 1, .36, 1);
}

.reveal-up {
  transform: translateY(48px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.in-view.reveal-up,
.in-view.reveal-left,
.in-view.reveal-right {
  opacity: 1;
  transform: none;
}

/* ---------- Shared Text Components ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--c-gold-light);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-dark);
  margin-bottom: 1.25rem;
}

.section-title.light {
  color: #fff;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(29, 78, 216, .3);
}

.btn-primary-custom:hover {
  background: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, .4);
  color: #fff;
}

.btn-lg-custom {
  padding: .85rem 2rem;
  font-size: 1rem;
}

.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--c-text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--c-border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.btn-ghost-custom:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: rgba(29, 78, 216, .05);
}

.btn-lg-custom.btn-ghost-custom {
  padding: .85rem 2rem;
  font-size: 1rem;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--c-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid var(--c-primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-outline-custom:hover {
  background: var(--c-primary);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: transparent;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#mainNav.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  padding: .75rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-dark);
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-amber));
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
}

.brand-text {
  color: var(--c-dark);
}

.brand-text strong {
  color: var(--c-primary);
}

#mainNav .nav-link {
  font-weight: 500;
  font-size: .9rem;
  color: var(--c-text);
  padding: .4rem .75rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

#mainNav .nav-link:hover {
  color: var(--c-primary);
  background: rgba(29, 78, 216, .06);
}

/* Hero nav override */
.hero-dark-nav #mainNav:not(.scrolled) .navbar-brand,
.hero-dark-nav #mainNav:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, .9);
}

.hero-dark-nav #mainNav:not(.scrolled) .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 40%, #1a2845 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1d4ed8 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #c9a84c 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  opacity: .25;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #22c55e 0%, transparent 70%);
  top: 40%;
  left: 30%;
  opacity: .15;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .25);
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-actions .btn-ghost-custom {
  color: rgba(255, 255, 255, .85);
  border-color: rgba(255, 255, 255, .25);
}

.hero-actions .btn-ghost-custom:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .08);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .2rem;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
}

/* Dashboard card */
.hero-visual {
  position: relative;
  padding: 2rem 0 2rem 2rem;
}

.dashboard-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

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

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

.dc-header {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, .2);
  padding: .75rem 1rem;
  gap: .4rem;
}

.dc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dc-dot-r {
  background: #ff5f57;
}

.dc-dot-y {
  background: #febc2e;
}

.dc-dot-g {
  background: #28c840;
}

.dc-title {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
}

.dc-body {
  padding: 1.5rem;
}

.dc-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dc-balance-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .25rem;
}

.dc-balance-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}

.dc-balance-change {
  font-size: .75rem;
  margin-top: .3rem;
}

.positive {
  color: var(--c-green);
}

/* Ring chart */
.dc-ring {
  width: 80px;
  flex-shrink: 0;
}

.ring-svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 10;
}

.ring-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.ring-fill-1 {
  stroke: var(--c-green);
}

.ring-fill-2 {
  stroke: var(--c-amber);
}

.ring-fill-3 {
  stroke: var(--c-blue);
}

.ring-label {
  fill: #fff;
  font-size: 14px;
  font-weight: 700;
  text-anchor: middle;
  transform: rotate(90deg) translate(0, -40px);
}

/* Categories */
.dc-categories {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.dc-cat {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
}

.dc-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dc-cat-name {
  color: rgba(255, 255, 255, .7);
  width: 80px;
  flex-shrink: 0;
}

.dc-cat-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  overflow: hidden;
}

.dc-cat-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.dc-cat-val {
  color: #fff;
  font-weight: 600;
  font-size: .8rem;
  white-space: nowrap;
}

/* Mini bar chart */
.dc-chart {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 60px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1rem;
}

.dc-chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.dc-chart-bar::before {
  content: '';
  width: 100%;
  height: calc(var(--h));
  max-height: 40px;
  background: rgba(59, 130, 246, .4);
  border-radius: 4px 4px 0 0;
  transition: height 1s cubic-bezier(.4, 0, .2, 1);
}

.dc-chart-bar.active::before {
  background: var(--c-blue);
}

.dc-chart-bar span {
  font-size: .6rem;
  color: rgba(255, 255, 255, .4);
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  font-size: .8rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.float-card i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.fc-title {
  color: rgba(255, 255, 255, .6);
  font-size: .72rem;
  margin-bottom: .1rem;
}

.fc-val {
  font-weight: 700;
}

.fc-positive {
  color: var(--c-green);
}

.float-card-1 {
  bottom: 2rem;
  left: -1rem;
}

.float-card-2 {
  top: 3rem;
  right: -1rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .4);
  font-size: .75rem;
  letter-spacing: .1em;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

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

  50% {
    transform: translateY(6px);
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about {
  padding: 7rem 0;
}

.about-visual {
  position: relative;
  padding: 1rem 1rem 5rem;
}

.av-card {
  background: var(--c-dark);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.av-card-main {}

.av-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-amber));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}

.av-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.av-card p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1rem;
}

.av-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.av-tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  border: 1px solid rgba(255, 255, 255, .1);
}

.av-card-sm {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.1rem;
  font-size: .82rem;
  font-weight: 600;
  background: var(--c-surface);
  color: var(--c-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.av-card-sm i {
  font-size: 1.1rem;
  color: var(--c-gold);
}

.av-card-top {
  top: -1rem;
  right: 1rem;
}

.av-card-bot {
  bottom: 1rem;
  right: -1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.af-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.af-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, .1);
  border-radius: 10px;
  color: var(--c-green);
  font-size: 1.1rem;
  margin-top: .15rem;
}

.af-item strong {
  font-weight: 700;
  display: block;
  margin-bottom: .2rem;
}

.af-item p {
  font-size: .9rem;
  color: var(--c-text-muted);
  margin: 0;
}

/* ============================================================
   PRINCIPLES SECTION
   ============================================================ */
.section-principles {
  padding: 7rem 0;
  background: #f8faff;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 575px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.p-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.p-card-accent {
  background: linear-gradient(135deg, var(--c-primary) 0%, #1e3a8a 100%);
  color: #fff;
  border-color: transparent;
}

.p-card-accent h3,
.p-card-accent p {
  color: rgba(255, 255, 255, .9);
}

.p-card-accent .p-card-link {
  color: var(--c-gold-light);
}

.p-card-accent .p-card-icon {
  background: rgba(255, 255, 255, .15);
  color: var(--c-gold-light);
}

.p-card-accent .p-card-num {
  color: rgba(255, 255, 255, .2);
}

.p-card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #f0f4ff;
  line-height: 1;
}

.p-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(29, 78, 216, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
}

.p-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: .75rem;
  color: var(--c-dark);
}

.p-card p {
  font-size: .9rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

.p-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-primary);
  transition: gap var(--transition);
}

.p-card-link:hover {
  gap: .7rem;
}

/* ============================================================
   TOOLS SECTION
   ============================================================ */
.section-tools {
  padding: 7rem 0;
}

.tools-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.tool-card-large {
  grid-row: span 2;
}

@media (max-width: 991px) {
  .tools-layout {
    grid-template-columns: 1fr 1fr;
  }

  .tool-card-large {
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .tools-layout {
    grid-template-columns: 1fr;
  }
}

.tool-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 78, 216, .2);
}

.tool-card-large {
  background: linear-gradient(160deg, #0d1117 0%, #1a2845 100%);
  color: #fff;
  border-color: transparent;
}

.tool-card-large h3 {
  color: #fff;
}

.tool-card-large p {
  color: rgba(255, 255, 255, .65);
}

.tool-card-large .tc-icon {
  background: rgba(255, 255, 255, .1);
  color: var(--c-gold-light);
}

.tool-card-large .tc-list {
  color: rgba(255, 255, 255, .8);
}

.tc-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-gold-light);
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .3);
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.tc-icon {
  width: 52px;
  height: 52px;
  background: rgba(29, 78, 216, .08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-dark);
  margin-bottom: .75rem;
}

.tool-card p {
  font-size: .9rem;
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.tc-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.tc-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
}

.tc-list i {
  color: var(--c-green);
}

.tc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-primary);
  transition: gap var(--transition);
}

.tc-link:hover {
  gap: .7rem;
}

/* ============================================================
   STEPS SECTION
   ============================================================ */
.section-steps {
  padding: 7rem 0;
  background: #f8faff;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.step-item.last {
  padding-bottom: 0;
}

.step-item.last .step-connector {
  display: none;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(29, 78, 216, .3);
}

.step-connector {
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(29, 78, 216, .4), rgba(29, 78, 216, .05));
  transform: translateX(-50%);
}

.step-content {
  padding-top: .6rem;
}

.step-content h4 {
  font-weight: 700;
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.step-content p {
  font-size: .92rem;
  color: var(--c-text-muted);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.section-stats {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1117 0%, #1a2845 60%, #0d1117 100%);
  z-index: -1;
}

.stats-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.stat-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .08);
}

.stat-icon {
  font-size: 2rem;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
  display: inline;
}

.stat-prefix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
  display: inline;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .75rem;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.section-testimonials {
  padding: 7rem 0;
}

.testi-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testi-card-accent {
  background: linear-gradient(135deg, var(--c-primary) 0%, #1e3a8a 100%);
  border-color: transparent;
  color: #fff;
}

.testi-card-accent p,
.testi-card-accent strong {
  color: #fff;
}

.testi-card-accent span {
  color: rgba(255, 255, 255, .6) !important;
}

.testi-card-accent .testi-stars i {
  color: var(--c-gold-light);
}

.testi-stars {
  color: var(--c-amber);
  margin-bottom: 1rem;
  font-size: .95rem;
  letter-spacing: .05em;
}

.testi-card p {
  font-size: .95rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-card-accent p {
  color: rgba(255, 255, 255, .85);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-weight: 700;
  font-size: .9rem;
}

.testi-author span {
  font-size: .8rem;
  color: var(--c-text-muted);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.section-faq {
  padding: 7rem 0;
  background: #f8faff;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-dark) !important;
  background: transparent !important;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
  border: none;
}

.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d4ed8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-btn:not(.collapsed) {
  color: var(--c-primary) !important;
}

.faq-body {
  font-size: .92rem;
  color: var(--c-text-muted);
  padding: 0 1.5rem 1.25rem;
  line-height: 1.75;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: var(--c-dark);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--c-primary) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--c-gold) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  opacity: .25;
}

.cta-form {
  max-width: 560px;
  margin: 2.5rem auto 0;
}

.cta-form-group {
  display: flex;
  gap: .5rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  padding: .4rem .4rem .4rem 1.5rem;
}

.cta-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  min-width: 0;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(135deg, var(--c-gold), var(--c-amber));
  color: var(--c-dark);
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-body);
  border: none;
  border-radius: 50px;
  padding: .7rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-cta-submit:hover {
  opacity: .9;
  transform: scale(1.02);
}

.cta-note {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
  text-align: center;
  margin-top: .75rem;
}

.cta-success {
  display: none;
  text-align: center;
  color: var(--c-green);
  font-weight: 600;
  font-size: .95rem;
  margin-top: 1rem;
  gap: .4rem;
  align-items: center;
  justify-content: center;
}

.cta-success.show {
  display: flex;
}

.cta-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-logos span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

.cta-logo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.cta-logo-list span {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-dark-2);
  padding: 4rem 0 2rem;
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.site-footer .navbar-brand {
  color: #fff;
}

.site-footer .brand-text {
  color: #fff;
}

.footer-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin: .75rem 0 1.25rem;
}

.footer-socials {
  display: flex;
  gap: .75rem;
}

.fs-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}

.fs-link:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: transparent;
}

.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: 1.75rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-visual {
    padding: 2rem 0 0;
  }

  .float-card-1 {
    bottom: -1rem;
    left: 0;
  }

  .float-card-2 {
    top: 1rem;
    right: 0;
  }

  .section-about,
  .section-principles,
  .section-tools,
  .section-steps,
  .section-stats,
  .section-testimonials,
  .section-faq,
  .section-cta {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .hero-stats {
    gap: 1rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .dc-chart {
    display: none;
  }

  .cta-form-group {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: .75rem;
  }

  .cta-input {
    text-align: center;
  }

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

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

  .float-card {
    display: none;
  }

  .av-card-sm {
    display: none;
  }
}