/* ============================================
   COURSEWORK NINJA - STYLES
   Complete Landing Page Stylesheet
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
  /* Colors */
  --color-navy: #0B1630;
  --color-navy-light: #1a2744;
  --color-navy-rgb: 11, 22, 48;

  --color-offwhite: #F7F7FB;
  --color-white: #FFFFFF;

  --color-gold: #F4A826;
  --color-gold-hover: #d99520;
  --color-gold-light: rgba(244, 168, 38, 0.1);

  --color-slate: #4B5563;
  --color-slate-light: #6B7280;
  --color-slate-lighter: #9CA3AF;

  --color-border: #E5E7EB;
  --color-border-dark: #D1D5DB;

  --color-teal: #0F766E;
  --color-teal-light: rgba(15, 118, 110, 0.1);

  /* WhatsApp colors */
  --color-wa-green: #25D366;
  --color-wa-dark: #075E54;
  --color-wa-teal: #128C7E;
  --color-wa-light: #DCF8C6;
  --color-wa-blue: #34B7F1;
  --color-wa-bg: #ECE5DD;
  --color-wa-input: #F0F2F5;
  --color-wa-send: #00A884;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width-wide: 1200px;
  --header-height: 72px;
  --header-height-mobile: 64px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11, 22, 48, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 22, 48, 0.08), 0 2px 4px -1px rgba(11, 22, 48, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(11, 22, 48, 0.1), 0 4px 6px -2px rgba(11, 22, 48, 0.05);
  --shadow-xl: 0 20px 40px -10px rgba(11, 22, 48, 0.15);
  --shadow-2xl: 0 25px 50px -12px rgba(11, 22, 48, 0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-slate);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  color: var(--color-navy);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
}


/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: var(--font-medium);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
  border-color: var(--color-gold);
}

.btn--primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-border-dark);
}

.btn--secondary:hover {
  border-color: var(--color-navy);
  background-color: var(--color-offwhite);
}

.btn--large {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
}

.btn--full {
  width: 100%;
}

.btn svg {
  flex-shrink: 0;
}


/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-mobile);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.header--scrolled {
  box-shadow: 0 1px 3px rgba(11, 22, 48, 0.08);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-6);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo-icon {
  height: 40px;
  width: auto;
}

.header__logo-img {
  height: 130px;
  width: auto;
}

.header__logo-text {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  display: none;
}

@media (min-width: 480px) {
  .header__logo-icon {
    height: 44px;
  }

  .header__logo-img {
    height: 140px;
  }

  .header__logo-text {
    display: block;
  }
}

@media (min-width: 1024px) {
  .header__logo-icon {
    height: 48px;
  }

  .header__logo-img {
    height: 150px;
  }

  .header__logo-text {
    font-size: var(--text-2xl);
  }
}

/* Navigation */
.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__link {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-slate);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.header__link:hover {
  color: var(--color-navy);
}

.header__link:hover::after {
  width: 100%;
}

.header__link.active {
  color: var(--color-navy);
}

.header__link.active::after {
  width: 100%;
}

/* Header CTA */
.header__cta {
  display: none;
}

/* Mobile Toggle */
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-navy);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.header__toggle:hover {
  background-color: var(--color-offwhite);
}

.header__toggle-icon--close {
  display: none;
}

.header__toggle[aria-expanded="true"] .header__toggle-icon--menu {
  display: none;
}

.header__toggle[aria-expanded="true"] .header__toggle-icon--close {
  display: block;
}

/* Mobile Menu */
.header__mobile-menu {
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  padding: var(--space-6) var(--space-5);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
  z-index: var(--z-overlay);
}

.header__mobile-menu.is-open {
  transform: translateX(0);
}

