:root {
  --brand: #1e5fb4;
  --brand-dark: #143f7a;
  --brand-light: #3a8bcf;
  --brand-glow: #5fa3df;
  --accent: #f47c20;
  --accent-dark: #d6651a;
  --accent-light: #ff9d5a;
  --ink: #1a2942;
  --muted: #5a6b7d;
  --bg: #ffffff;
  --bg-soft: #faf7f2;
  --bg-band: #f3ede4;
  --border: #e8e2d6;
  --success: #2e9d6a;
  --danger: #dc3545;
  --shadow-sm: 0 4px 12px rgba(30, 95, 180, 0.06);
  --shadow: 0 12px 40px rgba(30, 95, 180, 0.1);
  --shadow-lg: 0 25px 60px rgba(30, 95, 180, 0.18);
  --shadow-gold: 0 10px 30px rgba(244, 124, 32, 0.35);
  --shadow-glow: 0 0 40px rgba(30, 95, 180, 0.4);
  --radius: 16px;
  --grad-brand: linear-gradient(
    135deg,
    var(--brand) 0%,
    var(--brand-light) 100%
  );
  --grad-gold: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  --grad-mesh:
    radial-gradient(at 20% 20%, #0a3d62, transparent 50%),
    radial-gradient(at 80% 80%, #1a6fb0, transparent 50%),
    radial-gradient(at 50% 100%, #f5a623, transparent 60%);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--accent);
  color: #1a1a1a;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--grad-brand);
  border-radius: 10px;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  color: var(--brand);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 0.5rem;
}
h3 {
  font-size: 1.25rem;
}
a {
  color: var(--brand);
  text-decoration: none;
  transition: 0.25s;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.bn {
  font-family: "Hind Siliguri", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}
.btn:hover::before {
  width: 400px;
  height: 400px;
}
.btn-primary {
  background: var(--grad-gold);
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(245, 166, 35, 0.55);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-dark {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.eyebrow i {
  font-size: 0.7rem;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section-soft {
  background: var(--bg-soft);
}
.section-dark {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
}
.section-dark h2 {
  color: #fff;
}
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-title p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.08rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--grad-gold);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s;
}

/* Cursor follower */
.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
  transition: transform 0.15s;
  opacity: 0;
}
@media (hover: hover) {
  .cursor-dot {
    opacity: 0.6;
  }
}

/* Announce bar */
.announce {
  background: var(--grad-gold);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.announce::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 4s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.announce i {
  margin-right: 8px;
}
.announce a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 6px;
}

/* Topbar */
.topbar {
  background: var(--brand-dark);
  color: #cfe0ef;
  font-size: 0.85rem;
  padding: 9px 0;
}
.topbar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar a {
  color: #cfe0ef;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover {
  color: var(--accent);
}
.topbar i {
  color: var(--accent);
  margin-right: 6px;
}
.topbar .social a {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}
.topbar .social a i {
  color: #fff;
  margin: 0;
}
.topbar .social a:hover {
  background: var(--accent);
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}
header.scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins";
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--brand);
}
.logo-img {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  transition: transform 0.3s;
}
.logo:hover .logo-img {
  transform: scale(1.03);
}
.logo--footer {
  display: inline-block;
  margin-bottom: 18px;
}
.logo-img--footer {
  height: 52px;
}
.logo-mark {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  transition: 0.3s;
}
.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.05);
}
.logo span {
  color: var(--accent);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo .word-en {
  color: var(--accent-dark);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  position: relative;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: 0.3s;
  transform: translateX(-50%);
}
.nav-links > li > a:hover {
  color: var(--brand);
}
.nav-links > li > a:hover::after {
  width: 70%;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  border: 1px solid var(--border);
}
.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}
.dropdown li a i {
  width: 32px;
  height: 32px;
  background: var(--bg-soft);
  color: var(--brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: 0.3s;
}
.dropdown li a:hover {
  background: var(--bg-soft);
  color: var(--brand);
  transform: translateX(4px);
}
.dropdown li a:hover i {
  background: var(--grad-brand);
  color: #fff;
}
.dropdown li a .price-tag {
  margin-left: auto;
  background: #e6f7ee;
  color: var(--success);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brand);
  cursor: pointer;
}

