/**
 * Fintradax — Global Styles
 * Dark luxury fintech aesthetic
 * Font: Outfit (200-700) + JetBrains Mono (accents)
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #101018;
  --bg-card: #13131d;
  --bg-card-hover: #181825;
  --bg-featured: #0d1a2a;

  --text-primary: #e8e8ed;
  --text-secondary: #e8e8ed;
  --text-muted: #e8e8ed;

  --accent: #4a9eff;
  --accent-dim: rgba(74, 158, 255, 0.12);
  --accent-glow: rgba(74, 158, 255, 0.25);

  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-body: "Outfit", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1200px;
  --container-pad: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  cursor: none;
}

a,
button,
[role="button"],
select,
.btn,
.nav-link,
.lang-current,
.lang-option,
.pricing-card,
.service-card {
  cursor: none !important;
}

/* Keep text cursor for inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea {
  cursor: auto;
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body,
  a,
  button,
  [role="button"],
  select,
  .btn,
  .nav-link,
  .lang-current,
  .lang-option,
  .pricing-card,
  .service-card {
    cursor: auto;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

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

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ============================================
   Container
   ============================================ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================
   Section Tag (Label)
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0px;
}

.section-tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* ============================================
   Section Header
   ============================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-header .section-desc {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #5eadff;
  border-color: #5eadff;
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-light);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--container-pad);
  transition:
    background 0.4s var(--ease-out),
    backdrop-filter 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  color: var(--accent);
}

.logo-text {
  font-size: 32px;
  margin-top: -10px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

/* Nav Dropdown */
.has-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-chevron {
  transition: transform 0.3s var(--ease-out);
}

.has-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease-out);
  z-index: 100;
  list-style: none;
}

.has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

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

.nav-dropdown-link.active {
  color: var(--accent);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  z-index: 1001;
  position: absolute;
  right: 20px;
}

.toggle-bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active .toggle-bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle.active .toggle-bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Login Button */
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--accent);
  border: 1px solid rgba(74, 158, 255, 0.25);
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn-login:hover {
  background: var(--accent-dim);
  border-color: rgba(74, 158, 255, 0.45);
  color: #5eadff;
}

/* Nav Right (lang + login) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.lang-current:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.lang-current svg:first-child {
  opacity: 0.5;
}

.lang-chevron {
  transition: transform 0.3s var(--ease-out);
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease-out);
  z-index: 1002;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  border-radius: 5px;
  transition: all 0.2s var(--ease-out);
  text-align: center;
}

.lang-option:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.lang-option.lang-active {
  color: var(--accent);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px var(--container-pad) 80px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(74, 158, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(74, 158, 255, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.title-line-1 {
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.title-line-2 {
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

.title-accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
}

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.hero-scroll-cue span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-line::before,
.scroll-line::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  animation: scrollArrow 2s ease-in-out infinite;
}

.scroll-line::after {
  animation-delay: 0.3s;
  opacity: 0.5;
}

@keyframes scrollArrow {
  0%,
  100% {
    opacity: 0.2;
    transform: rotate(45deg) translateY(0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(4px);
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
}

.about-heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-top: 0;
  padding-top: 0;
}

.text-muted {
  color: var(--text-muted);
}

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

.about-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-item i {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-label {
  margin-bottom: 0;
}
.about-content {
  margin: 0;
  padding: 0;
}
.about-label .section-tag {
  margin-bottom: 0 !important;
}
/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

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

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease-out);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.card-featured {
  border-color: rgba(74, 158, 255, 0.2);
  background: var(--bg-featured);
}

.card-featured:hover {
  border-color: rgba(74, 158, 255, 0.35);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 4px;
}

.card-icon {
  margin-bottom: 24px;
}

.card-icon i {
  font-size: 32px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-pad) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  position: relative;
  padding: 0 20px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 24px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-line {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.step:last-child .step-line {
  display: none;
}

/* ============================================
   WHY FINTRADAX
   ============================================ */
.why {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.why-lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out);
}

.why-item:hover {
  background: var(--bg-card);
  border-color: var(--border);
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-dim);
}

.why-icon i {
  font-size: 22px;
  color: var(--accent);
}

.why-item h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-pad) 0;
}

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

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}

.pricing-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: rgba(74, 158, 255, 0.25);
  background: var(--bg-featured);
}

.pricing-featured:hover {
  border-color: rgba(74, 158, 255, 0.4);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 4px;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-card-header h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pricing-currency {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-value {
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
}

.pricing-period {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 8px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-features li.included {
  color: var(--text-secondary);
}

.pricing-features li.included svg {
  flex-shrink: 0;
  color: var(--accent);
}

.pricing-features li.excluded {
  color: var(--text-muted);
  opacity: 0.45;
}

.pricing-features li.excluded svg {
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-cost-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cost-box-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
}

.cost-box-content h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cost-box-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cost-highlight {
  font-weight: 500;
  color: var(--accent) !important;
  margin-top: 4px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: var(--section-pad) 0;
}

.cta-box {
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(74, 158, 255, 0.08) 0%,
      transparent 60%
    ),
    var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 80px 60px;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 80px var(--container-pad) 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 17px;
  font-weight: 500;
}

.footer-logo svg {
  color: var(--accent);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-out);
}

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

.footer-address,
.footer-email {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-email a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================
   Custom Cursor
   ============================================ */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background: rgba(74, 158, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    height 0.2s ease,
    background 0.2s ease;
}

.cursor-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  background: rgba(200, 230, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 0.8px solid rgba(74, 158, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.3s ease;
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 3px;
  height: 3px;
  background: rgba(74, 158, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
}

.cursor-hover .cursor-dot {
  width: 10px;
  height: 10px;
  background: rgba(74, 158, 255, 1);
}

.cursor-hover .cursor-ring {
  width: 55px;
  height: 55px;
  border-color: rgba(74, 158, 255, 0.3);
}

@media (hover: none) and (pointer: coarse) {
  .cursor-dot,
  .cursor-ring,
  .cursor-trail {
    display: none !important;
  }
}