.header__mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.header__mobile-link {
  display: block;
  padding: var(--space-4);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  color: var(--color-navy);
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.header__mobile-link:hover {
  background-color: var(--color-offwhite);
}

.header__mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Desktop Header */
@media (min-width: 1024px) {
  .header {
    height: var(--header-height);
  }

  .header__nav {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__toggle {
    display: none;
  }

  .header__mobile-menu {
    display: none;
  }
}


/* ========== HERO SECTION ========== */
.hero {
  padding-top: calc(var(--header-height-mobile) + var(--space-3));
  padding-bottom: 120px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-offwhite) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(244, 168, 38, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero__content {
  max-width: 560px;
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: var(--font-bold);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-6);
  color: var(--color-navy);
}

/* ========== ROTATING TEXT ANIMATION ========== */
.hero__rotating-wrapper {
  display: inline-block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
}

.hero__rotating-words {
  display: flex;
  flex-direction: column;
  position: relative;
  animation: rotateWords 9s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.hero__rotating-word {
  display: block;
  height: 1.2em;
  line-height: 1.2em;
  color: var(--color-gold);
  position: relative;
  width: fit-content;
}

.hero__rotating-word::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 3s ease-in-out infinite;
}

.hero__rotating-word:nth-child(1)::after { animation-delay: 0s; }
.hero__rotating-word:nth-child(2)::after { animation-delay: 3s; }
.hero__rotating-word:nth-child(3)::after { animation-delay: 6s; }

@keyframes rotateWords {
  0%, 30% {
    transform: translateY(0);
  }
  33.33%, 63.33% {
    transform: translateY(-1.2em);
  }
  66.66%, 96.66% {
    transform: translateY(-2.4em);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes underlineIn {
  0%, 5% {
    transform: scaleX(0);
    transform-origin: left;
  }
  15%, 85% {
    transform: scaleX(1);
  }
  95%, 100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-slate);
  margin-bottom: var(--space-8);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero__helper {
  font-size: var(--text-sm);
  color: var(--color-slate-light);
  margin-bottom: var(--space-8);
}

.hero__trust {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  background-color: var(--color-teal-light);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-teal);
}

.hero__trust-icon {
  flex-shrink: 0;
  color: var(--color-teal);
  margin-top: 2px;
}

.hero__trust-text {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-teal);
  margin: 0;
}

/* Hero Visual */
.hero__visual {
  display: none;
  position: relative;
  perspective: 1000px;
}


/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  animation: carouselEnter 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

@keyframes carouselEnter {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-carousel__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.hero-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-carousel__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-carousel__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(11, 22, 48, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

/* Carousel Indicators */
.hero-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.hero-carousel__indicator {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--color-border-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero-carousel__indicator:hover {
  background-color: var(--color-slate-light);
}

.hero-carousel__indicator--active {
  background-color: var(--color-gold);
  width: 28px;
}

/* ========== FLOATING MESSAGES ========== */
.hero-carousel__floating-msg {
  position: absolute;
  z-index: 10;
  opacity: 0;
  animation: floatMsgIn 0.5s ease forwards;
}

.hero-carousel__slide--active .hero-carousel__floating-msg--1 {
  animation-delay: 0.4s;
}

.hero-carousel__slide--active .hero-carousel__floating-msg--2 {
  animation-delay: 0.7s;
}

.hero-carousel__floating-msg--1 {
  top: 12%;
  right: -10px;
}

.hero-carousel__floating-msg--2 {
  bottom: 18%;
  left: -15px;
}

@keyframes floatMsgIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floating-msg {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-navy);
  white-space: nowrap;
  animation: floatBounce 4s ease-in-out infinite;
}

.floating-msg--gold {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

.floating-msg--gold .floating-msg__icon {
  color: var(--color-navy);
}

.floating-msg--teal {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.floating-msg--teal .floating-msg__icon {
  color: var(--color-white);
}

.floating-msg__icon {
  flex-shrink: 0;
  color: var(--color-teal);
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Floating Decorations */
.hero__decoration {
  position: absolute;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero__decoration--1 {
  top: 5%;
  right: -40px;
  animation-delay: 0s;
}

.hero__decoration--2 {
  bottom: 20%;
  right: -30px;
  animation-delay: 2s;
}

.hero__decoration--3 {
  top: 50%;
  left: -20px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Responsive Hero */
@media (min-width: 640px) {
  .hero__ctas {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-height) + var(--space-3));
    padding-bottom: 130px;
  }

  .hero__container {
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-10);
  }

  .hero__visual {
    display: block;
  }
}

@media (min-width: 1280px) {
  .hero__container {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
  }
}


/* ========== WHY CHOOSE US SECTION ========== */
.why-us {
  padding: var(--space-24) 0 var(--space-20);
  background: linear-gradient(180deg, #FAFBFC 0%, var(--color-white) 50%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(11, 22, 48, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(209, 171, 82, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.why-us > .container {
  position: relative;
  z-index: 1;
}

/* Section Header */
.why-us__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.why-us__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.why-us__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.why-us__title span {
  position: relative;
  color: var(--color-gold);
}

.why-us__title span::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--color-gold);
  opacity: 0.3;
  border-radius: 2px;
}

.why-us__subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate);
  max-width: 580px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* USP Cards Container */
.why-us__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

/* USP Card */
.usp-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(11, 22, 48, 0.06);
  box-shadow:
    0 4px 24px -8px rgba(11, 22, 48, 0.08),
    0 0 0 1px rgba(11, 22, 48, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Shine effect on hover */
.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  transition: left 0.7s ease;
  pointer-events: none;
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px -12px rgba(11, 22, 48, 0.12),
    0 0 0 1px rgba(11, 22, 48, 0.04);
}

.usp-card:hover::before {
  left: 100%;
}

/* Featured Card (Middle) */
.usp-card--featured {
  background: linear-gradient(135deg, var(--color-navy) 0%, #162244 100%);
  border: 1px solid rgba(209, 171, 82, 0.2);
  box-shadow:
    0 8px 32px -8px rgba(11, 22, 48, 0.25),
    0 0 0 1px rgba(209, 171, 82, 0.1);
}

.usp-card--featured:hover {
  box-shadow:
    0 32px 64px -16px rgba(11, 22, 48, 0.3),
    0 0 80px -20px rgba(209, 171, 82, 0.2);
}

.usp-card--featured .usp-card__title,
.usp-card--featured .usp-card__text {
  color: var(--color-white);
}

.usp-card--featured .usp-card__text {
  opacity: 0.85;
}

.usp-card--featured .usp-card__proof {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

/* Icon Wrapper */
.usp-card__icon-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.usp-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover .usp-card__icon {
  transform: scale(1.08) rotate(-2deg);
}

.usp-card__icon--navy {
  background: linear-gradient(135deg, #0B1630 0%, #1E3A5F 100%);
  box-shadow:
    0 8px 24px -8px rgba(11, 22, 48, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.usp-card__icon--teal {
  background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
  box-shadow:
    0 8px 24px -8px rgba(13, 148, 136, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.usp-card__icon--gold {
  background: linear-gradient(135deg, #B8941A 0%, #D1AB52 100%);
  box-shadow:
    0 8px 24px -8px rgba(209, 171, 82, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.usp-card__icon svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Badge */
.usp-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: var(--font-bold);
  color: var(--color-teal);
  background: var(--color-teal-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.usp-card__badge--gold {
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-gold) 0%, #E5C46A 100%);
  box-shadow: 0 4px 12px -4px rgba(209, 171, 82, 0.4);
}

/* Card Content */
.usp-card__title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.usp-card__text {
  font-size: var(--text-base);
  color: var(--color-slate);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  flex-grow: 1;
}

/* Proof Line */
.usp-card__proof {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-teal);
  background: var(--color-teal-light);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-top: auto;
  align-self: flex-start;
}

.usp-card__proof svg {
  flex-shrink: 0;
}

/* ========== STATS STRIP ========== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  background: linear-gradient(135deg, var(--color-navy) 0%, #162244 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow:
    0 16px 48px -12px rgba(11, 22, 48, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
}

.stats-strip__number {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: var(--font-bold);
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-strip__label {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stats-strip__divider {
  display: none;
}

/* Responsive */
@media (min-width: 640px) {
  .why-us__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  .stats-strip__divider {
    display: block;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: var(--space-2) 0;
  }

  .stats-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-8) var(--space-10);
  }

  .stats-strip__item {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .usp-card {
    padding: var(--space-10);
  }

  .usp-card__icon {
    width: 80px;
    height: 80px;
  }

  .stats-strip {
    padding: var(--space-10) var(--space-12);
  }
}

@media (min-width: 1024px) {
  .why-us {
    padding: var(--space-32) 0 var(--space-24);
  }

  .why-us__header {
    margin-bottom: var(--space-20);
  }

  .why-us__cards {
    gap: var(--space-8);
    margin-bottom: var(--space-16);
  }

  .usp-card {
    padding: var(--space-10);
  }

  .usp-card__icon {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }

  .usp-card__icon svg {
    width: 40px;
    height: 40px;
  }

  .usp-card__title {
    font-size: 1.5rem;
  }

  .stats-strip {
    padding: var(--space-12) var(--space-16);
  }

  .stats-strip__number {
    font-size: 3rem;
  }
}


/* ========== SERVICES SECTION ========== */
.services {
  position: relative;
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, #050A15 0%, #0B1630 50%, #0D1A3A 100%);
  overflow: hidden;
}

/* Background Elements */
.services__bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.services__bg-glow--1 {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(209, 171, 82, 0.12) 0%, transparent 70%);
}

.services__bg-glow--2 {
  bottom: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
}

.services__bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.services > .container {
  position: relative;
  z-index: 1;
}

/* Header */
.services__header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.services__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.services__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--font-bold);
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.services__title span {
  background: linear-gradient(135deg, var(--color-gold) 0%, #E5C46A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Journey Layout */
.services__journey {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

/* Service Tier */
.service-tier {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Connector */
.service-tier__connector {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-left: var(--space-2);
}

.service-tier__line {
  display: none;
}

.service-tier__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

/* Content Panel */
.service-tier__content {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.92) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 8px 32px -8px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.service-tier__content:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Icon */
.service-tier__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-navy) 0%, #1E3A5F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px -4px rgba(11, 22, 48, 0.3);
}

.service-tier__content:hover .service-tier__icon {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 20px -6px rgba(11, 22, 48, 0.4);
}

/* Tag */
.service-tier__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: var(--font-bold);
  color: var(--color-teal);
  background: var(--color-teal-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.service-tier__tag--gold {
  color: var(--color-navy);
  background: linear-gradient(135deg, var(--color-gold) 0%, #E5C46A 100%);
  box-shadow: 0 2px 8px -2px rgba(209, 171, 82, 0.4);
}

/* Name */
.service-tier__name {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Features List */
.service-tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-grow: 1;
}

.service-tier__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-slate);
}

.service-tier__features svg {
  flex-shrink: 0;
  color: var(--color-teal);
}

/* CTA Button */
.service-tier__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-navy);
  background: transparent;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-tier__cta:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.service-tier__cta svg {
  transition: transform 0.3s ease;
}

.service-tier__cta:hover svg {
  transform: translateX(4px);
}

.service-tier__cta--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8941A 100%);
  color: var(--color-navy);
  border-color: transparent;
  box-shadow: 0 8px 24px -8px rgba(209, 171, 82, 0.4);
}

.service-tier__cta--primary:hover {
  background: linear-gradient(135deg, #E5C46A 0%, var(--color-gold) 100%);
  color: var(--color-navy);
  box-shadow: 0 12px 32px -8px rgba(209, 171, 82, 0.5);
  transform: translateY(-2px);
}

/* Featured Tier */
.service-tier--featured {
  position: relative;
}

.service-tier--featured .service-tier__content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: var(--color-gold);
  border-width: 2px;
  box-shadow:
    0 8px 32px -8px rgba(209, 171, 82, 0.3),
    0 0 0 1px rgba(209, 171, 82, 0.1);
}

.service-tier--featured .service-tier__content:hover {
  border-color: var(--color-gold);
  box-shadow:
    0 20px 48px -12px rgba(209, 171, 82, 0.4),
    0 0 0 1px rgba(209, 171, 82, 0.2);
}

.service-tier--featured .service-tier__dot {
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8941A 100%);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

.service-tier--featured .service-tier__icon {
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8941A 100%);
  color: var(--color-navy);
  box-shadow: 0 4px 12px -4px rgba(209, 171, 82, 0.5);
}

.service-tier__glow {
  display: none;
}

/* Footer */
.services__footer {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services__footer p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-3);
}

.services__footer-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services__footer-link:hover {
  color: var(--color-gold);
}

.services__footer-link svg {
  color: #25D366;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  .services {
    padding: var(--space-32) 0;
  }

  .services__journey {
    flex-direction: row;
    align-items: stretch;
    gap: var(--space-6);
  }

  .service-tier {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .service-tier__connector {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }

  .service-tier__line {
    display: block;
    height: 30px;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 100%);
  }

  .service-tier:first-child .service-tier__line {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 100%);
  }

  .service-tier__content {
    flex: 1;
  }

  .service-tier--featured {
    z-index: 2;
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  .services__header {
    margin-bottom: var(--space-12);
  }

  .services__journey {
    gap: var(--space-8);
  }

  .service-tier__content {
    padding: var(--space-10);
  }

  .service-tier__icon {
    width: 64px;
    height: 64px;
  }

  .service-tier__name {
    font-size: 2rem;
  }

  .service-tier__cta {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
  }
}


/* ========== TESTIMONIALS / SUCCESS STORIES ========== */
.testimonials {
  position: relative;
  padding: var(--space-24) 0;
  background: linear-gradient(180deg, #FAFBFC 0%, var(--color-white) 50%, #F8FAFC 100%);
  overflow: hidden;
}

.testimonials > .container {
  position: relative;
  z-index: 1;
}

/* Header */
.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.testimonials__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.testimonials__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.testimonials__title span {
  position: relative;
  color: var(--color-gold);
}

.testimonials__subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate);
  max-width: 500px;
  margin: 0 auto;
}

/* Carousel Container */
.testimonials__carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto var(--space-10);
  padding: 0 var(--space-16);
}

/* Viewport - clips the overflow */
.testimonials__viewport {
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

/* Track - Horizontal scrolling approach */
.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide */
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}

/* Card */
.testimonial-slide__card {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-8);
  border: 1px solid rgba(11, 22, 48, 0.04);
  box-shadow:
    0 4px 6px -1px rgba(11, 22, 48, 0.03),
    0 10px 20px -5px rgba(11, 22, 48, 0.04),
    0 25px 50px -12px rgba(11, 22, 48, 0.06);
  text-align: center;
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Stars */
.testimonial-slide__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

/* Headline */
.testimonial-slide__headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  line-height: 1.3;
  margin: 0 auto var(--space-5);
  max-width: 600px;
  letter-spacing: -0.02em;
}

.testimonial-slide__headline::before {
  content: '"';
  color: var(--color-gold);
}

.testimonial-slide__headline::after {
  content: '"';
  color: var(--color-gold);
}

/* Text */
.testimonial-slide__text {
  font-size: var(--text-base);
  color: var(--color-slate);
  line-height: 1.7;
  margin: 0 auto var(--space-6);
  max-width: 580px;
}

/* Author */
.testimonial-slide__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  max-width: 320px;
  margin: 0 auto;
}

.testimonial-slide__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.testimonial-slide__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) saturate(0.3);
  transform: scale(1.1);
}