/* HERO */
.hero {
  background: linear-gradient(
    135deg,
    var(--brand-dark) 0%,
    var(--brand) 50%,
    var(--brand-light) 100%
  );
  color: #fff;
  padding: 90px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.22) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
  animation: float 9s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 70%
  );
  bottom: -250px;
  left: -200px;
  border-radius: 50%;
  animation: float 11s ease-in-out infinite reverse;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 40px) scale(1.05);
  }
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.07) 1px,
    transparent 0
  );
  background-size: 32px 32px;
  opacity: 0.6;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold);
  border-radius: 2px;
  opacity: 0.4;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #e0ecf6;
  margin-bottom: 34px;
  max-width: 580px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.avatar-stack {
  display: flex;
}
.avatar-stack .a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--brand);
  margin-left: -14px;
  background: linear-gradient(135deg, #ffb84d, #ff7e00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.avatar-stack .a:first-child {
  margin-left: 0;
}
.trust-text strong {
  font-size: 1.15rem;
  display: block;
  color: #fff;
}
.trust-text small {
  color: #cde0ef;
  font-size: 0.88rem;
}
.star-row {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: rotate(-2deg) rotateY(-5deg);
  transition: 0.6s;
}
.hero-card:hover {
  transform: rotate(0) rotateY(0);
}
.hero-card h4 {
  color: var(--brand);
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.hero-card .band-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hero-card .band-row:last-of-type {
  border-bottom: none;
}
.hero-card .band-row span:first-child {
  color: var(--muted);
  font-weight: 500;
}
.band {
  background: var(--grad-brand);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.88rem;
  min-width: 55px;
  text-align: center;
}
.floater {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
  animation: bob 4s ease-in-out infinite;
}
.floater i {
  background: var(--grad-gold);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.floater.f1 {
  top: -25px;
  left: -40px;
}
.floater.f2 {
  bottom: -25px;
  right: -30px;
  animation-delay: 2s;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave-divider svg {
  width: 100%;
  height: 90px;
  display: block;
}

/* STATS */
.stats {
  background: #fff;
  margin-top: -70px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  z-index: 5;
  border: 1px solid var(--border);
}
.stat {
  text-align: center;
  padding: 12px 10px;
  border-right: 1px solid var(--border);
  transition: 0.3s;
}
.stat:hover {
  transform: translateY(-4px);
}
.stat:last-child {
  border-right: none;
}
.stat .ico-wrap {
  width: 54px;
  height: 54px;
  background: var(--bg-soft);
  color: var(--brand);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: 0.3s;
}
.stat:hover .ico-wrap {
  background: var(--grad-brand);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.stat .n {
  font-family: "Poppins";
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .l {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 500;
}

/* GRID */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Marquee strip */
.marquee {
  background: var(--bg-soft);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: slide 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: "Poppins";
  font-weight: 700;
  color: var(--muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.marquee-track span i {
  color: var(--accent);
  font-size: 1.3rem;
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* DECISION HELPER */
.decision-band {
  background: linear-gradient(135deg, #fff 0%, var(--bg-band) 100%);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.decision-band::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}
.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.dq {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  position: relative;
}
.dq:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.dq .ico {
  width: 64px;
  height: 64px;
  background: var(--bg-soft);
  color: var(--brand);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s;
}
.dq:hover .ico {
  background: var(--grad-gold);
  color: #fff;
  transform: scale(1.1) rotate(-8deg);
}
.dq h4 {
  color: var(--brand);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.dq small {
  color: var(--muted);
  font-size: 0.85rem;
}
.dq .recommend {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #1a1a1a;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
}

/* SCORE CALCULATOR */
.calc-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 24px;
  padding: 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.calc-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.15),
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
}
.calc-band h2 {
  color: #fff;
  margin-bottom: 8px;
}
.calc-band > .lead {
  color: #cfe0ef;
  margin-bottom: 30px;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.calc-form {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.calc-form label {
  display: block;
  font-size: 0.85rem;
  color: #cfe0ef;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calc-form select,
.calc-form input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px;
  font-family: Inter;
  font-size: 0.95rem;
  margin-bottom: 18px;
  outline: none;
}
.calc-form select option {
  background: var(--brand-dark);
  color: #fff;
}
.calc-form select:focus,
.calc-form input:focus {
  border-color: var(--accent);
}
.calc-result {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.calc-result .label {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calc-result .target-band {
  font-family: Poppins;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin: 8px 0;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.calc-result .timeline {
  color: var(--accent-dark);
  font-weight: 600;
  margin: 12px 0 20px;
}
.calc-result .rec {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  margin-top: 16px;
}
.calc-result .rec strong {
  color: var(--brand);
  display: block;
  font-family: Poppins;
  font-size: 1rem;
  margin-bottom: 4px;
}
.calc-result .rec small {
  color: var(--muted);
  font-size: 0.85rem;
}

/* WHY FEATURES */
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}
.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature:hover::before {
  transform: scaleX(1);
}
.feature .ico {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  transition: 0.4s;
}
.feature:hover .ico {
  transform: rotate(-8deg) scale(1.08);
  background: var(--grad-gold);
}
.feature h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.feature p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* COURSES */
.course {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.course:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.course .top {
  height: 180px;
  background: var(--grad-brand);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.course .top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
}
.course .top i {
  font-size: 3.5rem;
  opacity: 0.95;
  z-index: 1;
  transition: 0.4s;
}
.course:hover .top i {
  transform: scale(1.18) rotate(-8deg);
}
.course .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--grad-gold);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  z-index: 2;
}
.course .body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course h3 {
  color: var(--brand);
  margin-bottom: 10px;
  font-size: 1.22rem;
}
.course .desc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
  flex: 1;
}
.course .meta {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0 0 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.course .meta span i {
  color: var(--accent);
  margin-right: 4px;
}
.course .price-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  padding: 14px;
  background: var(--bg-soft);
  border-radius: 12px;
}
.course .price-block .modes small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.course .price-block .modes span {
  display: block;
  font-family: Poppins;
  font-weight: 700;
  color: var(--brand);
}
.course .price-block .modes span small {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: line-through;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
  font-weight: 400;
}
.course .price-block .discount {
  background: var(--grad-gold);
  color: #1a1a1a;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  align-self: start;
}

.mode-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.mode-tabs button {
  padding: 11px 26px;
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  transition: 0.3s;
  font-family: "Inter";
}
.mode-tabs button:hover {
  border-color: var(--brand-light);
  color: var(--brand);
}
.mode-tabs button.active {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}

/* COMPARE */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.compare th,
.compare td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare th {
  background: var(--grad-brand);
  color: #fff;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 0.95rem;
}
.compare th:first-child,
.compare td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}
.compare tbody tr:hover {
  background: var(--bg-soft);
}
.compare .yes {
  color: var(--success);
  font-size: 1.2rem;
}
.compare .no {
  color: #c44;
  font-size: 1.2rem;
}
.compare .featured {
  background: rgba(245, 166, 35, 0.06);
}
.compare .featured th {
  background: var(--grad-gold);
  color: #1a1a1a;
}

/* MOCK BOOK */
.mock-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.mock-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}
.mock-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.mock-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff, rgba(245, 166, 35, 0.05));
}
.mock-card.featured::before {
  content: "BEST VALUE";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.mock-card .count {
  font-family: Poppins;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand);
}
.mock-card .label {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.mock-card .price {
  font-family: Poppins;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

/* JOURNEY TICKET */
.journey {
  background: linear-gradient(135deg, var(--bg-band), #fff);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.journey::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.08),
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
}
.journey ul {
  list-style: none;
  margin-top: 24px;
}
.journey ul li {
  padding: 13px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 500;
}
.journey ul li i {
  color: #fff;
  background: var(--success);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.ticket {
  background: #fff;
  border: 2px dashed var(--brand);
  border-radius: 20px;
  padding: 34px;
  position: relative;
  box-shadow: var(--shadow);
  transition: 0.4s;
}
.ticket:hover {
  transform: rotate(2deg) scale(1.02);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--bg-soft);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 2px dashed var(--brand);
}
.ticket::before {
  left: -14px;
}
.ticket::after {
  right: -14px;
}
.ticket .from-to {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.ticket .from-to small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.ticket .from-to strong {
  display: block;
  font-family: "Poppins";
  font-size: 1.6rem;
  color: var(--brand);
  margin-top: 6px;
  font-weight: 800;
}
.ticket .plane {
  font-size: 2rem;
  color: var(--accent);
  align-self: center;
}
.ticket .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 0.92rem;
  border-top: 1px dashed var(--border);
}
.ticket .detail-row strong {
  color: var(--brand);
  font-family: "Poppins";
}

/* HOW IT WORKS - timeline */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 30px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-light), var(--accent));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step .num {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 3px solid var(--accent);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins;
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.step:hover .num {
  background: var(--grad-gold);
  color: #fff;
  transform: scale(1.1);
}
.step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.step p {
  color: var(--muted);
  font-size: 0.85rem;
}

/* MENTORS */
.mentor {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.4s;
}
.mentor:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.mentor .ph {
  height: 240px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.mentor .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 61, 98, 0.4));
}
.mentor h3 {
  margin: 18px 0 4px;
  font-size: 1.15rem;
}
.mentor p.role {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.mentor .mscore {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0 16px;
  margin-bottom: 14px;
}
.mentor .socials {
  padding: 0 0 22px;
}
.mentor .socials a {
  margin: 0 5px;
  width: 34px;
  height: 34px;
  background: var(--bg-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.88rem;
  transition: 0.3s;
}
.mentor .socials a:hover {
  background: var(--grad-brand);
  color: #fff;
  transform: translateY(-3px);
}

/* TESTIMONIALS */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--border);
  position: relative;
  transition: 0.4s;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -15px;
  left: 24px;
  font-size: 6rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.4;
}
.testimonial .stars {
  color: var(--accent);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.testimonial p {
  color: var(--ink);
  margin: 10px 0 18px;
  font-size: 0.97rem;
  line-height: 1.7;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial .who .av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial .who strong {
  display: block;
  color: var(--brand);
  font-size: 1rem;
}
.testimonial .who small {
  color: var(--muted);
  font-size: 0.85rem;
}
.score-badge {
  display: inline-block;
  background: var(--grad-gold);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 6px;
}

/* SUCCESS */
.success-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.s-card {
  background: var(--grad-brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.s-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.3), transparent 70%);
  top: -40px;
  right: -40px;
  border-radius: 50%;
}
.s-card:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.s-card .av {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}
.s-card strong {
  position: relative;
  z-index: 1;
  display: block;
}
.s-card .score {
  font-family: "Poppins";
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  margin: 6px 0;
  position: relative;
  z-index: 1;
}
.s-card small {
  opacity: 0.9;
  font-size: 0.78rem;
  position: relative;
  z-index: 1;
}

/* COUNTRIES */
.countries {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}
.country {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px 12px;
  border-radius: var(--radius);
  transition: 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.country::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}
.country:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.country:hover::after {
  opacity: 0.08;
}
.country .flag {
  font-size: 2.8rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.country:hover .flag {
  transform: scale(1.18);
}
.country strong {
  display: block;
  color: var(--brand);
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}
.country small {
  color: var(--muted);
  font-size: 0.76rem;
  position: relative;
  z-index: 1;
}

/* ACCRED */
.accred {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.accred .item {
  font-family: "Poppins";
  font-weight: 700;
  color: var(--muted);
  font-size: 1.15rem;
  opacity: 0.6;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.accred .item:hover {
  opacity: 1;
  color: var(--brand);
  transform: translateY(-3px);
}
.accred .item i {
  font-size: 1.6rem;
  color: var(--accent);
}

/* EVENTS */
.event {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  transition: 0.4s;
}
.event:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.event .date {
  background: var(--grad-brand);
  color: #fff;
  padding: 22px;
  text-align: center;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event .date .d {
  font-family: "Poppins";
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.event .date .m {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 600;
}
.event .info {
  padding: 20px 24px;
  flex: 1;
}
.event .info h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.event .info .meta {
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.event .info .meta i {
  color: var(--accent);
  margin-right: 4px;
}

/* BLOG */
.blog {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.4s;
}
.blog:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog .img {
  height: 200px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.blog .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3));
}
.blog .img i {
  position: relative;
  z-index: 1;
  transition: 0.4s;
}
.blog:hover .img i {
  transform: scale(1.2) rotate(-6deg);
}
.blog .body {
  padding: 24px;
}
.blog .tag {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--brand);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.blog p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.blog a.read {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}
.blog a.read:hover {
  gap: 10px;
}

/* APP */
.app-band {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-radius: 24px;
  color: #fff;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.app-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.25),
    transparent 70%
  );
  right: -100px;
  top: -150px;
  border-radius: 50%;
}
.app-band::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05),
    transparent 70%
  );
  left: -100px;
  bottom: -100px;
  border-radius: 50%;
}
.app-band > * {
  position: relative;
  z-index: 1;
}
.app-band h2 {
  color: #fff;
  margin-top: 10px;
}
.app-band p {
  color: #cfe0ef;
  margin: 16px 0 26px;
  font-size: 1.02rem;
}
.app-stats {
  display: flex;
  gap: 36px;
  margin: 28px 0;
}
.app-stats div strong {
  display: block;
  font-family: "Poppins";
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 800;
}
.app-stats div small {
  color: #cfe0ef;
  font-size: 0.86rem;
}
.store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-btns a {
  background: #000;
  color: #fff;
  padding: 13px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.store-btns a:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
}
.store-btns a i {
  font-size: 1.8rem;
}
.phone-mock {
  text-align: center;
  font-size: 12rem;
  color: var(--accent);
  position: relative;
  animation: bob 4s ease-in-out infinite;
}

/* FAQ */
.faq {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: 0.3s;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item.open {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.faq-q {
  padding: 20px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--brand);
  font-size: 1rem;
}
.faq-q i {
  transition: 0.4s;
  color: var(--accent);
}
.faq-item.open .faq-q i {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  color: var(--muted);
  font-size: 0.95rem;
}
.faq-item.open .faq-a {
  padding: 0 26px 22px;
  max-height: 400px;
}

/* CTA BAND */
.cta-band {
  background: var(--grad-gold);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
}
.cta-band > * {
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  color: #1a1a1a;
  margin-bottom: 14px;
  font-size: 2.2rem;
}
.cta-band p {
  margin-bottom: 28px;
  font-size: 1.1rem;
  color: #3a2800;
}

/* BRANCHES */
.branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.branch {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: 0.3s;
}
.branch:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.branch .top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.branch .top i {
  width: 48px;
  height: 48px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.branch h4 {
  color: var(--brand);
  margin-bottom: 2px;
}
.branch small {
  color: var(--muted);
}
.branch p {
  font-size: 0.9rem;
  color: var(--ink);
  margin-top: 8px;
}
.branch .meta {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.branch .meta i {
  color: var(--accent);
  margin-right: 4px;
}

/* FOOTER */
footer {
  background: var(--brand-dark);
  color: #cfe0ef;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(245, 166, 35, 0.05),
    transparent 70%
  );
  top: -200px;
  right: -200px;
  border-radius: 50%;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.foot-grid h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.08rem;
  position: relative;
  padding-bottom: 10px;
}
.foot-grid h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.foot-grid p,
.foot-grid a {
  color: #a9c0d4;
  font-size: 0.92rem;
  line-height: 1.95;
}
.foot-grid ul {
  list-style: none;
}
.foot-grid ul li a {
  transition: 0.3s;
  display: inline-block;
}
.foot-grid ul li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.foot-grid .contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.foot-grid .contact-row i {
  color: var(--accent);
  margin-top: 5px;
}
.foot-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
  transition: 0.3s;
}
.foot-social a:hover {
  background: var(--accent);
  color: #1a1a1a;
  transform: translateY(-4px);
}
.newsletter {
  display: flex;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 16px;
  outline: none;
  font-size: 0.9rem;
  font-family: "Inter";
}
.newsletter input::placeholder {
  color: #7a92ab;
}
.newsletter button {
  background: var(--grad-gold);
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.85rem;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.86rem;
  color: #a9c0d4;
}
.foot-bottom a {
  color: #a9c0d4;
}
.foot-bottom a:hover {
  color: var(--accent);
}

/* FLOAT */
.float-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: 0.3s;
  cursor: pointer;
}
.float-cta:hover {
  transform: scale(1.15) rotate(8deg);
}
.float-cta::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.6;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero .container,
  .grid-4,
  .grid-3,
  .grid-2,
  .journey,
  .app-band,
  .foot-grid,
  .decision-grid,
  .calc-grid,
  .steps,
  .success-grid,
  .mock-grid,
  .branches {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }
  .success-grid,
  .countries,
  .mock-grid,
  .branches {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    box-shadow: var(--shadow);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links > li > a {
    padding: 12px 16px;
  }
  .menu-toggle {
    display: block;
  }
  .floater {
    display: none;
  }
  .section {
    padding: 70px 0;
  }
  .journey,
  .app-band,
  .cta-band,
  .decision-band,
  .calc-band {
    padding: 36px;
  }
  .phone-mock {
    font-size: 8rem;
  }
  .steps::before {
    display: none;
  }
}
