/* ===== Extracted <style> block #1 ===== */
/* ============================================================
           CORE VARIABLES & RESETS
        ============================================================ */
:root {
  --brand-primary: #6366f1;
  --brand-secondary: #f59e0b;
  --brand-accent: #ec4899;
  --bg-dark: #0b1024;
  --bg-dark-2: #0f172a;
  --text: #334155;
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: #f8fafc;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

/* Layout Utilities */
.container-x {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.mt-10 {
  margin-top: 2.5rem;
}

.max-w-4xl {
  width: min(900px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* ============================================================
           GLASSMORPHISM UI
        ============================================================ */
.glass-nav {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, .6);
}

.glass-card {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 38, 135, 0.12);
}

.glass-strong {
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, .15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-2xl);
}

.glass-pill {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

/* ============================================================
           BUTTONS & CHIPS
        ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  transition: all .2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  background: #0f172a;
  color: #fff;
}

.btn-dark:hover {
  background: #1e293b;
}

.btn-white {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.btn-white:hover {
  border-color: #cbd5e1;
}

.btn-glass {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

.btn-green {
  background: #22c55e;
  color: #fff;
}

.btn-green:hover {
  background: #16a34a;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.chip-dark {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* ============================================================
           HERO & ANIMATIONS
        ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  background: radial-gradient(at 0% 0%, #312e81 0%, #0f172a 50%, #0b1024 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 80px;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media(max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }
}

.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
  animation: float 10s infinite alternate;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--brand-primary);
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--brand-accent);
  bottom: 10%;
  right: -5%;
  animation-delay: -5s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--brand-secondary);
  top: 40%;
  left: 40%;
  opacity: 0.2;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(20px, -20px);
  }
}

.dot-ping {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
  animation: ping 2s infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  background: linear-gradient(to right, #818cf8, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-num {
  font-size: 1.5rem;
  font-weight: 800;
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* ============================================================
           COMPONENTS
        ============================================================ */
.section {
  padding: 5rem 0;
}

.section.bg-soft {
  background: #f1f5f9;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lead {
  font-size: 1.125rem;
  color: #64748b;
  margin-top: 1rem;
}

/* Form */
.hero-form {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.form-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--brand-primary), var(--brand-accent));
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.input-group {
  position: relative;
}

.input-group.full {
  grid-column: 1/-1;
}

.input {
  width: 100%;
  padding: 1rem 0.8rem 0.4rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-weight: 600;
  outline: none;
  transition: all .2s;
}

.input:focus {
  background: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.input-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all .2s;
  pointer-events: none;
}

.input:focus+label,
.input:not(:placeholder-shown)+label {
  top: 0.3rem;
  font-size: 0.7rem;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.textarea {
  min-height: 100px;
  resize: none;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 0.5rem;
}

.hero-mini-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* Marquee */
.marquee {
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--tx);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-item i {
  color: var(--ic);
}

/* Cards & Grids */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.feature-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.feature ul {
  margin: 1rem 0 1.5rem;
  list-style: none;
  padding: 0;
}

.feature li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature li i {
  color: #10b981;
  font-size: 0.8rem;
}

.link {
  color: var(--brand-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media(max-width:768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.stat {
  padding: 1.5rem;
  text-align: center;
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.stat-sub {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ZigZag */
.zigzag {
  display: grid;
  gap: 4rem;
}

.zig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media(max-width:768px) {
  .zig {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

.step {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #0f172a;
  color: #fff;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.zig h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.zig p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zig-art {
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.art-ico {
  font-size: 4rem;
  color: var(--c);
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.art-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.art-sub {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* NEW SECTIONS STYLES */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.expert-card {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.expert-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #cbd5e1;
}

.expert-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.expert-role {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.expert-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.e-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  background: #f1f5f9;
  border-radius: 4px;
  font-weight: 700;
  color: #475569;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.story-card {
  padding: 2rem;
  border-left: 4px solid var(--brand-primary);
}

.story-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.story-tag {
  background: var(--bg);
  color: var(--fg);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.story-body {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.story-stat {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.9rem;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.g-item {
  padding: 2rem 1rem;
}

.g-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.g-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.g-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why {
  padding: 1.5rem;
}

.why-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.country {
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flag {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cname {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.9rem;
}

.ctime {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 0.2rem;
}

@media(max-width:1024px) {

  .why-grid,
  .countries-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Testimonial Marquee specific */
.testi-marquee {
  padding: 2rem 0;
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.testi-card {
  width: 350px;
  flex-shrink: 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testi-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.testi-top i {
  color: var(--ic);
  font-size: 1.5rem;
}

.testi-stars {
  color: #f59e0b;
  font-size: 0.8rem;
}

.testi-card h4 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.testi-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
}

.testi-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
}

.testi-user b {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.testi-user span {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media(max-width:768px) {
  .faq {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  overflow: hidden;
  transition: all 0.3s;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q {
  font-weight: 800;
  font-size: 1.05rem;
  color: #0f172a;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-primary);
  color: #fff;
}

.faq-item.open .faq-q {
  color: var(--brand-primary);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

.faq-content {
  overflow: hidden;
}

.faq-content p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

.faq-tags {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mini-tag {
  font-size: 0.7rem;
  background: #eff6ff;
  color: #3b82f6;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA & Footer */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  gap: 2rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: var(--radius-2xl);
}

@media(max-width:768px) {
  .cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

.cta h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.cta-right {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer {
  background: #020617;
  color: #94a3b8;
  padding: 4rem 0 1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media(max-width:1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--brand-primary);
}

.footer-col h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-wa {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  background: #22c55e;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem !important;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-mini-links {
  display: flex;
  gap: 1rem;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(900px, 95vw);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 90;
  overflow: hidden;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-head {
  background: #f8fafc;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-title {
  font-weight: 800;
  font-size: 1.2rem;
  color: #0f172a;
}

.mega-subtitle {
  font-size: 0.85rem;
  color: #64748b;
}

.mega-body {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.mega-side {
  padding: 1.5rem;
  border-right: 1px solid #e2e8f0;
}

.mega-filter {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.25rem;
  cursor: pointer;
  border: none;
  background: transparent;
}

.mega-filter:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.mega-filter.is-active {
  background: #eff6ff;
  color: var(--brand-primary);
}

.mega-main {
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.subject-item {
  display: block;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.1s;
  text-decoration: none;
}

.subject-item:hover {
  border-color: var(--brand-primary);
  background: #eff6ff;
  color: var(--brand-primary);
}

/* ============================================================
   DRAWER (Sidebar Menu)
============================================================ */

/* ===== Extracted <style> block #2 ===== */
.shimmer-text {
  background: linear-gradient(90deg, #e2e8f0 0%, #ffffff 50%, #e2e8f0 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.top-badge {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}


/* ===== Extracted <style> block #3 ===== */
/* Grid Layout: 2 columns on Desktop */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Mobile Fix: Force 1 column on screens smaller than 768px */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .input-group.full {
    grid-column: 1 / -1;
  }
}

/* Input Styling Fixes */
.input {
  color: #0f172a !important;
  /* FIX: Force Dark Text Color */
  caret-color: #6366f1;
  /* Cursor color matches brand */
}

/* Date Input Specific Fixes */
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  min-height: 52px;
  /* Enforce height for mobile taps */
  padding-top: 1.1rem;
  /* Push text down slightly */
  line-height: 1.2;
  color: #0f172a !important;
  /* FIX: Force Dark Text for Date */
}

/* Ensure label stays up for Date inputs so it doesn't cover the value */
input[type="date"]:focus+label,
input[type="date"]:valid+label {
  top: 0.3rem;
  font-size: 0.7rem;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* ===== Extracted <style> block #4 ===== */
.stats-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card-new {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.stat-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  border-color: var(--accent-color);
}

/* Icon styling */
.stat-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card-new:hover .stat-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-color);
  color: #fff;
}

/* Typography */
.stat-val {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #334155;
  margin-bottom: 0.5rem;
}

.stat-detail {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}


/* ===== Extracted <style> block #5 ===== */
/* Desktop Grid - Default */
.svc-grid {
  display: grid;
  /* FIX 1: Reduced min-width to 300px to fit standard phones better, keeps 3 columns on large screens */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.svc-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
}

/* Colorful Top Bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--svc-color);
}

/* Icons */
.svc-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--svc-bg);
  color: var(--svc-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon-box {
  transform: scale(1.1) rotate(-5deg);
}

/* Typography */
.svc-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.svc-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Feature List */
.svc-features {
  margin: 0 0 2rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 Column Layout */
  gap: 0.75rem;
}

.svc-features li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.svc-features li i {
  color: #22c55e;
  font-size: 0.8rem;
}

/* Button */
.svc-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.svc-btn:hover {
  background: var(--svc-color);
  color: #fff;
  border-color: var(--svc-color);
}

/* Badge */
.svc-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #0f172a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FIX 2: MOBILE SPECIFIC ADJUSTMENTS */
@media (max-width: 768px) {
  .svc-grid {
    display: flex;
    /* Switch to flex column to prevent grid overflow issues */
    flex-direction: column;
    gap: 1.5rem;
    /* Reduce gap */
  }

  .svc-card {
    padding: 1.5rem;
    /* Reduce padding significantly to save space */
    border-radius: 16px;
  }

  .svc-icon-box {
    width: 52px;
    height: 52px;
    /* Smaller icon container */
    font-size: 1.4rem;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .svc-title {
    font-size: 1.25rem;
  }

  /* Slightly smaller title */
  .svc-desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .svc-features {
    grid-template-columns: 1fr;
    /* 1 column features on very small screens for readability */
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  /* Keep 2 columns if screen is wide enough (modern phones) */
  @media (min-width: 380px) {
    .svc-features {
      grid-template-columns: 1fr 1fr;
    }
  }
}


/* ===== Extracted <style> block #6 ===== */
.adv-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.adv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 968px) {
  .adv-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .adv-row.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .adv-content {
    align-items: center;
  }

  .adv-tags {
    justify-content: center;
  }
}

.adv-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.adv-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.adv-h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.adv-p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.adv-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.adv-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.adv-tag i {
  color: #10b981;
  margin-right: 5px;
}

/* Visual Side Styling */
.adv-visual {
  position: relative;
  height: 350px;
  width: 100%;
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

/* Floating Elements for Visuals */
.float-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  position: relative;
  z-index: 2;
  max-width: 280px;
  animation: float-slow 6s infinite ease-in-out;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e0e7ff;
  color: #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}


/* ===== Extracted <style> block #7 ===== */
/* Background Pattern */
.world-map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#1e293b 2px, transparent 2px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

/* Grid Layout */
.c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Dark Card Styling */
.c-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.c-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

/* Flag & Text */
.c-flag {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.c-content {
  flex: 1;
}

.c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.c-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.c-tz {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.c-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Pulsing Dot Animation */
.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.c-spec {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.4rem;
  display: block;
}


/* ===== Extracted <style> block #8 ===== */
.trust-header {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
  /* FIX: Allows wrapping on very small screens */
  justify-content: center;
}

.trust-score {
  font-weight: 800;
  color: #0f172a;
  font-size: 1.1rem;
}

.trust-stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
}

.review-grid {
  display: grid;
  /* FIX: Reduced min-width from 320px to 280px to fit mobile screens */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-primary);
}

/* Colorful top border for visual pop */
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #e2e8f0, #f1f5f9);
  transition: background 0.3s;
}

.review-card:hover::before {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.rc-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.rc-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 4px;
}

.rc-date {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  white-space: nowrap;
}

.rc-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.rc-body p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.rc-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
}

.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  /* FIX: Prevents avatar squishing */
}

.rc-info b {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

.rc-info span {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.rc-icon {
  margin-left: auto;
  color: #e2e8f0;
  font-size: 1.5rem;
}

/* FIX: Mobile Optimization */
@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
    /* Force single column stack */
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
    /* Reduce padding to save space */
  }

  .trust-header {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 16px;
  }

  .trust-header span {
    display: none;
  }

  /* Hide separator pipe on mobile */
}


/* ===== Extracted <style> block #9 ===== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns on desktop */
  gap: 1.5rem;
  margin-top: 2rem;
}

.p-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.p-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.p-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f8fafc;
  color: var(--brand-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.p-card:hover .p-icon {
  background: var(--brand-primary);
  color: #fff;
}

.p-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.p-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* MOBILE OPTIMIZATION: 2x2 GRID */
@media (max-width: 768px) {
  .promise-grid {
    grid-template-columns: 1fr 1fr;
    /* Forces 2 columns on mobile */
    gap: 0.75rem;
    /* Tighter gap */
  }

  .p-card {
    padding: 1.25rem 0.75rem;
    /* Smaller padding */
  }

  .p-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .p-title {
    font-size: 0.95rem;
  }

  .p-desc {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}


/* ===== Extracted <style> block #10 ===== */
.faq-item.open .faq-panel {
  grid-template-rows: 1fr;
}


/* ============================================================
   MISSING STYLES PATCH (NAV, MEGA MENU, MOBILE DRAWER, GRIDS)
   Paste at END of style.css
   ============================================================ */

/* Basic link hygiene */
a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(99, 102, 241, .35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Topbar effects */
.top-badge {
  background: linear-gradient(90deg, rgba(99, 102, 241, .35), rgba(236, 72, 153, .35));
  border: 1px solid rgba(129, 140, 248, .35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
}

.shimmer-text {
  background: linear-gradient(90deg, #fff, #c7d2fe, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
}

.nav-inner {
  position: relative;
}

.nav-links a:hover {
  color: #0f172a;
}

.brand img {
  display: block;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-menu {
  position: fixed;
  top: calc(70px + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(980px, calc(100vw - 2rem));
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, .18);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  overflow: hidden;
  z-index: 60;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, rgba(99, 102, 241, .06), rgba(255, 255, 255, 0));
}

.mega-title {
  font-weight: 900;
  color: #0f172a;
  font-size: 1rem;
}

.mega-subtitle {
  color: #64748b;
  font-weight: 600;
  font-size: .85rem;
  margin-top: .2rem;
}

.mega-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 420px;
}

.mega-side {
  padding: 1rem;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mega-filter {
  width: 100%;
  text-align: left;
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 800;
  color: #475569;
  cursor: pointer;
  transition: all .15s ease;
}

.mega-filter:hover {
  background: #fff;
  border-color: #e2e8f0;
}

.mega-filter.is-active {
  background: #fff;
  border-color: rgba(99, 102, 241, .35);
  color: #4338ca;
  box-shadow: 0 10px 25px rgba(2, 6, 23, .06);
}

.mega-main {
  padding: 1rem;
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  max-height: 430px;
  overflow: auto;
  padding-right: .25rem;
}

.subject-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .85rem .95rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.subject-item:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, .35);
  box-shadow: 0 14px 40px rgba(2, 6, 23, .08);
}

@media (max-width: 1024px) {
  .mega-menu {
    display: none;
  }

  /* keep it desktop-only since you already have drawer */
}

/* ============================================================
   MOBILE BACKDROP + DRAWER
   ============================================================ */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
  z-index: 45;
}

.backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-link:hover {
  filter: brightness(.98);
}

body.no-scroll {
  overflow: hidden;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .blob,
  .marquee-track {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   STATS (Numbers that build trust)
   ============================================================ */
.stats-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .stats-enhanced-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .stats-enhanced-grid {
    grid-template-columns: 1fr;
  }
}

.stat-card-new {
  position: relative;
  padding: 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, .9);
  background: #fff;
  box-shadow: 0 18px 50px rgba(2, 6, 23, .06);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.stat-card-new::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--bg-light, #eef2ff);
  filter: blur(0);
  opacity: .9;
}

.stat-card-new:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, .25);
  box-shadow: 0 26px 70px rgba(2, 6, 23, .10);
}

.stat-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--bg-light, #eef2ff);
  color: var(--accent-color, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.stat-val {
  display: block;
  font-weight: 900;
  font-size: 2rem;
  color: #0f172a;
}

.stat-name {
  display: block;
  font-weight: 900;
  color: #0f172a;
  margin-top: .25rem;
}

.stat-detail {
  color: #64748b;
  font-weight: 600;
  margin-top: .5rem;
  line-height: 1.55;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  position: relative;
  padding: 1.7rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 18px 55px rgba(2, 6, 23, .06);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, .25);
  box-shadow: 0 26px 70px rgba(2, 6, 23, .10);
}

.svc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, .12);
  color: #4338ca;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.svc-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--svc-bg, #eef2ff);
  color: var(--svc-color, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.svc-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 .5rem;
}

.svc-desc {
  color: #64748b;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 1.1rem;
}

.svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: .5rem;
}

.svc-features li {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: #334155;
  font-weight: 700;
}

.svc-features i {
  color: #22c55e;
  font-size: .9rem;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  background: #0f172a;
  color: #fff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.svc-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   ADVANTAGE ROWS
   ============================================================ */
.adv-grid {
  display: grid;
  gap: 2.5rem;
}

.adv-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}

.adv-row.reverse {
  grid-template-columns: .8fr 1.2fr;
}

@media (max-width: 1024px) {

  .adv-row,
  .adv-row.reverse {
    grid-template-columns: 1fr;
  }

  .adv-row.reverse {
    display: flex;
    flex-direction: column;
  }
}

.adv-content {
  max-width: 720px;
}

.adv-label {
  display: inline-block;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, .12);
  color: #4338ca;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.adv-h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 .8rem;
  letter-spacing: -.02em;
}

.adv-p {
  color: #475569;
  font-weight: 600;
  line-height: 1.75;
  margin: 0 0 1.2rem;
}

.adv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0 0 1.4rem;
}

.adv-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-weight: 800;
  color: #334155;
}

.adv-tag i {
  color: #22c55e;
}

.adv-visual {
  display: flex;
  justify-content: center;
}

.float-card {
  width: min(360px, 100%);
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(226, 232, 240, .9);
  box-shadow: 0 22px 65px rgba(2, 6, 23, .10);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.fc-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #e0e7ff;
  color: #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* ============================================================
   COUNTRIES (Dark section)
   ============================================================ */
.world-map-bg {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    radial-gradient(circle at 20% 10%, rgba(99, 102, 241, .55), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(236, 72, 153, .45), transparent 42%),
    radial-gradient(circle at 50% 85%, rgba(245, 158, 11, .40), transparent 46%);
  pointer-events: none;
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .c-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .c-grid {
    grid-template-columns: 1fr;
  }
}

.c-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: rgba(2, 6, 23, .35);
  border: 1px solid rgba(148, 163, 184, .18);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease;
}

.c-card:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 140, 248, .35);
}

.c-flag {
  font-size: 2rem;
  width: 48px;
  text-align: center;
}

.c-name {
  font-weight: 900;
  color: #fff;
}

.c-tz {
  font-size: .75rem;
  font-weight: 900;
  color: #cbd5e1;
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(148, 163, 184, .2);
  padding: .25rem .55rem;
  border-radius: 999px;
}

.c-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.c-status {
  margin-top: .35rem;
  font-weight: 800;
  color: #cbd5e1;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .18);
  animation: live 1.6s ease-in-out infinite;
}

@keyframes live {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: .75;
  }
}

.c-spec {
  display: block;
  margin-top: .35rem;
  color: #94a3b8;
  font-weight: 700;
  font-size: .85rem;
}

/* ============================================================
   REVIEWS GRID
   ============================================================ */
.trust-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.trust-stars {
  color: #f59e0b;
}

.trust-score {
  font-weight: 900;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: .35rem .7rem;
  border-radius: 999px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 18px 55px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, .25);
  box-shadow: 0 26px 70px rgba(2, 6, 23, .10);
}

.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rc-stars {
  color: #f59e0b;
  font-size: .85rem;
}

.rc-verified {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .25rem;
  font-weight: 900;
  font-size: .78rem;
  color: #16a34a;
}

.rc-date {
  color: #94a3b8;
  font-weight: 800;
  font-size: .85rem;
  white-space: nowrap;
}

.rc-body h4 {
  margin: 0 0 .5rem;
  font-weight: 900;
  color: #0f172a;
}

.rc-body p {
  margin: 0;
  color: #475569;
  font-weight: 600;
  line-height: 1.7;
}

.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #eef2f7;
}

.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #e2e8f0;
}

.rc-info b {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.rc-info span {
  display: block;
  color: #94a3b8;
  font-weight: 800;
  font-size: .8rem;
}

.rc-icon {
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* ============================================================
   PROMISE GRID
   ============================================================ */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1024px) {
  .promise-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

.p-card {
  padding: 1.6rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 18px 55px rgba(2, 6, 23, .06);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.p-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, .25);
  box-shadow: 0 26px 70px rgba(2, 6, 23, .10);
}

.p-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin: 0 auto 1rem;
  background: #dcfce7;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.p-title {
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 .45rem;
}

.p-desc {
  margin: 0;
  color: #64748b;
  font-weight: 700;
  line-height: 1.6;
}

/* FAQ open state fix (your CSS was missing this) */
.faq-item.open .faq-panel {
  grid-template-rows: 1fr;
}


/* ============================================================
   NAV FIX OVERRIDES (Mega menu + Mobile drawer)
   These overrides ensure JS 'is-open' works and mega menu centers
   ============================================================ */

#mobileMenu.is-open {
  transform: translateX(0) !important;
}

@media (min-width: 1025px) {
  #megaMenu.mega-menu {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) translateY(10px) !important;
    top: calc(70px + 10px) !important;
    z-index: 1000 !important;
  }

  #megaMenu.mega-menu.is-open {
    transform: translateX(-50%) translateY(0) !important;
  }
}


/* Backdrop should sit above sticky nav */
.backdrop {
  z-index: 9998 !important;
}



/* =============================================
   MEGA MENU SCROLL & USABILITY
   ============================================= */
.mega-menu {
  max-height: calc(100vh - 90px);
  overflow: hidden;
}

.mega-body {
  max-height: calc(100vh - 240px);
  overflow: hidden;
}

.mega-main {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.25rem;
  /* keeps scrollbar from hugging content */
}

/* Base image defaults */
img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   MOBILE MENU FIX (FINAL)
   ============================================================ */

/* The Dark Overlay */
#mobileBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  /* Dark slate tint */
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobileBackdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* The Side Drawer */
#mobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #ffffff;
  z-index: 9999;

  /* Animation Logic */
  transform: translateX(100%);
  visibility: hidden; /* FIX: Hides element from touch/scroll when closed */
  
  /* Transition: Wait 0.3s before hiding visibility so the slide-out animation plays first */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.3s;
  
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);

  /* Layout */
  display: flex;
  flex-direction: column;
}

/* Open State */
#mobileMenu.is-open {
  transform: translateX(0) !important;
  visibility: visible; /* FIX: Make visible instantly when opening */
  
  /* Transition: No delay on visibility when opening */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

/* Prevent scrolling main body when menu is open */
body.no-scroll {
  overflow: hidden;
  touch-action: none;
}