/* Pixelation overlay effect */
.testimonial-slide__avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.03) 3px,
      rgba(255,255,255,0.03) 6px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,0.03) 3px,
      rgba(255,255,255,0.03) 6px
    );
  pointer-events: none;
}

.testimonial-slide__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.testimonial-slide__name {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-navy);
}

.testimonial-slide__degree {
  font-size: var(--text-sm);
  color: var(--color-slate);
}

/* Navigation Arrows */
.testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  box-shadow: 0 4px 20px -4px rgba(11, 22, 48, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonials__nav:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  box-shadow: 0 8px 24px -6px rgba(11, 22, 48, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.testimonials__nav--prev {
  left: var(--space-2);
}

.testimonials__nav--next {
  right: var(--space-2);
}

/* Dots */
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.testimonials__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-border-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonials__dot:hover {
  background: var(--color-slate-light);
  transform: scale(1.1);
}

.testimonials__dot--active {
  background: var(--color-gold);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(244, 168, 38, 0.2);
}

/* Compact Privacy Notice */
.testimonials__privacy-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-slate);
  text-align: center;
  margin-top: var(--space-6);
}

.testimonials__privacy-inline svg {
  flex-shrink: 0;
  color: var(--color-teal);
}

/* Responsive - Mobile */
@media (max-width: 639px) {
  .testimonials__carousel {
    padding: 0 var(--space-12);
  }

  .testimonial-slide__card {
    padding: var(--space-8) var(--space-6);
    min-height: 380px;
  }

  .testimonial-slide__text {
    font-size: var(--text-base);
    line-height: 1.7;
  }

  .testimonials__nav {
    width: 44px;
    height: 44px;
  }

  .testimonials__nav--prev {
    left: 0;
  }

  .testimonials__nav--next {
    right: 0;
  }

  .testimonial-slide__avatar {
    width: 44px;
    height: 44px;
  }

  .testimonial-slide__author {
    padding-top: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .testimonials {
    padding: var(--space-32) 0;
  }

  .testimonials__header {
    margin-bottom: var(--space-16);
  }

  .testimonials__carousel {
    max-width: 1000px;
    padding: 0 var(--space-20);
  }

  .testimonials__nav {
    width: 56px;
    height: 56px;
  }

  .testimonials__nav--prev {
    left: 0;
  }

  .testimonials__nav--next {
    right: 0;
  }

  .testimonial-slide__card {
    padding: var(--space-12) var(--space-10);
    min-height: 460px;
  }

  .testimonial-slide__text {
    font-size: var(--text-xl);
  }
}


/* ========== MEET OUR EXPERTS ========== */
.experts {
  padding: var(--space-24) 0;
  background: var(--color-offwhite);
  overflow: hidden;
}

.experts__header {
  text-align: center;
  margin-bottom: var(--space-12);
  padding: 0 var(--space-6);
}

.experts__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
}

