/* Fortex Wealths - Landing Pages Styles */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-glow: #60a5fa;
  --bg: #0a0f1e;
  --bg-soft: #111a2e;
  --bg-card: #15203a;
  --text: #e8edf7;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  --shadow: 0 20px 60px -20px rgba(37, 99, 235, 0.4);
  --radius: 14px;
}
[data-theme='light'] {
  --bg: #f7f9fc;
  --bg-soft: #ffffff;
  --bg-card: #ffffff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
[data-theme='light'] .site-header {
  background: rgba(255, 255, 255, 0.9);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.nav-menu {
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: var(--shadow);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-menu a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.nav-menu .has-dropdown {
  position: relative;
}
.nav-menu .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav-menu .has-dropdown:hover .nav-dropdown,
.nav-menu .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.nav-dropdown li a:hover {
  background: rgba(37, 99, 235, 0.12);
  color: var(--text);
}
.nav-dropdown li a::after {
  display: none;
}
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 70px -15px rgba(37, 99, 235, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
}
.theme-toggle:hover {
  border-color: var(--primary);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
  background-image: url('/assets/home/images/meeting.jpg');
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (max-width: 1200px) {
  .hero {
    background-size: cover;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 12, 30, 0.88), rgba(7, 12, 30, 0.78)),
    radial-gradient(
      circle at 20% 30%,
      rgba(37, 99, 235, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(124, 58, 237, 0.28) 0%,
      transparent 55%
    );
  z-index: 0;
}
[data-theme='light'] .hero::before {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.55)),
    radial-gradient(
      circle at 20% 30%,
      rgba(37, 99, 235, 0.25) 0%,
      transparent 55%
    );
}
[data-theme='light'] .hero .hero-title,
[data-theme='light'] .hero .hero-text,
[data-theme='light'] .hero .hero-stat strong,
[data-theme='light'] .hero .hero-stat span {
  color: #fff;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary-glow);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}
.hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 480px;
  aspect-ratio: 1;
  margin-left: auto;
}
.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: floatY 6s ease-in-out infinite;
}
.hero-card-1 {
  top: 0;
  left: 0;
  width: 65%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.95),
    rgba(124, 58, 237, 0.95)
  );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  z-index: 3;
}
.hero-card-1 .label {
  font-size: 12px;
  opacity: 0.9;
  color: #fff;
}
.hero-card-1 .val {
  font-size: 28px;
  font-weight: 800;
  margin-top: 4px;
  color: #fff;
}
.hero-card-1 .change {
  font-size: 13px;
  margin-top: 8px;
  opacity: 0.95;
  color: #d1fae5;
}
.hero-card-2 {
  top: 18%;
  right: 0;
  width: 50%;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  z-index: 2;
  animation-delay: -2s;
}
.hero-card-3 {
  bottom: 0;
  left: 8%;
  width: 72%;
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  z-index: 4;
  animation-delay: -4s;
}
.hero-card-3 > div:first-child {
  color: #fff;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 12px;
}
.mini-chart span {
  flex: 1;
  background: var(--gradient);
  border-radius: 3px;
  opacity: 0.85;
}
.coin-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.coin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.coin-item .name {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}
.coin-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-2);
}
.coin-up {
  color: #10b981;
  font-weight: 600;
}
.coin-down {
  color: #ef4444;
  font-weight: 600;
}