.experts__subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* Scrolling Rows Container */
.experts__rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Each scrolling row */
.experts__row {
  display: flex;
  gap: var(--space-5);
  animation: scroll-left 60s linear infinite;
  width: max-content;
}

.experts__row--reverse {
  animation: scroll-right 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.experts__rows:hover .experts__row {
  animation-play-state: paused;
}

/* Expert Card - Compact horizontal style */
.expert-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  min-width: 320px;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
  box-shadow:
    0 2px 4px rgba(11, 22, 48, 0.04),
    0 4px 12px rgba(11, 22, 48, 0.06);
}

.expert-card:hover {
  box-shadow:
    0 4px 8px rgba(11, 22, 48, 0.06),
    0 8px 24px rgba(11, 22, 48, 0.1);
  border-color: var(--color-border-dark);
}

/* Circular Image */
.expert-card__image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--color-offwhite);
  background: var(--color-offwhite);
  box-shadow: 0 2px 8px rgba(11, 22, 48, 0.1);
}

.expert-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Expert Info */
.expert-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-width: 0;
}

.expert-card__name {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.expert-card__degree {
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
}

.expert-card__specialty {
  font-size: var(--text-sm);
  color: var(--color-teal);
  font-weight: var(--font-medium);
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
}

.expert-card__experience {
  font-size: var(--text-xs);
  color: var(--color-slate-light);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 639px) {
  .experts {
    padding: var(--space-16) 0;
  }

  .experts__header {
    margin-bottom: var(--space-8);
  }

  .experts__rows {
    gap: var(--space-4);
  }

  .expert-card {
    min-width: 280px;
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
  }

  .expert-card__image {
    width: 52px;
    height: 52px;
    border-width: 2px;
  }

  .expert-card__name {
    font-size: var(--text-sm);
  }

  .expert-card__degree,
  .expert-card__specialty {
    font-size: var(--text-xs);
  }

  .expert-card__experience {
    font-size: 0.65rem;
  }
}

@media (min-width: 1024px) {
  .experts {
    padding: var(--space-32) 0;
  }

  .experts__header {
    margin-bottom: var(--space-16);
  }

  .experts__rows {
    gap: var(--space-8);
  }

  .expert-card {
    min-width: 360px;
    padding: var(--space-5) var(--space-6);
  }

  .expert-card__image {
    width: 72px;
    height: 72px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .experts__row {
    animation: none;
  }
}


/* ========== FAQ SECTION ========== */
.faq {
  padding: var(--space-24) 0;
  background: var(--color-white);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-bold);
  color: var(--color-navy);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.02em;
}

.faq__subtitle {
  font-size: var(--text-lg);
  color: var(--color-slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.faq__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

/* Category */
.faq__category {
  background: var(--color-offwhite);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
}

.faq__category-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-navy);
  margin: 0 0 var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.faq__category-title svg {
  color: var(--color-teal);
  flex-shrink: 0;
}

/* FAQ Item */
.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:last-child {
  border-bottom: none;
}

/* Question Button */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--color-navy);
  line-height: var(--leading-snug);
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-teal);
}

.faq__question span {
  flex: 1;
}

.faq__icon {
  flex-shrink: 0;
  color: var(--color-slate-light);
  transition: transform var(--transition-base), color var(--transition-fast);
}

.faq__question:hover .faq__icon {
  color: var(--color-teal);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: var(--color-teal);
}

/* Answer */
.faq__answer {
  display: none;
  padding: 0 0 var(--space-5);
  color: var(--color-slate);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.faq__answer.is-open {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__answer p {
  margin: 0 0 var(--space-4);
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

.faq__answer ul {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-6);
}

.faq__answer ul:last-child {
  margin-bottom: 0;
}

.faq__answer li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-relaxed);
}

.faq__answer li:last-child {
  margin-bottom: 0;
}

.faq__answer strong {
  color: var(--color-navy);
  font-weight: var(--font-semibold);
}

/* Payment Options */
.faq__payment-option {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border);
}

.faq__payment-option:last-child {
  margin-bottom: 0;
}

.faq__payment-option h4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}

.faq__payment-option ul {
  margin-bottom: var(--space-3);
}

.faq__payment-option p {
  margin-bottom: var(--space-3);
}

.faq__payment-option p:last-child {
  margin-bottom: 0;
}

.faq__note {
  font-size: var(--text-sm);
  color: var(--color-slate-light);
  background: rgba(15, 118, 110, 0.05);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-teal);
}