/* ============ SECTIONS ============ */
section {
  padding: 90px 0;
  position: relative;
}
.section-eyebrow {
  text-align: center;
  color: var(--primary-glow);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-text {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 16px;
}
.section-alt {
  background: var(--bg-soft);
}

/* ============ FEATURES ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gradient);
  position: relative;
  box-shadow: var(--shadow);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  list-style: none;
  font-size: 15px;
}
.about-list .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}

/* ============ SERVICES ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-img {
  aspect-ratio: 16/10;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-body {
  padding: 26px;
}
.service-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 16px;
}
.service-link {
  color: var(--primary-glow);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover {
  gap: 10px;
  transition: gap 0.2s;
}

/* ============ STATS BAR ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 60px;
  border-radius: 24px;
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 6px;
}

/* ============ PLANS ============ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.plan-card.featured {
  background: var(--gradient);
  color: #fff;
  border: none;
  transform: scale(1.05);
}
.plan-card.featured .plan-name,
.plan-card.featured .plan-roi,
.plan-card.featured .plan-features li {
  color: #fff;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fbbf24;
  color: #000;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.plan-roi {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 6px;
}
.plan-roi small {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}
.plan-cycle {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.plan-features li::before {
  content: '✓';
  color: var(--primary-glow);
  font-weight: 700;
}
.plan-card.featured .plan-features li::before {
  color: #fff;
}

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 80px;
  color: var(--primary);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  gap: 14px;
  align-items: center;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}
.stars {
  color: #fbbf24;
  margin-bottom: 12px;
  font-size: 14px;
}

/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  display: grid;
  place-items: center;
  color: var(--primary-glow);
}
.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ============ CTA ============ */
.cta-section {
  padding: 80px 40px;
  border-radius: 24px;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.cta-section > * {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.cta-section p {
  opacity: 0.95;
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 17px;
}
.cta-section .btn {
  background: #fff;
  color: var(--primary);
}
.cta-section .btn:hover {
  transform: translateY(-2px);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s,
    padding 0.3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14.5px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 15px;
  font-weight: 700;
}
.contact-info-card p {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-form {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.team-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-info {
  padding: 20px;
}
.team-info h4 {
  font-size: 17px;
  margin-bottom: 4px;
}
.team-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ PARTNERS ============ */
.partners {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.7;
}
.partners span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-muted);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-soft);
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--primary-glow);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 140px 0 70px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(37, 99, 235, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.08));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(124, 58, 237, 0.18),
    transparent 40%
  );
  pointer-events: none;
}
.page-header > * {
  position: relative;
  z-index: 1;
}
.page-header .container {
  max-width: 860px;
}
.page-header .hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px !important;
}
.page-header h1 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 26px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary-glow);
}
.breadcrumb span {
  color: var(--text);
  font-weight: 600;
}

/* ============ SERVICE DETAIL — ABOUT IMG ============ */
.about-img {
  max-height: 480px;
}
.about-img img {
  transition: transform 0.6s;
}
.about-grid:hover .about-img img {
  transform: scale(1.04);
}
.about-content > .section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 999px;
  color: var(--primary-glow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-content h2 {
  line-height: 1.15;
}

/* ============ SERVICE DETAIL — STATS BAR ============ */
.stats-bar .stat-item strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
}
.stats-bar .stat-item span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============ SERVICE DETAIL — STEP CARDS ============ */
.service-card .service-body > div:first-child {
  background: var(--gradient) !important;
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.5);
}
.service-card {
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before {
  transform: scaleX(1);
}

/* ============ SERVICE DETAIL — SECTION TITLE CENTERED TEXT ============ */
.section-text {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}

/* ============ SERVICE DETAIL — NAV PILLS ============ */
.section-alt .btn-outline {
  white-space: nowrap;
}

@media (max-width: 968px) {
  .page-header {
    padding: 110px 0 50px;
  }
  .about-img {
    max-height: 360px;
  }
  .stats-bar .stat-item strong {
    font-size: 30px;
  }
}

/* ============ MOBILE ============ */
@media (max-width: 968px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    max-width: 400px;
    min-height: 400px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .plan-card.featured {
    transform: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    padding: 40px 24px;
  }
}
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s;
    align-items: stretch;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .nav-menu a {
    padding: 8px 0;
    font-size: 16px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
  }
  .nav-dropdown::before {
    display: none;
  }
  .nav-dropdown li a {
    padding: 6px 0;
    font-size: 14px;
  }
  .nav-cta .btn-outline {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-wrap {
    padding: 14px 16px;
  }
  .brand {
    font-size: 18px;
  }
  .brand-logo {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .hero {
    padding: 110px 0 50px;
  }
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .hero-stat strong {
    font-size: 22px;
  }
  section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-section {
    padding: 50px 24px;
  }
}