/* Responsive */
@media (max-width: 639px) {
  .faq {
    padding: var(--space-16) 0;
  }

  .faq__header {
    margin-bottom: var(--space-8);
  }

  .faq__category {
    padding: var(--space-4);
    border-radius: var(--radius-xl);
  }

  .faq__category-title {
    font-size: var(--text-base);
    padding-bottom: var(--space-3);
    margin-bottom: var(--space-3);
  }

  .faq__question {
    padding: var(--space-4) 0;
    font-size: var(--text-sm);
  }

  .faq__answer {
    font-size: var(--text-sm);
  }

  .faq__payment-option {
    padding: var(--space-4);
  }

  .faq__payment-option h4 {
    font-size: var(--text-sm);
  }
}

@media (min-width: 1024px) {
  .faq {
    padding: var(--space-32) 0;
  }

  .faq__header {
    margin-bottom: var(--space-16);
  }

  .faq__category {
    padding: var(--space-8);
  }

  .faq__question {
    font-size: var(--text-lg);
  }
}


/* ========== CTA BANNER - Focused Center ========== */
.cta-banner {
  background: var(--color-navy);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric pattern overlay */
.cta-banner__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(244, 168, 38, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(244, 168, 38, 0.03) 0%, transparent 50%),
    linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.015) 49.5%, rgba(255, 255, 255, 0.015) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.015) 49.5%, rgba(255, 255, 255, 0.015) 50.5%, transparent 50.5%);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
}

/* Soft glow behind content */
.cta-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(244, 168, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

/* Centered content - poster-like layout */
.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-5);
  max-width: 600px;
  margin: 0 auto;
}

/* Main headline - the hero */
.cta-banner__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Tagline - lighter weight, gold accent */
.cta-banner__tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: var(--font-normal);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: 0.01em;
}

.cta-banner__tagline span {
  color: var(--color-gold);
  font-weight: var(--font-semibold);
}

/* Buttons - centered below text */
.cta-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 180px;
  border: 2px solid transparent;
}

.cta-banner__btn svg {
  flex-shrink: 0;
}

/* WhatsApp button - vibrant green */
.cta-banner__btn--whatsapp {
  background: #25D366;
  color: white;
}

.cta-banner__btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
}

.cta-banner__btn--whatsapp:active {
  transform: translateY(0);
}

/* Telegram button - WHITE to pop against dark background */
.cta-banner__btn--telegram {
  background: var(--color-white);
  color: #0088cc;
}

.cta-banner__btn--telegram:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.cta-banner__btn--telegram:active {
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 480px) {
  .cta-banner__buttons {
    flex-direction: row;
    gap: var(--space-4);
  }
}

@media (min-width: 768px) {
  .cta-banner {
    padding: var(--space-20) 0;
  }
}

@media (min-width: 1024px) {
  .cta-banner {
    padding: var(--space-24) 0;
  }

  .cta-banner__btn {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
    min-width: 200px;
  }

  .cta-banner__glow {
    width: 800px;
    height: 400px;
  }
}


/* ========== FOOTER ========== */
.footer {
  background: var(--color-offwhite);
  border-top: 1px solid var(--color-border);
}

/* Countries Slider */
.footer__countries {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.footer__countries-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.footer__countries-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.footer__countries-track {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: max-content;
  animation: scrollCountries 30s linear infinite;
}

.footer__country {
  font-size: var(--text-sm);
  color: var(--color-navy);
  font-weight: var(--font-medium);
  white-space: nowrap;
}

.footer__country-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

@keyframes scrollCountries {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.footer__countries-slider:hover .footer__countries-track {
  animation-play-state: paused;
}

/* Crypto Section */
.footer__crypto {
  padding: var(--space-8) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.footer__crypto-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer__crypto-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.footer__crypto-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(11, 22, 48, 0.08);
  transition: all var(--transition-base);
  cursor: default;
}

.footer__crypto-item svg,
.footer__crypto-item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
}

.footer__crypto-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 22, 48, 0.12);
}

/* Bottom Bar */
.footer__bottom {
  padding: var(--space-6) 0;
  text-align: center;
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin: 0;
}

/* Responsive */
@media (min-width: 640px) {
  .footer__crypto-item {
    width: 52px;
    height: 52px;
  }

  .footer__crypto-item svg,
  .footer__crypto-item img {
    width: 32px;
    height: 32px;
  }

  .footer__crypto-logos {
    gap: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .footer__countries {
    padding: var(--space-10) 0;
  }

  .footer__crypto {
    padding: var(--space-10) 0;
  }

  .footer__crypto-item {
    width: 56px;
    height: 56px;
  }

  .footer__crypto-item svg,
  .footer__crypto-item img {
    width: 36px;
    height: 36px;
  }
}

/* Reduced motion for footer */
@media (prefers-reduced-motion: reduce) {
  .footer__countries-track {
    animation: none;
  }
}


/* ========== UNIVERSITY SLIDER ========== */
.university-slider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) 0 var(--space-5);
  background: linear-gradient(to top, rgba(247, 247, 251, 1) 0%, rgba(247, 247, 251, 0.95) 100%);
  border-top: 1px solid var(--color-border);
}

.university-slider__label {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-slate);
  margin-bottom: var(--space-4);
  font-weight: var(--font-semibold);
  letter-spacing: 0.02em;
}

.university-slider__track {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.university-slider__track::before,
.university-slider__track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.university-slider__track::before {
  left: 0;
  background: linear-gradient(to right, rgba(247, 247, 251, 1) 0%, transparent 100%);
}

.university-slider__track::after {
  right: 0;
  background: linear-gradient(to left, rgba(247, 247, 251, 1) 0%, transparent 100%);
}

.university-slider__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: max-content;
  animation: slideLogos 40s linear infinite;
  padding: 0 20px;
}

.university-slider__logo {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.university-slider__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

@media (min-width: 480px) {
  .university-slider__logo {
    height: 44px;
    max-width: 120px;
  }

  .university-slider__logos {
    gap: 60px;
  }

  .university-slider__track::before,
  .university-slider__track::after {
    width: 80px;
  }
}

@media (min-width: 640px) {
  .university-slider {
    padding: var(--space-5) 0 var(--space-6);
  }

  .university-slider__label {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
  }

  .university-slider__logo {
    height: 56px;
    max-width: 160px;
  }

  .university-slider__logos {
    gap: 100px;
    padding: 0 40px;
  }

  .university-slider__track::before,
  .university-slider__track::after {
    width: 120px;
  }
}

@media (min-width: 1024px) {
  .university-slider__logo {
    height: 64px;
    max-width: 180px;
  }

  .university-slider__logos {
    gap: 120px;
  }
}


/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-carousel {
    opacity: 1;
  }

  .hero-carousel__slide--active .hero-carousel__floating-msg {
    opacity: 1;
  }

  .floating-msg {
    animation: none;
  }

  .hero__rotating-words {
    animation: none;
  }

  .hero__rotating-word::after {
    animation: none;
    transform: scaleX(1);
  }

  .hero__decoration {
    animation: none;
  }
}


/* ========== FOCUS STYLES ========== */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}


/* ========== SELECTION ========== */
::selection {
  background-color: var(--color-gold-light);
  color: var(--color-navy);
}
