/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color-scheme: light dark;
}

html,
body {
  background-color: var(--background-alt);
  color: var(--foreground);
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

/* CSS Variables (Design System) */
:root {
  /* Colors */
  --primary: hsl(220, 100%, 50%);
  --primary-glow: hsl(220, 100%, 70%);
  --accent: hsl(45, 100%, 50%);
  --accent-bright: hsl(45, 100%, 45%);

  /* Light theme (main content) */
  --background: #f1f5f9;
  --background-alt: #f8fafc;
  --card: #ffffff;
  --foreground: #1a1a2e;
  --foreground-muted: #4a5568;
  --border: #dbe3eb;
  --white: hsl(0, 0%, 100%);

  /* Hero/Footer dark theme */
  --dark-bg: hsl(220, 15%, 5%);
  --dark-card: hsl(220, 15%, 10%);
  --dark-foreground: hsl(220, 15%, 95%);

  /* Gradients */
  --gradient-accent: linear-gradient(
    135deg,
    hsl(45, 100%, 50%),
    hsl(45, 100%, 60%)
  );
  --gradient-primary: linear-gradient(
    135deg,
    hsl(220, 100%, 50%),
    hsl(220, 100%, 70%)
  );

  /* Shadows */
  --shadow-card:
    0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(255, 193, 7, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);

  /* Buttons */
  --button-bg: #000000;
  --button-bg-hover: #111827;
  --button-text: #ffffff;
  --button-border: #ffffff;

  /* Transitions */
  --transition-all: all 0.3s ease;
}

/* Utility Classes */
.hidden {
  display: none;
}

/* ===================================================
   NAVIGATION — keeps dark appearance (sits over hero)
   =================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition-all);
  background: transparent;
  border-bottom: 1px solid rgb(255, 198, 26);
}

.navbar.scrolled {
  background: rgba(8, 27, 73, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.nav-logo a {
  text-decoration: none;
  display: block;
}

.nav-logo img {
  height: auto;
  width: 10rem;
  display: block;
  max-height: 100%;
  padding-top: 40px;
  cursor: pointer;
  margin-bottom: 3rem;
}

@media (max-width: 480px) {
  .nav-content {
    height: 4.375rem;
  }

  .nav-logo img {
    width: 12rem;
    height: auto;
    margin-bottom: 10px;
    padding: 15px;
    margin-top: 2px;
  }
}

.nav-desktop {
  display: none;
}

@media (min-width: 1025px) {
  .nav-desktop {
    display: block;
  }
}

.nav-links {
  margin-left: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

@media (min-width: 1025px) {
  .nav-links {
    margin-left: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }
}

.nav-link {
  color: var(--dark-foreground);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-weight: 400;
  transition: var(--transition-all);
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: rgb(255, 198, 26);
}

.nav-cta {
  display: none;
}

@media (min-width: 1025px) {
  .nav-cta {
    display: block;
  }
}

.cta-button,
.btn-primary,
.btn-secondary {
  background: #081b49 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  line-break: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 52px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.6px;
  backdrop-filter: blur(2px);
}

.cta-button:hover,
.btn-primary:hover,
.btn-secondary:hover {
  background: var(--accent) !important;
  color: #000000 !important;
  border-color: var(--accent) !important;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5) !important;
  transform: translateY(-2px);
}

.nav-mobile-toggle {
  display: block;
}

@media (min-width: 1025px) {
  .nav-mobile-toggle {
    display: none;
  }
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  color: var(--dark-foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  background: #0f172a;
  opacity: 0.95;
  backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-card);
}

.mobile-menu-content {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  color: var(--dark-foreground);
  text-decoration: none;
  padding: 0.75rem;
  font-weight: 500;
  transition: var(--transition-all);
  border-radius: 0.25rem;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

.mobile-nav-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-cta {
  padding-top: 0.5rem;
}

.cta-button-full {
  width: 100%;
  background: #081b49;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  border: 2px solid #081b49;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: var(--transition-all);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button-full:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

/* ===================================================
   TABLET NAV (769px – 1024px)
   =================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-content {
    justify-content: center;
    position: relative;
    height: 7rem;
  }

  .nav-logo img {
    width: 15rem;
    margin-bottom: 30px;
    padding-top: 15px;
  }

  .mobile-menu-content {
    text-align: center;
  }

  .mobile-nav-link {
    font-size: 22px !important;
  }

  .mobile-cta {
    padding-bottom: 1rem;
  }

  .announcement-banner {
    top: 7rem;
  }
}

/* ===================================================
   ANNOUNCEMENT BANNER
   =================================================== */
.announcement-banner {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--gradient-accent);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;
  display: flex;
  justify-content: center;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.announcement-container {
  width: 80%;
  max-width: 1200px;
  padding: 0.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  animation: moveLeft 20s linear infinite;
  padding-left: 100%;
  white-space: nowrap;
}

@keyframes moveLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.announcement-icon {
  width: 20px;
  height: 18px;
  color: #000000;
  animation: ring 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }

  10%,
  30% {
    transform: rotate(-10deg);
  }

  20%,
  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.announcement-text {
  color: #000000;
  font-size: 0.85rem;
  font-weight: 400;
  white-space: nowrap;
  display: inline-block;
}

.announcement-text strong {
  font-weight: 400;
}

@media (max-width: 768px) {
  .announcement-banner {
    top: 4.375rem;
  }

  .announcement-content {
    gap: 0.5rem;
    padding: 0.25rem 0;
  }

  .announcement-text {
    font-size: 0.85rem;
  }

  .announcement-icon {
    width: 18px;
    height: 18px;
  }
}

/* ===================================================
   HERO SECTION — DARK
   =================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 3.5rem;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: #081b49;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 27, 73, 0.9),
    rgba(10, 35, 85, 0.7)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1025px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-inner {
  animation: fadeIn 1s ease-out;
}

.hero-badge-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 193, 7, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: var(--accent-bright);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 2rem;
}

.badge-icon-home {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1025px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-span {
  display: block;
  color: #ffffff;
}

.hero-highlight {
  color: #ffc107;
}

.hero_gap {
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffc107, transparent);
  margin: 0.75rem auto;
  border: none;
}

.hero-subtitle {
  font-size: 18px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background: #081b49;
  color: #ffffff;
  border: 2px solid #081b49;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition-all);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #081b49;
  color: #ffffff;
  border: 2px solid #081b49;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition-all);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  box-sizing: border-box;
  text-decoration: none;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.scroll-arrow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceArrow 2s infinite;
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition-all);
}

@keyframes bounceArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===================================================
   LOCATION BAR — light theme
   =================================================== */
.location-bar {
  background: var(--background-alt);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--foreground);
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.location-bar p {
  margin: 0 0 1rem 0;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  color: var(--primary);
}

.flags-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 0.5rem 0;
}

.flags-scroll {
  display: inline-flex;
  gap: 2rem;
  animation: scrollRightToLeft 30s linear infinite;
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.flag-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  font-weight: 400;
  color: var(--foreground);
  white-space: nowrap;
}

.flags-scroll:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .location-bar p {
    font-size: 1rem;
  }

  .flag-item {
    font-size: 0.9rem;
    gap: 0.4rem;
  }

  .flags-scroll {
    gap: 1.5rem;
  }
}

.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

/* ===================================================
   WHY CHOOSE US — light background
   =================================================== */
.about-section {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: var(--background-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  color: #1a1a2e;
}

.section-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.6em 1.5em;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0px 0px #000000;
  border: 2px solid #000000;
  margin-bottom: 0.5rem;
  transition: var(--transition-all);
  line-height: 1.4;
}

.section-badge:hover {
  transform: rotate(0deg);
  box-shadow: 6px 6px 0px 0px #000000;
}

.text-primary {
  background: linear-gradient(135deg, hsl(220, 100%, 45%), hsl(220, 100%, 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: var(--foreground-muted);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 8px 8px 0px #000;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #000000;
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  box-shadow: 15px 15px 0px 0px black;
  border-color: black;
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.feature-image {
  width: 100%;
  max-width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
}

.image-3d {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.15));
}

.feature-title {
  font-size: 28px;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  color: black;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-align: center;
}

.feature-description {
  font-size: 16px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  line-height: 1.8;
  text-align: center;
}

.feature-footer {
  margin-top: auto;
  text-align: left;
}

.feature-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* ===================================================
   SERVICES SECTION — light
   =================================================== */
.services-section {
  padding: 4rem 0;
  background: var(--background-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #f8fafc;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  box-shadow: 6px 6px 0px 0px #000000;
}

.service-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px 0px black;
  border-color: black;
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif !important;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: black;
  letter-spacing: 0.5px;
}

.service-description {
  font-size: 16px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  line-height: 1.8;
  font-weight: 400;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.cta-btn {
  background: #081b49;
  color: #ffffff;
  border: 2px solid #081b49;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 25px;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* ===================================================
   ABOUT US SECTION (homepage) — light
   =================================================== */
.container-about {
  margin: 0 auto;
  background: #f8fafc;
  padding: 3rem 0;
  width: 100%;
}

.hero-section-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.illustration-right-about {
  order: 2;
}

.content-left-about {
  order: 1;
  animation: slideInLeft 0.8s ease-out;
}

.badge-about {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0px 0px #000000;
  border: 2px solid #000000;
  margin-bottom: 1rem;
  margin-left: 10rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.badge-about:hover {
  transform: rotate(0deg);
  box-shadow: 6px 6px 0px 0px #000000;
}

.about-heading {
  font-size: 48px;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 20px;
  color: #1a1a2e;
  padding-left: 10rem;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.highlight-about {
  color: var(--primary);
}

.underline-about {
  display: inline-block;
  position: relative;
}

.underline-about::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.description-about {
  font-size: 16px;
  line-height: 1.8;
  color: var(--foreground-muted);
  margin-bottom: 30px;
  text-align: justify;
  padding-left: 10em;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.stats-section-about {
  margin-top: 20px;
  margin-left: 10rem;
}

.stats-title-about {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}

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

.stat-card-about {
  padding: 20px 15px;
  border-radius: 20px;
  border-left: 6px solid;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.stat-card-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-card-about.green {
  background: linear-gradient(135deg, #f0f8e8 0%, #e8f5d8 100%);
  border-left-color: #081b49;
}

.stat-card-about.blue {
  background: linear-gradient(135deg, #e8f4fd 0%, #d4e9f9 100%);
  border-left-color: var(--primary);
}

.stat-number-about {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card-about.green .stat-number-about {
  color: #081b49;
}

.stat-card-about.blue .stat-number-about {
  color: var(--primary);
}

.stat-label-about {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}

.cta-section-about {
  text-align: center;
  padding: 10px 0 60px;
}

.cta-button-about {
  background: #081b49;
  letter-spacing: 0.5px;
  font-family: "Bebas Neue", sans-serif;
  color: #ffffff;
  border: 2px solid #081b49;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button-about:hover {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .container-about {
    padding: 2rem 0;
  }

  .hero-section-about {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 4rem;
  }

  .content-left-about {
    order: 1;
  }

  .illustration-right-about {
    order: 2;
    text-align: center;
  }

  .illustration-right-about img {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    padding-left: 0 !important;
  }

  .badge-about {
    margin-left: 0;
  }

  .about-heading {
    font-size: 28px;
    padding-left: 0;
  }

  .description-about {
    font-size: 14px;
    padding-left: 0;
  }

  .stats-section-about {
    margin-left: 0;
  }

  .stats-grid-about {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container-about {
    padding: 1.5rem 0;
  }

  .hero-section-about {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .content-left-about {
    order: 1;
  }

  .illustration-right-about {
    order: 2;
    text-align: center;
  }

  .illustration-right-about img {
    width: 100% !important;
    max-width: 400px !important;
    height: auto !important;
    padding-left: 0 !important;
  }

  .badge-about {
    margin-left: 0;
  }

  .about-heading {
    font-size: 24px;
    padding-left: 0;
  }

  .description-about {
    font-size: 14px;
    padding-left: 0;
  }

  .stats-section-about {
    margin-left: 0;
    padding: 0 1rem;
  }

  .stats-grid-about {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .stat-card-about {
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .stat-number-about {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .stat-label-about {
    font-size: 13px;
  }

  .cta-button-about {
    padding: 0.65rem 1.3rem;
    font-size: 0.9rem;
    width: 90%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .about-heading {
    font-size: 20px;
  }

  .description-about {
    font-size: 12px;
  }

  .stat-number-about {
    font-size: 26px;
  }

  .stat-label-about {
    font-size: 12px;
  }

  .badge-about {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }

  .cta-button-about {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

  .stat-card-about {
    padding: 16px 10px;
  }
}

/* ===================================================
   DESTINATIONS SECTION — alt background
   =================================================== */
.destinations-section {
  margin: 0 auto;
  padding: 4rem 0;
  background-color: var(--background-alt);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 340px));
  gap: 3rem;
  margin-bottom: 40px;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.destination-card {
  background: var(--background-alt);
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  box-shadow: 6px 6px 0px #000000;
}

.icon-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #f1f5f9;
  border: 3px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-name {
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: black;
  letter-spacing: 1px;
}

.destination-description {
  font-size: 16px;
  line-height: 1.8;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: var(--foreground-muted);
}

@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .destination-card {
    padding: 30px 20px;
    box-shadow: 4px 4px 0px #000000;
  }

  .destination-name {
    font-size: 22px;
  }

  .icon-wrapper {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .destination-card {
    padding: 25px 15px;
  }

  .destination-name {
    font-size: 18px;
  }

  .icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
  }
}

/* ===================================================
   APPLICATION PROCESS SECTION
   =================================================== */
.guide-steps-destination-section {
  background: var(--background-alt);
  height: 900px;
  max-height: 900px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.guide-steps-destination-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.guide-steps-destination-section .section-title {
  color: #1a1a2e;
}

.guide-steps-destination-section .section-subtitle {
  color: var(--foreground-muted);
}

.guide-step-number {
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  box-shadow: 4px 4px 0px 0px #000000;
  border: 3px solid #000000;
}

.guide-steps-horizontal-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.guide-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
}

.guide-step-arrow {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  position: relative;
  top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-arrow-emoji {
  font-size: 2.5rem;
  display: inline-block;
  animation: moveArrowHorizontal 2s ease-in-out infinite;
  color: black;
}

@keyframes moveArrowHorizontal {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

.guide-step-content {
  color: #1a1a2e;
  text-align: center;
  padding-bottom: 1rem;
}

.guide-step-content h3 {
  font-size: 24px;
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}

.guide-step-content p {
  font-size: 18px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: var(--foreground-muted);
}

.guide-final-step {
  text-align: center;
  color: #1a1a2e;
  min-width: 200px;
  flex-shrink: 0;
  position: relative;
  top: -50px;
  margin-top: 30px;
}

.guide-final-step h3 {
  font-size: 24px;
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}

.guide-final-step p {
  font-size: 18px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: var(--foreground-muted);
}

.guide-illustration-3d {
  width: 100%;
  max-width: 350px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
  flex-shrink: 0;
}

.guide-illustration-3d img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1400px) {
  .guide-steps-destination-section {
    height: auto;
    max-height: none;
    padding: 2rem 1.5rem;
  }

  .guide-illustration-3d {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .guide-steps-destination-section {
    height: auto;
    max-height: none;
    padding: 2rem 1rem 3rem;
  }

  .guide-steps-horizontal-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }

  .guide-step-item {
    width: 100%;
    max-width: 300px;
  }

  .guide-step-arrow {
    transform: rotate(90deg);
    top: 0;
    margin: -1rem 0;
  }

  .guide-final-step {
    top: 0;
    margin-top: 0;
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }

  .guide-illustration-3d {
    max-width: 280px;
    margin-top: 1rem;
  }

  .guide-step-number {
    width: 90px;
    height: 90px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .guide-steps-destination-section {
    padding: 1.5rem 0.75rem 2.5rem;
  }

  .guide-step-number {
    width: 180px;
    height: 180px;
    font-size: 2.5rem;
  }

  .guide-step-content h3 {
    font-size: 1.3rem;
  }

  .guide-step-content p {
    font-size: 1rem;
  }

  .guide-illustration-3d {
    max-width: 240px;
  }
}

/* ===================================================
   TESTIMONIALS SECTION — alt background
   =================================================== */
.testimonials-section {
  background: var(--background-alt);
}

.testimonials-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-stage {
  position: relative;
  min-height: 24rem;
  height: 28rem;
  overflow: visible;
  perspective: 1000px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22rem;
  height: 400px;
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid #000000;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.4;
  transform-origin: center center;
  cursor: pointer;
  box-shadow: 4px 4px 0px 0px #000000;
  overflow: hidden;
}

.testimonial-carousel-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 10;
  border-color: var(--accent);
  box-shadow: 6px 6px 0px 0px var(--accent);
}

.testimonial-carousel-card.prev {
  opacity: 0.6;
  transform: translate(-50%, -50%) translateX(-350px) scale(0.9);
  z-index: 5;
}

.testimonial-carousel-card.next {
  opacity: 0.6;
  transform: translate(-50%, -50%) translateX(350px) scale(0.9);
  z-index: 5;
}

.testimonial-carousel-card:not(.active):not(.prev):not(.next) {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.testimonial-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 0.25rem;
  color: #1a1a2e;
  text-transform: uppercase;
}

.testimonial-position {
  color: var(--foreground-muted);
  font-size: 16px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  margin-bottom: 0.25rem;
}

.testimonial-university {
  color: black;
  font-size: 16px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-weight: 400;
}

.testimonial-quote {
  margin-bottom: 1.5rem;
}

.quote-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.testimonial-quote p {
  color: var(--foreground-muted);
  line-height: 1.8;
  font-size: 14px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.testimonial-rating {
  color: var(--accent);
  font-size: 0.875rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  background: #ffffff;
  border: 2px solid #000000;
  font-size: 1.25rem;
  padding: 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  color: var(--foreground);
  box-shadow: 3px 3px 0px 0px #000000;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000000;
  box-shadow: 3px 3px 0px 0px var(--accent);
}

.carousel-prev {
  left: -4rem;
}

.carousel-next {
  right: -4rem;
}

#testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  gap: 0.8rem;
  position: relative;
  z-index: 20;
}

#testimonials-dots .dot {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

#testimonials-dots .dot:hover {
  background: #94a3b8;
}

#testimonials-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
  box-shadow: 0 0 0 2px #1a1a2e;
}

@media (max-width: 1024px) {
  .testimonial-carousel-card {
    display: none;
  }

  .testimonial-carousel-card.active {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 0 auto;
    opacity: 1;
    z-index: 10;
  }

  .testimonials-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 22rem;
    height: auto;
  }

  .carousel-btn {
    display: flex !important;
    z-index: 30;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials-stage {
    min-height: 22rem;
  }

  .testimonial-carousel-card {
    width: 18rem;
    height: 350px;
    padding: 1.5rem;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .testimonials-stage {
    min-height: 20rem;
    height: auto;
  }

  .testimonial-carousel-card {
    width: 16rem;
    height: 320px;
    padding: 1rem;
    overflow: hidden;
  }

  .carousel-btn {
    width: 2rem;
    height: auto;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }
}

/* ===================================================
   FOOTER — DARK
   =================================================== */
.footer-section {
  background: #081b49;
  color: #fff;
  padding: 1rem 0 2rem;
  position: relative;
}

.scroll-to-top {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-all);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.scroll-to-top:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: var(--shadow-glow);
}

.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Contact Info spans both columns so it doesn't get squished */
  .footer-contact {
    grid-column: 1 / -1;
  }

  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
  }

  /* Centre the description text */
  .footer-description {
    text-align: center;
  }

  /* Centre section headings */
  .footer-heading {
    text-align: center;
  }

  /* Centre nav link lists */
  .footer-nav,
  .services-list {
    text-align: center;
  }

  /* Remove the left-shift hover on mobile */
  .footer-link:hover {
    transform: none;
  }

  /* Centre social icons row */
  .social-links {
    justify-content: center;
  }

  /* Contact items — keep left-aligned for readability */
  .contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: fit-content;
    margin: 0 auto;
  }

  .contact-item {
    justify-content: flex-start;
    text-align: left;
    padding-bottom: 0.25rem;
  }

  .contact-value {
    text-align: left;
  }
}

/* ── Tablet footer layout (769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-section {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  /* 3-column layout: About | Quick Links | Services */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }

  /* Contact Info drops to its own full-width row below */
  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
  }

  /* Lay out the 4 contact items in 2 side-by-side columns */
  .contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 3rem;
  }
}

.footer-description {
  font-size: 1rem;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  margin-top: -2rem;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.social-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--accent);
  color: #000;
  transform: scale(1.1);
}

.social-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}

.footer-nav,
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.services-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-all);
  display: inline-block;
}

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

.footer-logo {
  width: 15rem;
  height: auto;
  display: block;
  margin-bottom: 2rem;
  margin-top: -2rem;
  margin-left: -1.4rem;
}

@media (max-width: 900px) {
  .footer-logo {
    margin-bottom: 3rem;
  }
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-bottom: 1rem;
}

.contact-value {
  font-size: 16px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright-text {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-all);
}

.legal-link:hover {
  color: var(--accent);
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section {
  padding: 10rem 0;
  background: rgb(15, 23, 42) !important;
  position: relative;
  overflow: hidden;
}

.contact-section p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: #ffffff;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.8;
}

.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section h6 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-background {
  position: absolute;
  inset: 0;
}

.animated-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle-1 {
  top: 5rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.1);
  animation-duration: 4s;
}

.particle-2 {
  bottom: 5rem;
  left: 5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.05);
  animation-duration: 6s;
  animation-delay: 1s;
}

.particle-3 {
  top: 50%;
  right: 33%;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 193, 7, 0.2);
  animation-duration: 5s;
  animation-delay: 2s;
}

.particle-4 {
  top: 33%;
  left: 25%;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 193, 7, 0.3);
  animation-duration: 7s;
}

.particle-5 {
  bottom: 33%;
  right: 20%;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255, 193, 7, 0.4);
  animation-duration: 4s;
  animation-delay: 3s;
}

.particle-6 {
  top: 5rem;
  left: 33%;
  width: 1rem;
  height: 1rem;
  background: rgba(255, 193, 7, 0.3);
  animation-duration: 8s;
  animation-delay: 1.5s;
}

.section-title-white {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle-white {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}

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

.contact-content {
  background: rgb(255, 198, 26, 1) !important;
  border-radius: 1.5rem;
  box-shadow: none !important;
  overflow: hidden;
  border: none;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form-section {
  padding: 2rem;
}

@media (min-width: 1024px) {
  .contact-form-section {
    padding: 3rem;
  }
}

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-icon {
  width: 2rem;
  height: 2rem;
  color: rgb(7, 76, 239, 1) !important;
}

.form-header h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-description {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 18px;
  color: black;
  opacity: 1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: black;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  transition: var(--transition-all);
  backdrop-filter: blur(4px);
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-submit-btn {
  background: rgb(15, 23, 42, 1);
  color: white;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-all);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit-btn:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.contact-info-section {
  background: linear-gradient(
    135deg,
    rgba(255, 193, 7, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .contact-info-section {
    padding: 3rem;
  }
}

.info-card {
  background: rgba(15, 23, 42, 1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-all);
}

.info-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.info-card .info-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition-all);
}

.info-card:hover .info-icon {
  transform: scale(1.1);
}

.info-icon i {
  color: white;
  font-size: 1.5rem;
}

.info-content h4 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.info-content p {
  font-size: 0.875rem;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.info-details {
  font-size: 0.875rem;
  color: #ffffff;
  opacity: 0.8;
}

.consultation-cta {
  text-align: center;
  background: rgba(15, 23, 42, 1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-cta h4 {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.consultation-cta p {
  font-size: 0.875rem;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.book-btn {
  background: var(--accent);
  color: black;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-all);
}

.book-btn:hover {
  background: var(--accent-bright);
  box-shadow: var(--shadow-glow);
}

.trust-indicators {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 4rem auto 0;
  position: relative;
  z-index: 10;
}

@media (min-width: 480px) {
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .trust-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: 1px;
}

.trust-label {
  color: rgba(255, 255, 255, 0.7);
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 18px;
  font-weight: normal;
}

/* Tablet: Contact section */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* ===================================================
   ABOUT PAGE STYLES
   =================================================== */
.about-hero-banner {
  background: #081b49;
  padding: 150px 60px 130px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.about-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 30% 50%,
      rgba(255, 193, 7, 0.06) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

/* ── TWO-COLUMN INNER GRID ── */
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT: text content ── */
.about-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 4px;
  line-height: 1;
}

.about-hero-rule {
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, transparent);
  border: none;
  margin: 14px 0 22px;
}

.about-hero-body {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}

.about-hero-body strong {
  color: #ffc107;
  font-weight: 600;
}

/* ── RIGHT: image ── */
.about-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-img-wrap {
  width: 100%;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--accent);
  border-bottom-right-radius: 20px;
  border-right: 8px solid var(--border);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom: 8px solid var(--border);
  background: transparent;
}

.about-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* ── WAVE ── */
.about-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 3;
}

.about-hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-hero-banner {
    padding: 140px 40px 120px;
  }

  .about-hero-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero-banner {
    padding: 130px 24px 110px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-hero-title {
    font-size: clamp(36px, 8vw, 56px);
  }
}

@media (max-width: 480px) {
  .about-hero-banner {
    padding: 120px 20px 100px;
  }

  .about-hero-body {
    font-size: 15px;
  }
}

/* Tablet: About page sections */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-section-page {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .about-grid-page,
  .ach-grid-page {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .about-grid-page,
  .ach-grid-page {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-page {
    padding: 60px 0;
  }

  .values-section,
  .achievements-section {
    padding: 60px 0;
  }
}

/* ── CORE VALUES SECTION ── */
.values-section {
  width: 100%;
  padding: 80px 0 90px;
  background: #fff;
}

.values-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 50px;
}

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

.values-grid .value-card:nth-child(4) {
  grid-column: 1;
}

.values-grid .value-card:nth-child(5) {
  grid-column: 2;
}

.value-card {
  background: #fff;
  border-bottom: 2.5px solid black;
  border-right: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 black;
  padding: 36px 28px 30px;
  text-align: center;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: cardIn 0.5s ease both;
}

.value-number {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border: 3px solid black;
  border-radius: 50%;
  color: black;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px 20px;
  box-shadow: 3px 3px 0 black;
}

.value-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: black;
}

.value-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet: Values section */
@media (min-width: 769px) and (max-width: 1024px) {
  .values-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid .value-card:nth-child(4),
  .values-grid .value-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid .value-card:nth-child(4),
  .values-grid .value-card:nth-child(5) {
    grid-column: 1;
  }
}

/* ── WHY CHOOSE US SECTION (about page full-bleed) ── */
.why-section {
  width: 100vw;
  height: 400px;
  margin-left: calc(-50vw + 50%);
  background: var(--accent);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='rgba(0,0,0,0.06)'/%3E%3C/svg%3E");
  background-size: 4px 4px;
  pointer-events: none;
}

.why-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 52px;
  position: relative;
}

.stats-grid-about-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item-about-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 0 10px;
}

.stat-number-about-page {
  font-family: "Bebas Neue", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: black;
  line-height: 1;
}

.stat-label-about-page {
  font-family:
    "Avenir",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
  display: block;
}

/* Tablet: Why section — already full-bleed, just font tweak */
@media (min-width: 769px) and (max-width: 1024px) {
  .why-section {
    height: auto;
    margin-left: 0;
    padding: 60px 4rem;
  }
}

@media (max-width: 720px) {
  .stats-grid-about-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-section {
    height: auto;
    margin-left: 0;
    padding: 40px 24px;
  }

  .why-section h2 {
    font-size: 36px;
  }

  .stat-number-about-page {
    font-size: 48px;
  }

  .stat-label-about-page {
    font-size: 14px;
  }

  .about-text-page h2 {
    font-size: 36px;
  }

  .values-section h2 {
    font-size: 36px;
  }

  .about-text-page p {
    font-size: 16px;
  }

  .values-section p {
    font-size: 16px;
  }
}

/* ── ACHIEVEMENTS / FOUNDATION SECTION ── */
.acknowledge-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--background-alt);
}

.acknowledge-title {
  font-size: 48px;
  padding-bottom: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
}

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

.acknowledge-card {
  background: var(--background-alt);
  padding: 50px 30px 40px;
  border-radius: 20px;
  position: relative;
  text-align: center;
  border: 2.5px solid #000;
  box-shadow:
    6px 6px 0px #000,
    0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.acknowledge-badge {
  position: absolute;
  top: -25px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #000;
  box-shadow: 4px 4px 0 #000;
}

.acknowledge-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.acknowledge-card p {
  font-size: 16px;
  color: black;
  line-height: 1.6;
  font-family:
    "Avenir",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

/* Tablet: Foundation section */
@media (min-width: 769px) and (max-width: 1024px) {
  .acknowledge-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .acknowledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .acknowledge-grid {
    grid-template-columns: 1fr;
  }

  .acknowledge-title {
    font-size: 36px;
  }

  .acknowledge-card p {
    font-size: 14px;
  }
}

/* ── BLOG SECTION ── */
.blog-section {
  width: 100%;
  padding-bottom: 80px;
  background-color: var(--background-alt);
}

.blog-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

.blog-featured {
  background: #fff;
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--accent);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.blog-featured:hover {
  transform: translateY(-5px);
  box-shadow: 8px 10px 0 var(--accent);
}

.blog-featured img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.blog-featured-body {
  padding: 22px 26px 28px;
}

.blog-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.blog-featured-title {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 black;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 8px 10px 0 BLACK;
}

.blog-card-text {
  flex: 1;
}

.blog-card-text h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
  color: black;
}

.blog-card-text h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-text h4 a:hover {
  color: var(--accent);
}

.blog-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--border);
  overflow: hidden;
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet: Blog section */
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 720px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 60px 0 40px;
  }

  .blog-heading {
    font-size: 36px;
  }

  .blog-featured img {
    height: auto;
  }

  .blog-card-text h4 {
    font-size: 14px;
  }

  .blog-meta {
    font-size: 12px;
  }
}

/* ===================================================
   DESTINATION PAGE
   =================================================== */

.content-wrapper {
  background-color: var(--background-alt);
}

.dlp-explore {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-top: 140px;
  margin-bottom: 10px;
  position: relative;
  color: var(--background);
}

.dlp-explore-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .dlp-explore-img {
    max-width: 100%;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .dlp-explore {
    margin-top: 80px;
    font-size: 24px;
  }

  .dlp-explore-img {
    max-width: 100%;
    padding: 0 12px;
  }
}

.dlp-intro {
  text-align: center;
  padding: 56px 40px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.dlp-intro-text {
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

@media (max-width: 480px) {
  .dlp-intro-text {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ─── SECTION WRAPPER ────────────────────────────────────────────── */
.dlp-section {
  padding: 0 40px 64px;
  max-width: 1280px;
  margin: 0 auto;
  background-color: var(--background-alt);
}

.dlp-section-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  color: black;
}

/* ─── LOCATION GRID ──────────────────────────────────────────────── */
.dlp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ─── LOCATION CARD ──────────────────────────────────────────────── */
.dlp-card {
  background: #fff;
  border: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 black;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 2;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  display: block;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@keyframes dlp-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dlp-card:hover {
  box-shadow: 8px 12px 0px #1a1a1a;
  border-color: black;
}

.dlp-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dlp-card-city {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: black;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.dlp-badge-247 {
  background: var(--accent);
  color: black;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  padding: 5px 12px;
  border-radius: 40px;
  flex-shrink: 0;
  margin-left: 8px;
}

.dlp-card-label {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 4px;
  padding-bottom: 14px;
}

.dlp-card-areas {
  font-size: 12px;
  color: black;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dlp-card-divider {
  height: 1px;
  background: gray;
  opacity: 0.25;
  margin-bottom: 16px;
}

.dlp-card-link {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

@media (max-width: 480px) {
  .dlp-section-heading {
    padding: 24px;
    font-size: 36px;
    font-weight: 700;
  }

  .dlp-card-city {
    font-size: 28px;
    font-weight: 600;
  }

  .dlp-card-desc {
    font-size: 18px;
    line-height: 1.8;
  }

  .dlp-card-label,
  .dlp-card-areas {
    font-size: 12px;
  }

  .dlp-card-link {
    font-size: 16px;
    font-weight: 700;
  }
}

/* ─── NEED HELP NOW ──────────────────────────────────────────────── */
.dlp-need-help {
  padding: 56px 40px;
  background: var(--background-alt);
}

.dlp-need-help-box {
  background: var(--accent);
  border-radius: 20px;
  border: 3px solid black;
  box-shadow: 6px 6px 0 black;
  padding: 52px 48px 48px;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.dlp-need-help-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(0, 0, 0, 0.03) 24px,
    rgba(0, 0, 0, 0.03) 48px
  );
  pointer-events: none;
}

.dlp-nh-bolt {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: black;
  opacity: 1;
  z-index: 2;
}

.dlp-nh-bolt-tl {
  top: 18px;
  left: 20px;
}

.dlp-nh-bolt-tr {
  top: 18px;
  right: 20px;
}

.dlp-nh-bolt-bl {
  bottom: 18px;
  left: 20px;
}

.dlp-nh-bolt-br {
  bottom: 18px;
  right: 20px;
}

.dlp-nh-img {
  display: block;
  width: min(560px, 88%);
  margin: 0 auto 16px;
  mix-blend-mode: screen;
  filter: drop-shadow(2px 3px 0px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 1;
}

.dlp-nh-sub {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: black;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.dlp-nh-phone {
  display: inline-block;
  background: white;
  color: black;
  font-family:
    "Avenir",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 14px 52px;
  border-radius: 60px;
  border: 2.5px solid var(--dlp-primary);
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  position: relative;
  z-index: 1;
}

.dlp-nh-phone:hover {
  transform: translateY(-3px);
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .dlp-need-help {
    padding: 40px 20px;
  }

  .dlp-need-help-box {
    padding: 44px 28px 40px;
  }

  .dlp-nh-phone {
    padding: 13px 36px;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dlp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dlp-features {
    grid-template-columns: 1fr;
    margin: 0 24px 40px;
  }

  .dlp-feature-item {
    border-right: none;
    border-bottom: 2px solid var(--dlp-primary);
  }

  .dlp-feature-item:last-child {
    border-bottom: none;
  }

  .dlp-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dlp-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .dlp-navbar {
    padding: 0 20px;
  }

  .dlp-nav-links {
    display: none;
  }

  .dlp-menu-toggle {
    display: flex;
  }

  .dlp-hero {
    padding: 56px 24px;
  }

  .dlp-intro {
    padding: 40px 24px 32px;
  }

  .dlp-section {
    padding: 0 20px 48px;
  }

  .dlp-grid {
    grid-template-columns: 1fr;
  }

  .dlp-showcase {
    padding: 48px 24px;
  }

  .dlp-cta {
    padding: 56px 24px;
  }

  .dlp-showcase-stats {
    gap: 20px;
  }

  .dlp-footer {
    padding: 40px 24px 24px;
  }

  .dlp-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .dlp-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── Country flag emoji ── */
.dlp-country-flag {
  font-size: 40px;
  line-height: 1;
  margin-right: 6px;
  vertical-align: middle;
}

/* ── SEO description inside card ── */
.dlp-card-desc {
  font-size: 14px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── City chips ── */
.dlp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.dlp-chip {
  background: #f1f5f9;
  border: 1px solid #dbe3eb;
  border-radius: 20px;
  font-size: 12px;
  color: #333;
  padding: 4px 10px;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.dlp-card:hover .dlp-chip {
  background: #fff8e1;
  border-color: #ffc107;
}

/* ── SHARED SECTION STYLES ─────────────────────────────────────────── */
.elu-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #081b49;
  text-align: center;
  margin-bottom: 10px;
}

.elu-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a2e;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.elu-section-sub {
  font-size: 16px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ── Responsive: keep compare section typography uniform (matches about page) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .elu-section-title {
    font-size: 36px;
    font-weight: 700;
  }

  .elu-section-sub {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .elu-section-title {
    font-size: 36px;
    font-weight: 700;
  }

  .elu-section-sub {
    font-size: 12px;
    line-height: 1.8;
  }
}

/* ── COMPARISON TABLE SECTION ──────────────────────────────────────── */
.elu-compare-section {
  background: #f8fafc;
  padding: 80px 0 70px;
}

.elu-compare-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.elu-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 2.5px solid #000;
  box-shadow: 8px 8px 0 #000;
  margin-bottom: 20px;
}

.elu-table {
  width: 100%;
  border-collapse: collapse;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 13.5px;
  min-width: 860px;
}

.elu-th {
  background: #081b49;
  color: #fff;
  font-family: "poppins-semibold", "poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 16px 14px;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.elu-th:last-child {
  border-right: none;
}

.elu-th-feature {
  text-align: left;
  width: 190px;
  background: #050f2e;
}

.elu-th-highlight {
  background: #ffc107;
  color: #000;
  position: relative;
}

.elu-th-highlight::after {
  content: "Most Popular";
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 2px;
}

.elu-td {
  padding: 13px 14px;
  text-align: center;
  color: #1a1a2e;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.4;
}

.elu-td:last-child {
  border-right: none;
}

.elu-td-feature {
  text-align: left;
  font-weight: 700;
  font-family: "poppins-semibold", "poppins", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #081b49;
  background: #f0f4ff;
  white-space: nowrap;
}

.elu-td-highlight {
  background: #fff8e1;
  font-weight: 600;
  color: #7a4e00;
}

.elu-tr-alt td {
  background: #f8fafc;
}

.elu-tr-alt .elu-td-feature {
  background: #eaeefd;
}

.elu-tr-alt .elu-td-highlight {
  background: #fff3cc;
}

.elu-pill {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.elu-pill-yes {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.elu-pill-no {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.elu-table-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  line-height: 1.6;
  padding-top: 16px;
}

.elu-inline-link {
  color: #081b49;
  font-weight: 600;
  text-decoration: underline;
}

/* ===================================================
   SUBDESTINATION PAGE
   =================================================== */

.bangalore-section-page {
  background: #081b49;
  font-family: "Barlow", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.bangalore-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}

@media (max-width: 768px) {
  .bangalore-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.bangalore-card {
  background: #081b49;
  border-radius: 20px;
  box-shadow: 6px 8px 0px var(--accent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.bangalore-card-cover {
  flex: 1;
  min-height: 400px;
}

.bangalore-card-illustration {
  width: 100%;
  background: #081b49;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem 1.5rem;
  min-height: 280px;
}

.bangalore-card-divider {
  height: 1.5px;
  opacity: 0.5;
  background: var(--background-alt);
  margin: 0 1.8rem;
}

.bangalore-card-body {
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.bangalore-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -1px;
}

.bangalore-card-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--background-alt);
  line-height: 1.6;
  max-width: 45ch;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.bangalore-wrapper {
  background: var(--background-alt);
}

.bangalore-wrapper *,
.bangalore-wrapper *::before,
.bangalore-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── PAGE LAYOUT ── */
.bangalore-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-areas:
    "intro   intro"
    "content sidebar";
  gap: 40px 48px;
  align-items: stretch;
}

.bangalore-intro {
  grid-area: intro;
}

.bangalore-main-content {
  grid-area: content;
}

.bangalore-wrapper p,
.bangalore-section-page p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: black;
  line-height: 1.8;
}

/* ── MAIN CONTENT ── */
.bangalore-intro h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.bangalore-intro p {
  font-size: 16px;
  color: black;
  margin: 0 auto;
  line-height: 1.8;
  max-width: 800px;
  text-align: center;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

/* ── SECTION HEADINGS ── */
.bangalore-section-heading {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 0.3em 1.5em;
  border-radius: 50px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  transform: rotate(-2deg);
  transition: var(--transition-all);
  margin: 38px 0 10px;
  position: relative;
}

.bangalore-section-heading:hover {
  transform: rotate(0deg);
  box-shadow: 6px 6px 0px 0px #000;
}

/* ── RESPONSE TIME ── */
.bangalore-response-label {
  color: var(--bangalore-orange);
  font-weight: 600;
  font-size: 15px;
  margin: 14px 0 0;
}

.bangalore-response-label::after {
  content: " ";
}

/* ── SERVICES LIST ── */
.bangalore-services-list {
  list-style: none;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bangalore-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #1a1a2e;
  padding: 12px 18px;
  background: var(--background-alt);
  border-radius: 8px;
  border-left: 4px solid transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.bangalore-services-list li:hover {
  border-left-color: var(--accent);
  background: #fef4ec;
}

.bangalore-services-list li::before {
  content: "•";
  color: black;
  font-size: 18px;
  line-height: 1.3;
  flex-shrink: 0;
}

.bangalore-services-list li strong {
  color: var(--accent);
  font-weight: 600;
  margin-right: 4px;
}

/* ── WHY CHOOSE ── */
.bangalore-why-list {
  list-style: none;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: bangalore-why-counter;
}

.bangalore-why-list li {
  counter-increment: bangalore-why-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: #1a1a2e;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.bangalore-why-list li:last-child {
  border-bottom: none;
}

.bangalore-why-list li::before {
  content: counter(bangalore-why-counter);
  background: black;
  color: var(--background-alt);
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-weight: 700;
  font-size: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bangalore-why-list li strong {
  color: var(--accent);
  font-weight: 600;
  margin-right: 4px;
}

/* ── LOCATIONS ── */
.bangalore-locations-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.bangalore-locations-card {
  background: var(--background-alt);
  border-radius: 20px;
  box-shadow: 4px 4px 0 black;
  padding: 32px 28px;
  text-align: center;
}

.bangalore-locations-card .bangalore-section-heading {
  margin: 0 0 20px;
}

.bangalore-why-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.bangalore-why-card {
  background: var(--background-alt);
  border-bottom: 2.5px solid black;
  border-right: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 black;
  padding: 32px 28px;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.bangalore-why-card .bangalore-section-heading {
  margin: 0 0 18px;
}

.bangalore-why-card-intro {
  color: var(--foreground-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.bangalore-why-card .bangalore-services-list li,
.bangalore-why-card .bangalore-why-list li {
  font-size: 14px;
}

.bangalore-why-card .bangalore-why-list li::before {
  width: 24px;
  height: 24px;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .bangalore-why-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bangalore-locations-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.bangalore-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.bangalore-location-tag {
  background: lightgray opacity(0.5);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: black;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.bangalore-location-tag:hover {
  background: rgb(255, 191, 0, 0.2);
  border-color: var(--accent);
}

/* ── SIDEBAR ── */
.bangalore-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: bangalore-fadeUp 0.5s 0.15s ease both;
}

.bangalore-sidebar-card {
  flex: 1;
}

.bangalore-sidebar-card {
  background: var(--background-alt);
  border-bottom: 2.5px solid black;
  border-right: 2.5px solid black;
  border-radius: 14px;
  box-shadow: 6px 6px 0px black;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bangalore-sidebar-card-header {
  padding: 20px 24px;
  text-align: center;
}

.bangalore-sidebar-card-header h3 {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 0.3em 1.5em;
  border-radius: 50px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  transform: rotate(-2deg);
  transition: var(--transition-all);
  letter-spacing: 1px;
}

.bangalore-sidebar-card-header h3:hover {
  transform: rotate(0deg);
  box-shadow: 6px 6px 0px 0px #000;
}

.bangalore-sidebar-card-body {
  padding: 24px;
}

.bangalore-btn-emergency,
.bangalore-btn-call {
  background: #081b49 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 12px 20px;
  border-radius: 99px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  margin-bottom: 12px;
  gap: 8px;
}

.bangalore-btn-emergency:hover,
.bangalore-btn-call:hover {
  background: var(--accent) !important;
  color: #000000 !important;
  border-color: var(--accent) !important;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5) !important;
  transform: translateY(-2px);
}

.bangalore-btn-call:hover svg {
  fill: #000000;
}

.bangalore-btn-call svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  transition: fill 0.2s ease;
}

.bangalore-sidebar-divider {
  border: none;
  border-top: 1px solid lightgray;
  margin: 22px 0;
}

.bangalore-sidebar-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #081b49;
  margin-bottom: 12px;
}

.bangalore-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bangalore-check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: black;
}

.bangalore-check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes bangalore-fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bangalore-main-content {
  animation: bangalore-fadeUp 0.5s ease both;
}

/* ── UNIVERSITY CARDS ── */
.bangalore-uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.bangalore-uni-card {
  background: var(--background-alt);
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  border-radius: 14px;
  box-shadow: 5px 5px 0px black;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.bangalore-uni-card:hover {
  box-shadow: 7px 7px 0px black;
}

.bangalore-uni-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.bangalore-uni-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: black;
  line-height: 1.25;
}

.bangalore-uni-badge {
  background: var(--accent);
  color: var(--background-alt);
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}

.bangalore-uni-label {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
  margin-bottom: 2px;
  font-size: 12px !important;
}

.bangalore-uni-desc {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.65;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.bangalore-uni-link {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgb(0, 0, 0, 0.1);
  transition: color 0.2s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bangalore-page-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "content"
      "sidebar";
    padding: 32px 20px 60px;
  }

  .bangalore-sidebar {
    position: static;
  }

  .bangalore-sidebar {
    position: static;
  }

  .bangalore-sidebar {
    position: static;
  }

  .bangalore-nav {
    padding: 14px 20px;
  }

  .bangalore-nav-links {
    display: none;
  }

  .bangalore-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bangalore-uni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .bangalore-uni-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   WORLD UNIVERSITY PAGE
   =================================================== */
section {
  background-color: var(--background-alt);
}

.world-section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 40px;
}

.world-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.world-section-subtitle {
  text-align: center;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 18px;
  color: black;
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

/* ===== CARDS ===== */
.world-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.world-cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.world-card {
  background: var(--background-alt);
  border-bottom: 2.5px solid black;
  border-right: 2.5px solid black;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: black;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  box-shadow: 6px 6px 0 black;
}

.world-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.world-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.world-card p {
  font-size: 16px;
  color: black;
  line-height: 1.65;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

/* ===== DARK SECTION ===== */
.world-section-dark {
  background: var(--accent);
  color: black;
}

.world-section-dark .world-section-title {
  color: black;
}

.world-section-dark .world-section-subtitle {
  color: rgba(0, 0, 0, 0.6);
}

.world-dark-card {
  background: #081b49;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 36px 32px;
}

.world-dark-card .world-card-title {
  color: var(--background) !important;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.world-dark-card p {
  color: rgba(255, 255, 255, 0.7);
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
}

/* Two-column layout */
.world-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.world-two-col-text h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: black;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.world-two-col-text p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: black;
  font-size: 18px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.world-checklist {
  list-style: none;
}

.world-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: black;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 18px;
  border-bottom: 1px solid rgb(0, 0, 0, 0.1);
}

.world-checklist li:last-child {
  border-bottom: none;
}

.world-check-icon {
  color: black;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.world-info-box {
  background: rgb(8, 27, 73, 0.1);
  border: 2px solid #081b49;
  border-radius: 16px;
  padding: 32px;
}

.world-info-box h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--background-alt);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.world-card ul li {
  font-size: 14px;
  color: black;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.world-card ul li::before {
  content: "•";
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
}

/* ===== FAQ ===== */
.world-faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.world-faq-item {
  background: var(--background-alt);
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 6px 6px 0 black;
  cursor: pointer;
  transition: transform 0.15s;
}

.world-faq-q {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.world-faq-a {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: black;
  line-height: 1.6;
}

/* ===== RELATED ===== */
.world-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.world-related-card {
  background: var(--background-alt);
  border: 2px solid black;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 6px 6px 0 black;
  text-decoration: none;
  color: black;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: block;
}

.world-related-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.world-related-card p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: black;
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .world-nav-links {
    display: none;
  }

  .world-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .world-stats-grid {
    grid-template-columns: 2fr 2fr;
    gap: 32px;
  }

  .world-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .world-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .world-cards-grid,
  .world-cards-grid-2,
  .world-related-grid {
    grid-template-columns: 1fr;
  }

  .world-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .world-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .world-footer-top {
    grid-template-columns: 1fr;
  }

  .world-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.about-section-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255, 193, 7, 0.04) 30px,
    rgba(255, 193, 7, 0.04) 60px
  );
  pointer-events: none;
}

.cc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 15px auto;
}

@media (max-width: 900px) {
  .cc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cc-grid {
    grid-template-columns: 1fr;
  }
}

.cc-city-card {
  display: block;
  background: var(--background-alt);
  border-right: 3px solid black;
  border-bottom: 3px solid black;
  border-radius: 18px;
  padding: 28px 26px 24px;
  text-decoration: none;
  position: relative;
  box-shadow: 5px 5px 0px black;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  animation: cc-fadeUp 0.5s ease forwards;
}

.cc-city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  border-radius: 16px;
  transition: opacity 0.22s ease;
  z-index: 0;
}

.cc-city-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 black;
}

.cc-city-card:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--cc-border);
}

.cc-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.cc-card-city-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: black;
  letter-spacing: 0.5px;
  line-height: 1;
}

.cc-card-badge {
  background: var(--accent);
  color: #111;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

.cc-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
}

.cc-card-rule {
  height: 1px;
  background: #e5e5e5;
  margin-bottom: 14px;
}

.cc-card-description {
  font-size: 16px;
  color: black;
  line-height: 1.6;
  display: block;
  overflow: visible;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.cc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.18s ease;
}

.cc-card-cta__icon {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes cc-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================
   SERVICES PAGE STYLES
   =================================================== */
.services-page-section {
  background: var(--background-alt);
  padding: 80px 0 40px;
}

.services-page-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 24px;
}

.services-page-desc {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: #4a5568;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── ZIGZAG CONTAINER ─── */
.zigzag-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each row = icon centred between a card and empty space */
.zz-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.zz-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* left card layout */
.zz-row.left .zz-card {
  grid-column: 1;
  grid-row: 1;
}

.zz-row.left .zz-spacer {
  grid-column: 3;
  grid-row: 1;
}

/* right card layout */
.zz-row.right .zz-spacer {
  grid-column: 1;
  grid-row: 1;
}

.zz-row.right .zz-card {
  grid-column: 3;
  grid-row: 1;
}

/* ─── STEP CARD ─── */

.zz-step-label {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(212, 160, 23);
  margin-bottom: 10px;
  display: none;
}

/* checklist */

.ic-blue {
  background: #2563eb;
}

.ic-green {
  background: #1a8a5a;
}

.ic-purple {
  background: #7c3aed;
}

.ic-orange {
  background: #d97706;
}

.ic-red {
  background: #dc2626;
}

.ic-navy {
  background: #1e3a5f;
}

/* ─── WHO WE SERVE ─── */

.serve-band-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.serve-band-icon {
  font-size: 34px;
  display: block;
  margin-bottom: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .zz-row,
  .zz-row.left,
  .zz-row.right {
    grid-template-columns: 1fr;
  }

  .zz-row.left .zz-card,
  .zz-row.right .zz-card {
    grid-column: 1;
    grid-row: 2;
  }

  .zz-row.left .zz-spacer,
  .zz-row.right .zz-spacer {
    display: none;
  }

  .zigzag-wrap {
    padding: 0 20px;
  }

  .serve-band-grid {
    flex-direction: column;
    align-items: stretch;
  }
}

.service-hero-banner {
  background: linear-gradient(
    135deg,
    #0a1640 0%,
    #0f2460 40%,
    #1a3a7a 75%,
    #0d1e52 100%
  );
  padding: 150px 60px 130px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Radial glow + stripe texture — same pattern as about.html */
.service-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 70% 50%,
      rgba(255, 193, 7, 0.06) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

/* Decorative ring — mirrored to left side for variety */
.service-hero-banner::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 193, 7, 0.12);
  pointer-events: none;
}

/* ── TWO-COLUMN INNER GRID ── */
.service-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── LEFT: text ── */
.service-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}

.service-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc107;
  display: inline-block;
  flex-shrink: 0;
}

.service-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 4px;
  line-height: 1;
}

.service-hero-rule {
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #ffc107, transparent);
  border: none;
  margin: 14px 0 22px;
}

.service-hero-body {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}

.service-hero-body strong {
  color: #ffc107;
  font-weight: 600;
}

/* ── RIGHT: image ── */
.service-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-img-wrap {
  width: 100%;
  isolation: isolate;
}

.service-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1) drop-shadow(0 4px 20px rgba(255, 193, 7, 0.18));
}

/* ── WAVE ── */
.service-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  z-index: 3;
}

.service-hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.zz-card {
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 8px 8px 0 #000;
  padding: 36px 32px 32px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  background: var(--background-alt);
}

.zz-card:hover {
  box-shadow: 12px 12px 0 #000;
}

/* Step number badge — matches about.html value-number circle */
.zz-step-number {
  width: 70px;
  height: 70px;
  background: var(--accent, #ffc107);
  border: 3px solid #000;
  border-radius: 50%;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px 0;
  box-shadow: 3px 3px 0 #000;
  flex-shrink: 0;
}

/* Card title — matches about.html value-card h3 */
.zz-step-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 14px;
  line-height: 1.15;
}

/* Description text */
.zz-step-desc {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 18px;
  line-height: 1.75;
}

.zz-list {
  margin-bottom: 20px !important;
}

.zz-list li {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif !important;
  font-size: 14px !important;
  color: #1a1a2e !important;
  border-bottom: 1px solid #eee !important;
  padding: 7px 0 !important;
  gap: 10px !important;
}

.zz-list li::before {
  content: "✓" !important;
  color: #ffc107 !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  background: none !important;
  background-image: none !important;
  width: auto !important;
  height: auto !important;
  margin-top: 0 !important;
  flex-shrink: 0 !important;
}

.zz-list li:last-child {
  border-bottom: none !important;
}

.zz-impact {
  border-left: 4px solid #ffc107 !important;
  background: rgba(255, 193, 7, 0.06) !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 12px 16px !important;
  margin-top: 4px !important;
}

.zz-impact-label {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  color: #ffc107 !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}

.zz-impact p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif !important;
  font-size: 14px !important;
  color: #1a1a2e !important;
  font-style: italic !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.services-page-title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(36px, 5vw, 60px) !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 16px !important;
}

.services-page-tag {
  background: var(--accent);
  color: #000;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  border-radius: 999px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 800;
  padding: 10px 28px;
  display: inline-block;
  margin-bottom: 16px;
  transform: rotate(-1deg);
  transition: transform 0.2s ease;
  text-transform: uppercase;
}

.services-page-tag:hover {
  transform: rotate(0deg) !important;
}

.serve-band {
  background: var(--background-alt);
  background: var(--background-alt);
  padding: 32px 32px 98px;
  text-align: center;
}

.serve-band-title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(28px, 4vw, 48px) !important;
  color: #1a1a2e !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.serve-band-card {
  background: var(--background-alt) !important;
  border-right: 2px solid #000 !important;
  border-bottom: 2px solid #000 !important;
  border-radius: 16px !important;
  box-shadow: 6px 6px 0 #000 !important;
  transition:
    transform 0.2s,
    box-shadow 0.2s !important;
  display: block !important;
  text-decoration: none !important;
  padding: 32px 24px !important;
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.serve-band-card h3 {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 22px !important;
  color: #1a1a2e !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 8px !important;
}

.serve-band-card p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif !important;
  font-size: 14px !important;
  color: #4a5568 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service-hero-banner {
    padding: 140px 40px 120px;
  }

  .service-hero-inner {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .service-hero-banner {
    padding: 130px 24px 110px;
  }

  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-hero-right {
    order: -1;
  }

  .service-hero-title {
    font-size: clamp(36px, 8vw, 56px);
  }
}

@media (max-width: 480px) {
  .service-hero-banner {
    padding: 120px 20px 100px;
  }

  .service-hero-body {
    font-size: 14px;
  }
}

.dest-hero-banner {
  background: #081b49;
  padding: 160px 40px 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* diagonal stripe texture like reference */
.dest-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.015) 40px,
    rgba(255, 255, 255, 0.015) 80px
  );
  pointer-events: none;
}

/* wave SVG at bottom */
.dest-hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.dest-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

.dest-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 auto 16px;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  line-height: 1.05;
}

/* ── BELOW HERO: centred intro ── */
.dest-intro-section {
  background: var(--background-alt);
  padding: 70px 40px 20px;
}

.dest-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .dest-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dest-hero-banner {
    padding: 140px 24px 100px;
  }

  .dest-intro-section {
    padding: 50px 24px 60px;
  }
}

@media (max-width: 560px) {
  .dest-hero-banner {
    padding: 120px 20px 90px;
  }
}

.dest-intro-body {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: black;
  padding-top: 20px;
}

.dest-intro-body strong {
  color: black;
  font-weight: 600;
}

.dest-intro-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.dest-intro-tag {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #ffc107;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ── Responsive badge sizing (consistent across all section badges) ── */
@media (max-width: 900px) {
  h2.section-badge {
    font-size: 22px !important;
    padding: 0.5rem 1.2rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 600px) {
  h2.section-badge {
    font-size: 20px !important;
    padding: 0.5rem 1rem;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0px 0px #000000;
  }
}

.sh-hero {
  position: relative;
  min-height: 58vh;
  background: #081b49;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dot-grid texture */
.sh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 56px 56px;
  z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 30% 50%,
      rgba(255, 193, 7, 0.06) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

/* ── Centre content ── */
.sh-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Main headline */
.sh-headline {
  margin-bottom: 6px;
  color: var(--background-alt);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  line-height: 1.05;
  padding-top: 20px;
}

.sh-headline .outline {
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--accent);
}

/* ── New wave: two-layer ripple ── */
.sh-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.sh-waves svg {
  display: block;
  width: 100%;
}

/* Entrance fade-up */
.sh-center > * {
  opacity: 0;
  transform: translateY(18px);
  animation: up 0.65s ease forwards;
}

.sh-center > *:nth-child(1) {
  animation-delay: 0.08s;
}

.sh-center > *:nth-child(2) {
  animation-delay: 0.22s;
}

.sh-center > *:nth-child(3) {
  animation-delay: 0.38s;
}

@keyframes up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}

@media (max-width: 1020px) and (min-width: 769px) {
  .sh-hero {
    min-height: auto;
  }

  .sh-center {
    padding: 72px 32px 80px;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .sh-hero {
    min-height: auto;
  }

  .sh-center {
    padding: 100px 20px 100px;
    gap: 14px;
  }

  .sh-rule {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .sh-center {
    padding: 36px 16px 90px;
  }
}

@media (max-width: 1020px) and (min-width: 760px) {
  .sh-headline {
    padding-top: 82px;
  }
}

@media (max-width: 480px) {
  .sh-headline {
    padding-top: 62px;
  }
}

/* ─── shared helpers ─── */
.etp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.etp-tag {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  margin-bottom: 16px;
  transform: rotate(-1.5deg);
  transition: var(--t);
  cursor: default;
}

.etp-tag:hover {
  transform: rotate(0deg);
  box-shadow: 5px 5px 0 #000;
}

.etp-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: black;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
}

.etp-h2 span {
  color: hsl(220, 100%, 45%);
}

.etp-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--foreground-muted);
  max-width: 620px;
}

.etp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
}

.etp-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

/* ============================================================
       HERO
    ============================================================ */
.etp-hero {
  background: #081b49;
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  /* reduced top padding */
}

.etp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 60% at 75% 40%,
      rgba(255, 193, 7, 0.08) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

/* ── centred single-column hero ── */
.etp-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}

.etp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 10px;
  margin-top: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

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

@keyframes etp-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.etp-hero-title {
  margin-bottom: 6px;
  color: var(--background-alt);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  line-height: 1.05;
  padding-top: 20px;
}

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

.etp-hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  margin-bottom: 28px;
  text-align: center;
}

.etp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.etp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
}

.etp-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translate(-2px, -2px);
}

/* hero right removed — centred layout */
.etp-hero-right {
  display: none;
}

.etp-hero-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: -1px;
}

.etp-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

.etp-why {
  background: var(--background-alt);
  padding: 80px 0 100px;
}

/* ── two-column layout: left big card | right mini cards ── */
.etp-why-hd {
  display: none;
}

/* header merged into left card */

.etp-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* LEFT — dark feature card */
.etp-why-left {
  background: #081b49;
  border: 2px solid #000;
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--accent);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.etp-why-left-tag {
  display: inline-block;
  background: none;
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  align-self: flex-start;
}

.etp-why-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.05;
}

.etp-why-left h2 span {
  color: var(--accent);
}

.etp-why-left-rule {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border: none;
}

.etp-why-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.etp-why-body strong {
  color: #fff;
  font-weight: 600;
}

.etp-why-left-cta {
  margin-top: 4px;
}

/* RIGHT — 2×2 + 1 mini cards grid */
.etp-why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.etp-why-mini {
  background: var(--background-alt);
  border: 2px solid #000;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #000;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.etp-why-mini:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.etp-why-mini:hover::after {
  transform: scaleX(1);
}

/* last card spans full width */
.etp-why-mini:last-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.etp-why-mini:last-child .etp-why-mini-text {
  flex: 1;
}

.etp-why-mini-ico {
  width: 62px;
  height: 62px;
  background: var(--background-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.etp-why-mini h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.1;
}

.etp-why-mini p {
  font-size: 14px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

/* hide old unused elements */
.etp-why-intro {
  display: none;
}

.etp-why-cards {
  display: none;
}

.etp-why-grid {
  display: none;
}

.etp-why-box {
  display: none;
}

.etp-why-cta {
  display: none;
}

@media (max-width: 900px) {
  .etp-why-layout {
    grid-template-columns: 1fr;
  }

  .etp-why-left {
    padding: 32px 28px;
  }
}

/* ============================================================
       MODULES 
    ============================================================ */
.etp-modules {
  background: var(--background-alt);
  padding: 0;
}

.etp-modules-hd {
  text-align: center;
  margin-bottom: 56px;
}

.etp-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.etp-mcard {
  background: var(--background-alt);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 20px;
  box-shadow: 4px 4px 0 black;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.etp-mcard:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 black;
}

.etp-mcard:hover::before {
  transform: scaleX(1);
}

.etp-mcard-num {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border: 2.5px solid #000;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.etp-mcard-tag {
  display: inline-block;
  background: rgba(8, 27, 73, 0.06);
  border: 1px solid rgba(8, 27, 73, 0.14);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #081b49;
  padding: 3px 11px;
  align-self: flex-start;
}

.etp-mcard-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.15;
}

.etp-mcard-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gradient-primary);
  flex: 1;
}

/* CTA card override */
.etp-mcard-cta {
  background: #081b49;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
  box-shadow: 4px 4px 0 var(--accent);
}

.etp-mcard-cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--accent);
}

.etp-mcard-cta::before {
  background: var(--accent);
}

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

.etp-mcard-cta .etp-mcard-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
       PROCESS
    ============================================================ */
.etp-process {
  background: var(--background-alt);
  padding: 80px 0 100px;
}

.etp-process-hd {
  text-align: center;
  margin-bottom: 64px;
}

.etp-process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.etp-process-track::before {
  content: "";
  position: absolute;
  top: 37px;
  left: calc(40px + 10%);
  right: calc(40px + 10%);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #000 0,
    #000 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.etp-pstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.etp-pcirc {
  width: 74px;
  height: 74px;
  background: var(--accent);
  border: 3px solid #000;
  border-radius: 50%;
  box-shadow: 4px 4px 0 #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.25s ease;
}

.etp-pstep:hover .etp-pcirc {
  transform: scale(1.1);
  box-shadow: 6px 6px 0 #000;
}

.etp-ptitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 8px;
  line-height: 1.2;
}

.etp-pdesc {
  font-size: 12px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

/* ============================================================
       FAQ
    ============================================================ */
.etp-faq {
  background: var(--background-alt);
  padding: 40px 0;
}

.etp-faq-hd {
  text-align: center;
  margin-bottom: 56px;
}

.etp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.etp-faq-item {
  background: var(--card);
  border: 2px solid #000;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #000;
  overflow: hidden;
  transition: all 0.25s ease;
}

.etp-faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}

.etp-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.etp-faq-q {
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.2;
}

.etp-faq-arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.25s ease;
}

.etp-faq-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #000;
  stroke-width: 2.5;
}

.etp-faq-item.open .etp-faq-arrow {
  transform: rotate(180deg);
}

.etp-faq-a {
  display: none;
  padding: 0 26px 20px;
  padding-top: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--foreground-muted);
}

.etp-faq-item.open .etp-faq-a {
  display: block;
  animation: etp-fd 0.25s ease;
}

@keyframes etp-fd {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
       FINAL CTA
    ============================================================ */
.etp-final {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.etp-final-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.etp-final-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 62px);
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 6px;
}

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

.etp-final-desc {
  font-size: 16px;
  line-height: 1.8;
  color: black;
  max-width: 520px;
  margin: 0 auto 40px;
}

.etp-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: all 0.25s ease;
}

.etp-final-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
}

.etp-final-note {
  margin-top: 18px;
  font-size: 12px;
  color: black;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1024px) {
  .etp-hero-grid {
    gap: 40px;
  }

  .etp-why-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .etp-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .etp-process-track {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .etp-process-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .etp-hero {
    padding-top: 100px;
  }

  .etp-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .etp-hero-left {
    padding-bottom: 0;
  }

  .etp-why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .etp-modules-grid {
    grid-template-columns: 1fr;
  }

  .etp-stat-cell {
    border-right: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 24px;
  }

  .etp-stat-cell:last-child {
    border-bottom: none;
  }

  .etp-inner,
  .etp-process-track {
    padding: 0 24px;
  }

  .etp-process-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .etp-hero-title {
    font-size: 36px;
  }

  .etp-why-cards {
    grid-template-columns: 1fr;
  }

  .etp-final-title {
    font-size: 30px;
  }

  .etp-stat-big {
    font-size: 54px;
  }
}

/* ── shared helpers ── */
.sap-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sap-tag {
  display: inline-block;
  width: fit-content;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  margin-bottom: 14px;
  transform: rotate(-1.5deg);
  transition: var(--t);
  cursor: default;
}

.sap-tag:hover {
  transform: rotate(0deg);
  box-shadow: 5px 5px 0 #000;
}

.sap-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--foreground);
  line-height: 1.05;
  margin-bottom: 14px;
}

.sap-h2 span {
  color: hsl(220, 100%, 45%);
}

.sap-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--foreground-muted);
  max-width: 640px;
}

.sap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
}

.sap-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.sap-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--t);
}

.sap-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translate(-2px, -2px);
}

/* ============================================================
       HERO
    ============================================================ */
.sap-hero {
  background: #081b49;
  position: relative;
  overflow: hidden;
  padding: 130px 0 0;
}

.sap-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 80% 30%,
      rgba(255, 193, 7, 0.09) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

.sap-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sap-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

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

@keyframes sap-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.sap-hero-title {
  margin-bottom: 6px;
  color: var(--background-alt);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 1000px;
  position: relative;
  z-index: 2;
  line-height: 1.05;
  padding-top: 20px;
}

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

.sap-hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin-bottom: 36px;
}

.sap-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

/* wave */
.sap-hero-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
}

.sap-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ============================================================
       PROBLEM / INTRO — two columns
    ============================================================ */
.sap-intro {
  background: var(--background-alt);
  padding: 80px 0;
}

.sap-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* LEFT card — white neo-brutalist */
.sap-intro-left {
  background: var(--background-alt);
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}

.sap-intro-left .sap-sub {
  max-width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
}

.sap-intro-left .sap-tag {
  margin-bottom: 10px;
}

.sap-intro-left .sap-h2 {
  margin-bottom: 10px;
}

/* push the button to the bottom */
.sap-intro-left .sap-btn {
  margin-top: auto;
  align-self: flex-start;
}

.sap-pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.sap-pain-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--foreground-muted);
  padding: 9px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: var(--t);
  line-height: 1.4;
}

.sap-pain-list li:hover {
  border-color: var(--accent);
  box-shadow: 3px 3px 0 var(--accent);
  transform: translateX(4px);
}

.sap-pain-list li::before {
  content: "×";
  font-size: 16px;
  font-weight: 900;
  color: #e53e3e;
  flex-shrink: 0;
  line-height: 1;
}

/* RIGHT card — dark navy neo-brutalist */
.sap-intro-right {
  background: #081b49;
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--accent);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sap-solve-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sap-solve-row:last-child {
  border-bottom: none;
}

.sap-intro-right-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sap-solve-ico {
  width: 42px;
  height: 42px;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sap-solve-row h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.sap-solve-row p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ============================================================
       WHAT'S INCLUDED
    ============================================================ */
.sap-included {
  background: var(--background-alt);
  padding: 80px 0;
}

.sap-included-hd {
  text-align: center;
  margin-bottom: 56px;
}

.sap-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sap-inc-card {
  background: var(--background-alt);
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

.sap-inc-card:hover {
  box-shadow: 6px 6px 0 black;
}

.sap-inc-card:hover::before {
  transform: scaleX(1);
}

.sap-inc-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border: 2.5px solid #000;
  border-radius: 50%;
  box-shadow: 3px 3px 0 #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sap-inc-label {
  display: inline-block;
  background: rgba(8, 27, 73, 0.06);
  border: 1px solid rgba(8, 27, 73, 0.15);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #081b49;
  padding: 3px 12px;
  align-self: flex-start;
}

.sap-inc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.15;
}

.sap-inc-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--foreground-muted);
  flex: 1;
}

/* ============================================================
       WHY US — left dark card + right 2×2 mini cards
    ============================================================ */
.sap-why {
  background: var(--background-alt);
  padding: 80px 0;
}

.sap-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* left */
.sap-why-left {
  background: #081b49;
  border: 2px solid #000;
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--accent);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.sap-why-left-tag {
  display: inline-block;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  align-self: flex-start;
}

.sap-why-left h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.05;
}

.sap-why-left h2 span {
  color: var(--accent);
}

.sap-why-rule {
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border: none;
}

.sap-why-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
}

.sap-why-body strong {
  color: #fff;
}

.sap-why-left-cta {
  margin-top: 8px;
}

/* right mini cards */
.sap-why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sap-why-mini {
  background: var(--card);
  border: 2px solid #000;
  border-radius: 16px;
  box-shadow: 4px 4px 0 #000;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.sap-why-mini:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.sap-why-mini:hover::after {
  transform: scaleX(1);
}

.sap-why-mini:last-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.sap-why-mini:last-child .sap-why-mini-text {
  flex: 1;
}

.sap-why-ico {
  width: 64px;
  height: 64px;
  background: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.sap-why-mini h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.1;
}

.sap-why-mini p {
  font-size: 12px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

/* ============================================================
       PROCESS
    ============================================================ */
.sap-process {
  background: var(--background-alt);
  padding: 80px 0 50px;
}

.sap-process-hd {
  text-align: center;
  margin-bottom: 64px;
}

.sap-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.sap-process-track::before {
  content: "";
  position: absolute;
  top: 37px;
  left: calc(40px + 12.5%);
  right: calc(40px + 12.5%);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #000 0,
    #000 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.sap-pstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.sap-pcirc {
  width: 74px;
  height: 74px;
  background: var(--accent);
  border: 3px solid #000;
  border-radius: 50%;
  box-shadow: 4px 4px 0 #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--t);
}

.sap-pstep:hover .sap-pcirc {
  transform: scale(1.1);
  box-shadow: 6px 6px 0 #000;
}

.sap-ptitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 8px;
  line-height: 1.2;
}

.sap-pdesc {
  font-size: 12px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

/* ============================================================
       FAQ
    ============================================================ */
.sap-faq {
  background: var(--background-alt);
  padding: 80px 0;
}

.sap-faq-hd {
  text-align: center;
  margin-bottom: 56px;
}

.sap-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sap-faq-item {
  background: var(--card);
  border: 2px solid #000;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #000;
  overflow: hidden;
  transition: var(--t);
}

.sap-faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}

.sap-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.sap-faq-q {
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.2;
}

.sap-faq-arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.25s ease;
}

.sap-faq-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #000;
  stroke-width: 2.5;
}

.sap-faq-item.open .sap-faq-arrow {
  transform: rotate(180deg);
}

.sap-faq-a {
  display: none;
  padding: 14px 26px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: black;
}

.sap-faq-item.open .sap-faq-a {
  display: block;
  animation: sap-fd 0.25s ease;
}

@keyframes sap-fd {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
       FINAL CTA
    ============================================================ */
.sap-final {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.sap-final-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sap-final-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 62px);
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 6px;
}

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

.sap-final-desc {
  font-size: 16px;
  line-height: 1.8;
  color: black;
  max-width: 520px;
  margin: 0 auto 40px;
}

.sap-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition: var(--t);
}

.sap-final-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
}

.sap-final-note {
  margin-top: 18px;
  font-size: 12px;
  color: black;
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1024px) {
  .sap-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .sap-intro-left .sap-btn {
    margin-top: 24px;
  }

  .sap-why-layout {
    grid-template-columns: 1fr;
  }

  .sap-process-track {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .sap-process-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .sap-hero {
    padding-top: 100px;
  }

  .sap-hero-inner {
    padding: 0 24px 60px;
  }

  .sap-inner {
    padding: 0 24px;
  }

  .sap-intro-left {
    padding: 24px 22px;
  }

  .sap-intro-right {
    padding: 24px 22px;
  }

  .sap-included-grid {
    grid-template-columns: 1fr;
  }

  .sap-stat-cell {
    border-right: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 24px;
  }

  .sap-stat-cell:last-child {
    border-bottom: none;
  }

  .sap-why-layout {
    grid-template-columns: 1fr;
  }

  .sap-process-track {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .sap-hero-title {
    font-size: 36px;
  }

  .sap-why-right {
    grid-template-columns: 1fr;
  }

  .sap-why-mini:last-child {
    grid-column: 1;
  }

  .sap-final-title {
    font-size: 30px;
  }

  .sap-stat-big {
    font-size: 54px;
  }

  .sap-ticker {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sap-ticker:last-child {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.prg-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.prg-tag {
  display: inline-block;
  width: fit-content;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  margin-bottom: 14px;
  transform: rotate(-1.5deg);
  transition: var(--t);
}

.prg-tag:hover {
  transform: rotate(0deg);
  box-shadow: 5px 5px 0 #000;
}

.prg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 32px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
}

.prg-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

/* ============================================================
       HERO
    ============================================================ */
.prg-hero {
  background: #081b49;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.prg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 60% at 75% 40%,
      rgba(255, 193, 7, 0.08) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

.prg-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.prg-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 50px;
}

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

.prg-hero-desc {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
}

.prg-hero-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: -1px;
}

.prg-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ============================================================
       PROGRAMS SECTION
    ============================================================ */
.prg-section {
  background: var(--background-alt);
  padding: 70px 0;
}

.prg-section-hd {
  text-align: center;
  margin-bottom: 56px;
}

.prg-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 50px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--foreground);
  margin-bottom: 12px;
}

.prg-section-title span {
  color: hsl(220, 100%, 45%);
}

.prg-section-subtitle {
  font-size: 15px;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* filter tabs */
.prg-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.prg-filter-btn {
  background: var(--card);
  color: var(--foreground);
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  cursor: pointer;
  transition: var(--t);
}

.prg-filter-btn:hover,
.prg-filter-btn.active {
  background: var(--accent);
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

/* programs grid */
.prg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prg-card {
  background: var(--card);
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  transition: var(--t);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}

.prg-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #000;
}

.prg-card:hover::before {
  transform: scaleX(1);
}

.prg-card-top {
  background: #081b49;
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prg-card-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
}

.prg-card-label::before {
  content: "";
}

.prg-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.prg-card-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.prg-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.prg-card-desc {
  font-size: 13px;
  color: var(--foreground-muted);
  line-height: 1.7;
  flex: 1;
}

.prg-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prg-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--foreground-muted);
}

.prg-card-feature-ico {
  width: 16px;
  height: 16px;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--accent);
  flex-shrink: 0;
}

.prg-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  transition: var(--t);
}

.prg-card-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

/* ============================================================
       FINAL CTA
    ============================================================ */
.prg-final {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.prg-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    transparent,
    transparent 50px,
    rgba(255, 255, 255, 0.012) 50px,
    rgba(255, 255, 255, 0.012) 100px
  );
  pointer-events: none;
}

.prg-final-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.prg-final-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 62px);
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 16px;
}

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

.prg-final-desc {
  font-size: 16px;
  line-height: 1.8;
  color: black;
  max-width: 550px;
  margin: 0 auto 36px;
}

/* ============================================================
   PROGRAMS RESPONSIVENESS
============================================================ */
@media (max-width: 992px) {
  .prg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .prg-hero {
    padding: 100px 0 0;
  }

  .prg-hero-inner {
    padding: 0 24px 60px;
  }

  .prg-inner {
    padding: 0 24px;
  }

  .prg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prg-final-inner {
    padding: 0 24px;
  }

  .prg-hero-title {
    font-size: clamp(36px, 8vw, 50px);
  }

  .prg-section-title {
    font-size: clamp(28px, 6vw, 40px);
  }
}

.pd-hero {
  background: #081b49;
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}

.pd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 65% at 80% 30%,
      rgba(255, 193, 7, 0.09) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

.pd-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.pd-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(36px, 5.5vw, 66px);
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  max-width: 860px;
  margin-top: 80px;
}

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

.pd-hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
}

/* wave */
.pd-hero-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
}

.pd-hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================================
       MAIN CONTENT — two-column layout
    ============================================================ */
.pd-body {
  background: var(--background-alt);
  padding: 60px 0 80px;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

/* ── LEFT COLUMN ── */
.pd-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* product image */
.pd-image-wrap {
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  position: relative;
}

.pd-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* content blocks */
.pd-block {
  background: var(--background-alt);
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  padding: 32px 30px;
  transition: var(--t);
}

.pd-block:hover {
  box-shadow: 8px 8px 0 #000;
}

.pd-block-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--foreground);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-block-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 26px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* what you get checklist */
.pd-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

.pd-checklist li:last-child {
  border-bottom: none;
}

.pd-check-ico {
  width: 28px;
  height: 28px;
  background: rgba(255, 193, 7, 0.12);
  border: 1.5px solid rgba(255, 193, 7, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pd-checklist li strong {
  display: block;
  font-weight: 600;
  color: var(--foreground);
  font-size: 18px;
  margin-bottom: 2px;
  font-family: "Bebas Neue", sans-serif;
}

/* who can benefit */
.pd-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pd-who-card {
  background: var(--background-alt);
  border-radius: 16px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  box-shadow: 6px 6px 0 black;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.pd-who-card:hover {
  box-shadow: 8px 8px 0 #000;
}

.pd-who-card:hover::before {
  transform: scaleX(1);
}

.pd-who-ico {
  font-size: 24px;
}

.pd-who-card h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--foreground);
  line-height: 1.15;
}

.pd-who-card p {
  font-size: 12px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

/* ── RIGHT COLUMN — sticky purchase card ── */
.pd-right {
  position: sticky;
  top: 84px;
}

.pd-purchase-card {
  background: var(--card);
  border: 2px solid #000;
  border-radius: 24px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
}

/* card header — dark navy */
.pd-purchase-header {
  background: #081b49;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}

.pd-purchase-program-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
}

.pd-purchase-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

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

/* price */
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pd-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.pd-price-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* card body */
.pd-purchase-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* mini feature pills */
.pd-mini-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-mini-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--foreground-muted);
  padding: 10px 14px;
  background: var(--background);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: var(--t);
}

.pd-mini-feat:hover {
  border-color: var(--accent);
  box-shadow: 2px 2px 0 var(--accent);
}

.pd-mini-feat-ico {
  font-size: 16px;
  flex-shrink: 0;
}

.pd-mini-feat strong {
  color: var(--foreground);
  font-weight: 600;
}

/* divider */
.pd-card-divider {
  height: 1px;
  background: var(--border);
}

/* meta items */
.pd-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.pd-meta-key {
  color: var(--foreground-muted);
}

.pd-meta-val {
  font-weight: 600;
  color: var(--foreground);
}

.pd-meta-val.accent {
  color: hsl(220, 100%, 45%);
}

/* guarantee badge */
.pd-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 193, 7, 0.08);
  border: 1.5px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
}

.pd-guarantee-ico {
  font-size: 22px;
  flex-shrink: 0;
}

.pd-guarantee-text {
  font-size: 12px;
  color: var(--foreground-muted);
  line-height: 1.5;
}

.pd-guarantee-text strong {
  color: var(--foreground);
  font-weight: 600;
}

/* ============================================================
       RELATED SECTION
    ============================================================ */
.pd-related {
  background: var(--background-alt);
  padding: 60px 0 80px;
}

.pd-related-hd {
  text-align: center;
  margin-bottom: 40px;
}

.pd-related-hd h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--foreground);
  margin-bottom: 8px;
}

.pd-related-hd h2 span {
  color: hsl(220, 100%, 45%);
}

.pd-related-hd p {
  font-size: 15px;
  color: var(--foreground-muted);
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pd-related-card {
  background: var(--background-alt);
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  transition: var(--t);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.pd-related-card:hover {
  box-shadow: 8px 8px 0 #000;
}

.pd-related-card-top {
  background: #081b49;
  padding: 28px 24px 22px;
  position: relative;
  overflow: hidden;
}

.pd-related-card-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 100% 0%,
    rgba(255, 193, 7, 0.1),
    transparent 65%
  );
  pointer-events: none;
}

.pd-rc-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
  font-family: "Bebas Neue", sans-serif;
}

.pd-rc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.pd-rc-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.pd-related-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pd-rc-desc {
  font-size: 13px;
  color: var(--foreground-muted);
  line-height: 1.65;
  flex: 1;
}

.pd-rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  transition: var(--t);
}

.pd-rc-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

/* ============================================================
       FOOTER
    ============================================================ */
.pd-footer {
  background: var(--dark-bg);
  padding: 40px 0 24px;
  border-top: 3px solid var(--accent);
}

.pd-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.pd-footer-logo {
  font-family: var(--ff-d);
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}

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

.pd-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.pd-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--t);
}

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

.pd-footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1024px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }

  .pd-right {
    position: static;
  }

  .pd-purchase-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .pd-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pd-inner,
  .pd-nav-inner,
  .pd-breadcrumb-inner,
  .pd-hero-inner,
  .pd-footer-inner {
    padding: 0 20px;
  }

  .pd-who-grid {
    grid-template-columns: 1fr;
  }

  .pd-related-grid {
    grid-template-columns: 1fr;
  }

  .pd-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .pd-hero-title {
    font-size: 34px;
  }

  .pd-purchase-title {
    font-size: 20px;
  }

  .pd-price {
    font-size: 42px;
  }

  .pd-who-grid {
    grid-template-columns: 1fr;
  }

  .pd-block {
    padding: 24px 20px;
  }

  .pd-purchase-body {
    padding: 20px;
  }

  .pd-purchase-header {
    padding: 22px 20px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.pd-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  border-bottom: 2px solid var(--accent);
}

.pd-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-nav-logo {
  font-family: var(--ff-d);
  font-size: 24px;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}

.pd-nav-logo span {
  color: var(--accent);
}

.pd-nav-currency-wrapper {
  position: relative;
}

.pd-nav-currency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--t);
}

.pd-nav-currency:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: #fff;
}

.pd-nav-currency-flag {
  font-size: 14px;
}

.pd-nav-currency-dropdown-arrow {
  font-size: 9px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.pd-nav-currency.active .pd-nav-currency-dropdown-arrow {
  transform: rotate(180deg);
}

/* Currency dropdown menu */
.pd-currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
  z-index: 1000;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

.pd-currency-dropdown-menu.active {
  display: flex;
}

.pd-currency-option {
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: var(--t);
  border-bottom: 1px solid #f0f0f0;
}

.pd-currency-option:last-child {
  border-bottom: none;
}

.pd-currency-option:hover {
  background: #f5f5f5;
  color: #081b49;
}

.pd-currency-option.selected {
  background: #f0f0ff;
  color: #081b49;
  font-weight: 600;
}

.pd-currency-option-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 6px 0;
}

.pd-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--t);
}

.pd-nav-back:hover {
  color: var(--accent);
}

.pd-nav-back svg {
  width: 16px;
  height: 16px;
}

/* breadcrumb */
.pd-breadcrumb {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.pd-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--foreground-muted);
}

.pd-breadcrumb a {
  color: var(--foreground-muted);
  text-decoration: none;
  transition: var(--t);
}

.pd-breadcrumb a:hover {
  color: var(--dark-bg);
}

.pd-breadcrumb-sep {
  opacity: 0.4;
}

.pd-breadcrumb-current {
  color: var(--foreground);
  font-weight: 600;
}

.pd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pd-tag {
  display: inline-block;
  width: fit-content;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  margin-bottom: 12px;
  transform: rotate(-1.5deg);
  transition: var(--t);
  cursor: default;
}

.pd-tag:hover {
  transform: rotate(0deg);
  box-shadow: 5px 5px 0 #000;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.pd-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.pd-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--foreground);
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
  width: 100%;
}

.pd-btn-outline:hover {
  background: var(--foreground);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.etp-pd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.etp-pd-tag {
  display: inline-block;
  width: fit-content;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  margin-bottom: 12px;
  transform: rotate(-1.5deg);
  transition: var(--t);
  cursor: default;
}

.etp-pd-tag:hover {
  transform: rotate(0deg);
  box-shadow: 5px 5px 0 #000;
}

.etp-pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
  text-decoration: none;
  transition: var(--t);
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.etp-pd-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

/* ============================================================
       NAV BAR
    ============================================================ */
.etp-pd-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  border-bottom: 2px solid var(--accent);
}

.etp-pd-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.etp-pd-nav-logo {
  font-family: var(--ff-d);
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}

.etp-pd-nav-logo span {
  color: var(--accent);
}

.etp-pd-nav-currency-wrapper {
  position: relative;
}

.etp-pd-nav-currency {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--t);
}

.etp-pd-nav-currency:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: #fff;
}

.etp-pd-nav-currency-flag {
  font-size: 14px;
}

.etp-pd-nav-currency-dropdown-arrow {
  font-size: 9px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.etp-pd-nav-currency.active .etp-pd-nav-currency-dropdown-arrow {
  transform: rotate(180deg);
}

/* Currency dropdown menu */
.etp-pd-currency-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 0;
  min-width: 200px;
  z-index: 1000;
  overflow: hidden;
  max-height: 400px;
  overflow-y: auto;
}

.etp-pd-currency-dropdown-menu.active {
  display: flex;
}

.etp-pd-currency-option {
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: var(--t);
  border-bottom: 1px solid #f0f0f0;
}

.etp-pd-currency-option:last-child {
  border-bottom: none;
}

.etp-pd-currency-option:hover {
  background: #f5f5f5;
  color: #081b49;
}

.etp-pd-currency-option.selected {
  background: #f0f0ff;
  color: #081b49;
  font-weight: 600;
}

.etp-pd-currency-option-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 6px 0;
}

.etp-pd-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t);
}

.etp-pd-nav-back:hover {
  color: var(--accent);
}

.etp-pd-nav-back svg {
  width: 18px;
  height: 18px;
}

/* breadcrumb */
.etp-pd-breadcrumb {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.etp-pd-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--foreground-muted);
}

.etp-pd-breadcrumb a {
  color: var(--foreground-muted);
  text-decoration: none;
  transition: var(--t);
}

.etp-pd-breadcrumb a:hover {
  color: var(--dark-bg);
}

.etp-pd-breadcrumb-current {
  color: var(--foreground);
  font-weight: 600;
}

/* ============================================================
       HERO — compact
    ============================================================ */
.etp-pd-hero {
  background: #081b49;
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}

.etp-pd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 65% at 80% 30%,
      rgba(255, 193, 7, 0.09) 0%,
      transparent 65%
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.012) 50px,
      rgba(255, 255, 255, 0.012) 100px
    );
  pointer-events: none;
}

.etp-pd-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.etp-pd-hero-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: clamp(36px, 5.5vw, 66px);
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  max-width: 860px;
  font-weight: 700;
  margin-top: 80px;
}

.etp-pd-hero-title span {
  color: var(--accent);
}

.etp-pd-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
}

.etp-pd-hero-wave {
  position: relative;
  z-index: 3;
  line-height: 0;
}

.etp-pd-hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================================
       MAIN CONTENT
    ============================================================ */
.etp-pd-body {
  background: var(--background-alt);
  padding: 50px 0 70px;
}

.etp-pd-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* ── LEFT COLUMN ── */
.etp-pd-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* product image */
.etp-pd-image-wrap {
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  position: relative;
}

.etp-pd-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* content blocks */
.etp-pd-block {
  background: var(--background-alt);
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  padding: 32px 30px;
  transition: var(--t);
}

.etp-pd-block:hover {
  box-shadow: 8px 8px 0 #000;
}

.etp-pd-block-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--foreground);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.etp-pd-block-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* feature list */
.etp-pd-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.etp-pd-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--foreground-muted);
  line-height: 1.6;
}

.etp-pd-features li:last-child {
  border-bottom: none;
}

.etp-pd-feat-num {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 13px;
  color: #000;
  flex-shrink: 0;
  font-weight: 700;
}

.etp-pd-features li strong {
  display: block;
  font-weight: 600;
  color: var(--foreground);
  font-size: 18px;
  margin-bottom: 2px;
  font-family: "Bebas Neue", sans-serif;
}

/* who can benefit */
.etp-pd-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.etp-pd-who-card {
  background: var(--background-alt);
  border-radius: 16px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  box-shadow: 6px 6px 0 black;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.etp-pd-who-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 #000;
}

.etp-pd-who-card:hover::before {
  transform: scaleX(1);
}

.etp-pd-who-ico {
  font-size: 22px;
}

.etp-pd-who-card h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--foreground);
  line-height: 1.15;
}

.etp-pd-who-card p {
  font-size: 12px;
  color: var(--foreground-muted);
  line-height: 1.5;
}

/* ── RIGHT COLUMN — sticky purchase card ── */
.etp-pd-right {
  position: sticky;
  top: 72px;
}

.etp-pd-purchase-card {
  background: var(--card);
  border: 2px solid #000;
  border-radius: 24px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
}

/* card header */
.etp-pd-purchase-header {
  background: #081b49;
  padding: 26px 26px 20px;
  position: relative;
  overflow: hidden;
}

.etp-pd-purchase-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 80% at 110% 110%,
    rgba(255, 193, 7, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.etp-pd-program-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-family: "Bebas Neue", sans-serif;
}

.etp-pd-purchase-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.etp-pd-purchase-title span {
  color: var(--accent);
}

/* price */
.etp-pd-price-section {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.etp-pd-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.etp-pd-price-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

/* card body */
.etp-pd-purchase-body {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* features pills */
.etp-pd-mini-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.etp-pd-mini-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--foreground-muted);
  padding: 9px 12px;
  background: var(--background);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: var(--t);
}

.etp-pd-mini-feat:hover {
  border-color: var(--accent);
  box-shadow: 2px 2px 0 var(--accent);
}

.etp-pd-mini-feat-ico {
  font-size: 14px;
  flex-shrink: 0;
}

.etp-pd-mini-feat strong {
  color: var(--foreground);
  font-weight: 600;
}

/* divider */
.etp-pd-divider {
  height: 1px;
  background: var(--border);
}

/* meta items */
.etp-pd-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.etp-pd-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.etp-pd-meta-key {
  color: var(--foreground-muted);
}

.etp-pd-meta-val {
  font-weight: 600;
  color: var(--foreground);
}

.etp-pd-meta-val.accent {
  color: hsl(220, 100%, 45%);
}

/* guarantee */
.etp-pd-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 193, 7, 0.08);
  border: 1.5px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 11px 14px;
}

.etp-pd-guarantee-ico {
  font-size: 20px;
  flex-shrink: 0;
}

.etp-pd-guarantee-text {
  font-size: 11px;
  color: var(--foreground-muted);
  line-height: 1.4;
}

.etp-pd-guarantee-text strong {
  color: var(--foreground);
  font-weight: 600;
}

/* ============================================================
       SIMILAR PROGRAMS SECTION
    ============================================================ */
.etp-pd-similar {
  background: var(--background-alt);
  padding: 60px 0 70px;
}

.etp-pd-similar-hd {
  text-align: center;
  margin-bottom: 48px;
}

.etp-pd-similar-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--foreground);
  margin-bottom: 8px;
}

.etp-pd-similar-title span {
  color: hsl(220, 100%, 45%);
}

.etp-pd-similar-desc {
  font-size: 14px;
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

.etp-pd-similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.etp-pd-similar-card {
  background: var(--background-alt);
  border: 2px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  transition: var(--t);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.etp-pd-similar-card:hover {
  box-shadow: 8px 8px 0 #000;
}

.etp-pd-similar-top {
  background: #081b49;
  padding: 26px 24px 20px;
  position: relative;
  overflow: hidden;
}

.etp-pd-similar-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 100% 0%,
    rgba(255, 193, 7, 0.1),
    transparent 65%
  );
  pointer-events: none;
}

.etp-pd-sim-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
  font-family: "Bebas Neue", sans-serif;
}

.etp-pd-sim-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.etp-pd-sim-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.etp-pd-similar-body {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.etp-pd-sim-desc {
  font-size: 13px;
  color: var(--foreground-muted);
  line-height: 1.65;
  flex: 1;
}

.etp-pd-sim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  text-decoration: none;
  transition: var(--t);
}

.etp-pd-sim-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

/* ============================================================
       FOOTER
    ============================================================ */
.etp-pd-footer {
  background: var(--dark-bg);
  border-top: 3px solid var(--accent);
  padding: 40px 0 24px;
}

.etp-pd-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.etp-pd-footer-logo {
  font-family: var(--ff-d);
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}

.etp-pd-footer-logo span {
  color: var(--accent);
}

.etp-pd-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.etp-pd-footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--t);
}

.etp-pd-footer-links a:hover {
  color: var(--accent);
}

.etp-pd-footer-copy {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
       RESPONSIVE
    ============================================================ */
@media (max-width: 1024px) {
  .etp-pd-layout {
    grid-template-columns: 1fr;
  }

  .etp-pd-right {
    position: static;
  }

  .etp-pd-purchase-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .etp-pd-similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .etp-pd-inner,
  .etp-pd-nav-inner,
  .etp-pd-breadcrumb-inner,
  .etp-pd-hero-inner,
  .etp-pd-footer-inner {
    padding: 0 20px;
  }

  .etp-pd-who-grid {
    grid-template-columns: 1fr;
  }

  .etp-pd-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .etp-pd-block {
    padding: 22px 20px;
  }

  .etp-pd-purchase-body {
    padding: 18px 20px;
  }

  .etp-pd-similar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .etp-pd-hero-title {
    font-size: 32px;
  }

  .etp-pd-purchase-title {
    font-size: 18px;
  }

  .etp-pd-price {
    font-size: 40px;
  }

  .etp-pd-block-title {
    font-size: 20px;
  }

  .etp-pd-similar-title {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════
         PROCESS SECTION
      ════════════════════════════════════════ */
.services-process {
  background: var(--background-alt);
  padding: 80px 0;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.process-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #081b49;
}

.process-header p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.process-step {
  position: relative;
  padding: 28px;
  background: #f8fafc;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-radius: 16px;
  text-align: center;
  box-shadow: 8px 8px 0 #000;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #ffc107;
  border: 2px solid #000;
  border-radius: 50%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 #000;
}

.process-step h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #081b49;
}

.process-step p {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5568;
}

/* ── HOW IT WORKS — Programs Page ── */
.prg-how-section {
  background: var(--background-alt);
  padding: 80px 0;
}

.prg-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.prg-how-card {
  background: var(--background-alt);
  border-radius: 50%;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  box-shadow: 6px 6px 0 #000;
  /* aspect-ratio: 1 / 0.8; */
}

.prg-how-number {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.prg-how-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a2e4a;
  margin: 0 0 0.5rem;
  letter-spacing: 0.5px;
}

.prg-how-body p {
  font-size: 0.8rem;
  color: black;
  line-height: 1.6;
  padding: 12px;
  margin: 0;
}

@media (max-width: 768px) {
  .prg-how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .prg-how-number {
    font-size: 1.8rem;
    min-width: 42px;
  }

  .prg-how-summary {
    padding: 1.25rem 1.25rem;
  }
}

.faq-section {
  background: var(--background-alt);
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #081b49;
}

.faq-script {
  font-family: "Bebas Neue", sans-serif;
  font-style: italic;
  font-weight: 400;
  color: #185fa5;
  text-transform: none;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--card);
  border: 2px solid #000;
  border-radius: 16px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
  transition: var(--transition-all);
}

.faq-item:hover {
  box-shadow: 8px 8px 0 #000;
  transform: translate(-2px, -2px);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 0.4px;
  color: #081b49;
  text-transform: none;
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--foreground-muted);
  line-height: 1.8;
  padding: 0 28px 24px;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 56px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 13px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 28px;
  }
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #000;
  stroke-width: 2.5;
}

.faq-rich-content {
  padding: 0;
}

.faq-rich-content p {
  font-size: 14px;
  color: var(--foreground);
  line-height: 1.8;
  margin: 0 0 12px;
  padding: 0 28px;
}

.faq-rich-label {
  font-weight: 700;
}

.faq-rich-list {
  margin: 0 0 12px;
  padding: 0 28px 0 48px;
}

.faq-rich-list li {
  font-size: 14px;
  color: var(--foreground);
  line-height: 1.9;
}

.faq-rich-cta a {
  color: #081b49;
  text-decoration: underline;
}

.faq-item:last-child.open .faq-answer {
  max-height: 300px;
}

.faq-rich-cta {
  font-weight: 700;
  margin-bottom: 0 !important;
  padding-bottom: 30px !important;
}

/* ===================================================
           ELUNITE DESIGN TOKENS — copied verbatim from styles.css
           so the borrowed navbar renders with its native colors.
           =================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8fafc;
  color: #201a12;
  font-family:
    "Work Sans",
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.pgi-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.pgi-eyebrow {
  display: inline-block;
  background: hsl(45, 100%, 50%);
  color: black;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 12px;
  padding: 0.6em 1.5em;
  border-radius: 50px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  transform: rotate(-2deg);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.pgi-eyebrow:hover {
  transform: rotate(0deg);
  box-shadow: 6px 6px 0px 0px #000;
}

.pgi-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid #122744;
  color: #122744;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.pgi-btn:hover {
  transform: translateY(-2px);
}

.pgi-btn-solid {
  background: #081b49;
  border-color: #081b49;
  color: #fff;
}

.pgi-btn-solid:hover {
  background: hsl(45, 100%, 50%);
  border-color: hsl(45, 100%, 50%);
  color: #000;
}

.pgi-btn-ghost-invert {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.pgi-btn-ghost-invert:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== HERO ===== */
.pgi-hero {
  background: #081b49;
  background-image:
    radial-gradient(
      circle at 82% 18%,
      rgba(231, 163, 59, 0.18),
      transparent 55%
    ),
    radial-gradient(circle at 10% 90%, rgba(255, 191, 0, 0.2), transparent 45%);
  color: #fff;
  padding: 96px 0 70px;
  position: relative;
  overflow: hidden;
}

.pgi-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 960px) {
  .pgi-hero-grid {
    grid-template-columns: 1fr;
  }
}

.pgi-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  font-size: clamp(40px, 5vw, 68px);
  margin-top: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pgi-hero h1 em {
  font-style: italic;
  color: #e7a33b;
}

.pgi-hero p.pgi-lede {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin-top: 22px;
}

.pgi-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.pgi-hero-map {
  position: relative;
  aspect-ratio: 1/1.05;
}

#pgi-india-dots {
  width: 100%;
  height: 100%;
}

.pgi-dot-fill {
  fill: #e7a33b;
  opacity: 0;
}

.pgi-dot-city {
  fill: #fff;
}

.pgi-pulse {
  fill: none;
  stroke: hsl(45, 100%, 50%);
  stroke-width: 1.4;
  opacity: 0;
}

.pgi-city-label {
  position: absolute;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: #fff;
  background: #081b49;
  padding: 3px 8px;
  white-space: nowrap;
  transform: translate(-50%, -135%);
  letter-spacing: 0.03em;
  pointer-events: none;
}

/* ===== INTRO ===== */
.pgi-intro {
  padding: 80px 0;
}

.pgi-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
}

@media (max-width: 860px) {
  .pgi-intro-grid {
    grid-template-columns: 1fr;
  }
}

.pgi-intro h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 14px;
  color: black;
}

.pgi-intro-body p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: #5b5142;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.85;
}

.pgi-intro-body p:first-child {
  margin-top: 20px;
}

.pgi-pull {
  border-left: 3px solid hsl(45, 100%, 50%);
  padding-left: 20px;
  margin: 26px 0;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 20px;
  font-style: italic;
  color: black;
  font-weight: 800;
}

/* ===== WHY SECTION ===== */
.pgi-why {
  background: var(--background-alt);
  color: #fff;
  padding: 80px 0;
}

.pgi-why h2 {
  font-family: "Bebas Neue", sans-serif;
  color: black;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 14px;
  max-width: 30ch;
}

.pgi-why-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pgi-why-card {
  background: var(--background-alt);
  border-right: 2.5px solid #000;
  border-right: 2.5px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  padding: 30px 26px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pgi-why-card:hover {
  box-shadow: 8px 10px 0 black;
}

.pgi-why-card .pgi-num {
  width: 42px;
  height: 42px;
  background: hsl(45, 100%, 50%);
  border: 3px solid #000;
  border-radius: 50%;
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 #000;
}

.pgi-why-card h3 {
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 22px;
  margin-top: 16px;
  font-weight: 600;
}

.pgi-why-card p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 10px;
}

@media (max-width: 820px) {
  .pgi-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== COVERAGE / STATES ===== */
.pgi-coverage {
  padding: 80px 0;
}

.pgi-coverage h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 14px;
}

.pgi-coverage > .pgi-wrap > p {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: black;
  max-width: 84ch;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  padding-bottom: 20px;
  padding-top: 10px;
}

.pgi-coverage > .pgi-wrap > h2 {
  font-family: "Bebas Neue", sans-serif;
  color: black;
  max-width: 64ch;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

/* ===== COURSES ===== */
.pgi-courses {
  background: var(--background-alt);
  padding: 80px 0;
}

.pgi-courses h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize !important;
  letter-spacing: 3px;
  margin-top: 14px;
}

.pgi-course-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .pgi-course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .pgi-course-grid {
    grid-template-columns: 1fr;
  }
}

.pgi-course-card {
  background: var(--background-alt);
  border-right: 2.5px solid black;
  border-bottom: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  padding: 26px 22px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pgi-course-card:hover {
  box-shadow: 8px 10px 0 black;
}

.pgi-course-card h3 {
  font-size: 18px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
}

.pgi-course-card ul {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.pgi-course-card li {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  color: black;
  padding: 5px 0;
  position: relative;
  padding-left: 16px;
}

.pgi-course-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #081b49;
}

/* ===== PROCESS ===== */
.pgi-process {
  padding: 80px 0;
}

.pgi-process h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
}

.pgi-steps {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

@media (max-width: 960px) {
  .pgi-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pgi-steps {
    grid-template-columns: 1fr;
  }
}

.pgi-step {
  position: relative;
  padding-top: 34px;
}

.pgi-step::before {
  content: attr(data-step);
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--accent);
  position: absolute;
  top: -16px;
  left: 0;
}

.pgi-step h4 {
  font-size: 18px;
  margin-top: 6px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.8px;
}

.pgi-step p {
  font-size: 14px;
  color: black;
  margin-top: 8px;
}

/* ===== COST / SCHOLARSHIP BAND ===== */
.pgi-cost {
  background: #081b49;
  color: #fff;
  padding: 80px 0;
}

.pgi-cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 860px) {
  .pgi-cost-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.pgi-cost h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 36px);
  margin-top: 14px;
  font-family: "Bebas Neue", sans-serif;
}

.pgi-cost p {
  color: #fff;
  margin-top: 16px;
  font-size: 16px;
}

.pgi-cost-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.pgi-cost-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14.5px;
}

.pgi-cost-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pgi-cost-list .pgi-amt {
  font-family: "Space Mono", monospace;
  color: #e7a33b;
}

/* ===== FAQ ===== */
.pgi-faq {
  text-align: center;
  padding: 80px 0;
}

.pgi-faq .pgi-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.pgi-faq h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
}

.pgi-faq-list {
  margin: 40px auto 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.pgi-faq-item {
  background: #fff;
  border: 2px solid #000;
  border-radius: 16px;
  box-shadow: 5px 5px 0 #000;
  overflow: hidden;
  transition: all 0.25s ease;
}

.pgi-faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}

.pgi-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.pgi-faq-q {
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000;
  line-height: 1.2;
}

.pgi-faq-arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.25s ease;
}

.pgi-faq-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #000;
  stroke-width: 2.5;
}

.pgi-faq-item.pgi-open .pgi-faq-arrow {
  transform: rotate(180deg);
}

.pgi-faq-a {
  display: none;
  padding: 0 26px 20px;
  padding-top: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: black;
}

.pgi-faq-item.pgi-open .pgi-faq-a {
  display: block;
  animation: pgi-faq-fade 0.25s ease;
}

@keyframes pgi-faq-fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RELATED DESTINATIONS ===== */
.pgi-related {
  padding: 80px 0;
}

.pgi-related h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  margin-top: 14px;
}

.pgi-related-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 820px) {
  .pgi-related-grid {
    grid-template-columns: 1fr;
  }
}

.pgi-related-card {
  background: #fff;
  border: 2.5px solid #000;
  border-radius: 20px;
  box-shadow: 6px 6px 0 #000;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.pgi-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 10px 0 hsl(45, 100%, 50%);
}

.pgi-related-card .pgi-tag {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: #081b49;
  letter-spacing: 0.06em;
}

.pgi-related-card h4 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-top: 8px;
}

.pgi-related-card p {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

.pgi-related-card .pgi-go {
  margin-top: 14px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: #081b49;
}

.pgi-reveal {
  opacity: 1;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.pgi-reveal.pgi-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pgi-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Utility required by the navbar markup (mobile-menu open/close, icon swap) */
.hidden {
  display: none;
}

/* ===== INDIA PAGE – mobile section spacing ===== */
@media (max-width: 768px) {
  .pgi-intro,
  .pgi-why,
  .pgi-coverage,
  .pgi-courses,
  .pgi-process,
  .pgi-cost,
  .pgi-faq,
  .pgi-related {
    padding: 48px 0;
  }
}

.pgi-hero-map {
  position: relative;
  aspect-ratio: 1/1.05;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pgi-hero-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.35));
}

.success-cta-section {
  padding: 8px 30px 100px;
}

.success-cta-banner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--background-alt);
  border-radius: 28px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  box-shadow: 6px 6px 0 #000;
  padding: 26px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.success-cta-text h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: black;
  margin: 0 0 8px;
  line-height: 1.25;
  font-family: "Bebas Neue", sans-serif;
}

.success-cta-text p {
  font-size: 16px;
  color: black;
  margin: 0;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
}

.success-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.success-cta-btn-outline,
.success-cta-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.success-cta-btn-outline {
  border: 1.5px solid #10131a;
  background: transparent;
  color: #10131a;
}

.success-cta-btn-outline:hover {
  background: rgba(16, 19, 26, 0.06);
}

.success-cta-btn-solid {
  border: none;
  background-color: #081b49;
  color: #ffffff;
}

.success-cta-btn-solid:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .success-cta-banner {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .success-cta-actions {
    width: 100%;
  }

  .success-cta-btn-outline,
  .success-cta-btn-solid {
    flex: 1;
  }
}

.etp-pd-toolbar {
  max-width: 800px;
  margin: 0 auto 24px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 12px;
}

.etp-pd-toolbar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.etp-pd-tab-btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.etp-pd-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--foreground-muted);
  color: var(--foreground-muted);
  background: transparent;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.etp-pd-download-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--foreground, currentColor);
  color: var(--foreground, currentColor);
  transform: translateY(-1px);
}

.etp-pd-download-btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .etp-pd-toolbar {
    justify-content: center;
  }

  .etp-pd-toolbar-tabs {
    justify-content: center;
    width: 100%;
  }

  .etp-pd-download-btn {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .etp-pd-toolbar-tabs {
    flex-direction: column;
    width: 100%;
  }

  .etp-pd-tab-btn,
  .etp-pd-download-btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .etp-pd-download-btn {
    white-space: normal;
    text-align: center;
  }
}

/* ---------- Card grid utility (uses the site's own
         .zz-card / .zz-step-* feature-card language) ---------- */

.sa-section {
  padding: 40px 0;
}

.sa-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.sa-h2 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: 0.5px;
  line-height: 1.08;
  color: black;
  max-width: 780px;
}

.sa-h2 span {
  color: var(--accent);
}

.sa-lede {
  font-size: 16px;
  line-height: 1.85;
  color: black;
  max-width: 720px;
  margin-top: 18px;
}

.sa-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.sa-card-grid {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.sa-card-grid.sa-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sa-card-grid.sa-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.sa-card-grid.sa-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* zz-card is normally an <a>; these cards are plain content,
         so drop the pointer/hover-lift where there's no link */
.sa-card-grid .zz-card {
  cursor: default;
}

.sa-card-grid .zz-card.sa-refer-card {
  background: rgba(74, 85, 104, 0.04);
}

.sa-card-grid .zz-card.sa-refer-card .zz-step-number {
  background: #fff;
  color: var(--sa-navy);
}

.sa-note-bar {
  margin-top: 28px;
  font-size: 16px;
  color: black;
  border-top: 1px dashed black;
  padding-top: 20px;
  text-align: center;
}

/* ---------- Coverage links ---------- */
.sa-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 24px;
}

.sa-links-row a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--accent);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px dotted black;
}

.sa-links-row a:hover {
  color: var(--primary);
}

.sa-details {
  display: inline-block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.zz-card:hover .sa-details {
  color: var(--primary);
}

.sa-testimonial {
  background: #081b49;
  color: #fff;
  padding: 80px 0;
  margin-top: 60px;
}

.sa-testimonial .sa-eyebrow {
  color: var(--accent);
}

.sa-testimonial .sa-h2 {
  color: #fff;
}

.sa-quote {
  margin-top: 40px;
  max-width: 720px;
}

.sa-hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  margin-bottom: 16px;
  padding-top: 15px;
}

.sa-hero-desc.strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.sa-quote blockquote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.2px;
  color: #fff;
  border-left: 3px solid var(--accent);
  padding-left: 26px;
}

.sa-quote cite {
  display: block;
  margin-top: 18px;
  margin-left: 29px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .sa-wrap {
    padding: 0 24px;
  }

  .sa-section {
    padding: 56px 0;
  }

  .sa-hero-grid {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }

  .sa-hero-art {
    order: -1;
  }

  .sa-hero-art img {
    max-width: 240px;
  }

  .sa-card-grid.sa-cols-3,
  .sa-card-grid.sa-cols-2 {
    grid-template-columns: 1fr;
  }

  .sa-card-grid.sa-cols-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .sa-card-grid.sa-cols-4 {
    grid-template-columns: 1fr;
  }
}

.sa-info-card .sa-h2 {
  font-size: clamp(22px, 2.6vw, 32px);
}

.sa-info-card .sa-lede {
  max-width: none;
}

.sa-info-card .sa-eyebrow {
  margin-bottom: 14px;
}

.sa-info-card .sa-links-row {
  margin-top: 20px;
}

.sa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.sa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  background: var(--accent);
  color: black;
  border: 1px solid var(--accent);
  transition: 0.25s ease;
}

.sa-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.sa-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.sa-btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}



/* ===================================================
   BLOG LISTING PAGE (blog.html)
   =================================================== */

.blog-section {
  width: 100%;
  padding-bottom: 80px;
  background-color: var(--background-alt);
}

.blog-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  align-items: start;
}

.blog-featured {
  background: #fff;
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--accent);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.blog-featured:hover {
  transform: translateY(-5px);
  box-shadow: 8px 10px 0 var(--accent);
}

.blog-featured img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.blog-featured-body {
  padding: 22px 26px 28px;
}

.blog-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.blog-featured-title {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 black;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 8px 10px 0 BLACK;
}

.blog-card-text {
  flex: 1;
}

.blog-card-text h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
  color: black;
}

.blog-card-text h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-text h4 a:hover {
  color: var(--accent);
}

.blog-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 2px solid var(--border);
  overflow: hidden;
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet: Blog section */
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 720px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 60px 0 40px;
  }

  .blog-heading {
    font-size: 36px;
  }

  .blog-featured img {
    height: auto;
  }

  .blog-card-text h4 {
    font-size: 14px;
  }

  .blog-meta {
    font-size: 12px;
  }
}

/* ===================================================
   BLOG LISTING PAGE (blog.html)
   =================================================== */

.blog-listing-hero {
  width: 100%;
  padding: 100px 0 40px;
  background-color: #081b49;
}

.blog-listing-header {
  text-align: center;
  max-width: 720px;
  margin: 30px auto;
  padding: 0 24px;

}

.blog-listing-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 18px 0 20px;
  line-height: 1.1;
}

.blog-listing-subtitle {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
}

.blog-search {
  position: relative;
  max-width: 480px;
  margin: 32px auto 0;
}

.blog-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #6b7280;
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  background: var(--card);
  border: 2.5px solid black;
  border-radius: 999px;
  box-shadow: 6px 6px 0 black;
  padding: 14px 20px 14px 50px;
  font-size: 15px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: var(--foreground);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.blog-search-input::placeholder {
  color: #9ca3af;
}

.blog-search-input:focus {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 8px 10px 0 var(--accent);
}

.blog-search-input::-webkit-search-cancel-button {
  cursor: pointer;
}

.blog-search-status {
  margin-top: 14px;
  font-size: 14px;
  color: var(--foreground-muted);
  min-height: 20px;
}

.blog-listing-section {
  width: 100%;
  padding: 40px 0 90px;
  background-color: var(--background-alt);
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-listing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 black;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.blog-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 10px 0 var(--accent);
}

.blog-listing-card--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.blog-listing-coming-soon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--accent);
  color: #1a1a2e;
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid black;
}

.blog-listing-img {
  width: 100%;
  min-height: 220px;
  overflow: hidden;
}

.blog-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-listing-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: var(--gradient-accent);
}

.blog-listing-img--icon i {
  width: 56px;
  height: 56px;
  color: #1a1a2e;
  stroke-width: 1.75;
}

.blog-listing-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-listing-card--featured .blog-listing-body {
  justify-content: center;
}

.blog-listing-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--dark-bg);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.blog-listing-card-title {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-listing-card--featured .blog-listing-card-title {
  font-size: 24px;
}

.blog-listing-card:not(.blog-listing-card--featured) .blog-listing-card-title {
  font-size: 17px;
}

.blog-listing-excerpt {
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--foreground-muted);
  margin-bottom: 16px;
}

.blog-listing-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  margin-top: auto;
}

.blog-listing-meta i {
  color: #888;
}

.blog-listing-img[href] {
  display: block;
  cursor: pointer;
}

.blog-listing-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-listing-card-title a:hover {
  text-decoration: none;
  color: var(--accent);
}

.blog-listing-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: #185fa5;
  text-decoration: none;
}

.blog-listing-readmore:hover {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
  .blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-listing-card--featured {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .blog-listing-hero {
    padding: 80px 0 32px;
  }

  .blog-listing-title {
    font-size: 38px;
  }

  .blog-search {
    max-width: 100%;
    padding: 0 8px;
  }

  .blog-search-input {
    font-size: 14px;
    padding: 12px 16px 12px 44px;
  }

  .blog-listing-grid {
    grid-template-columns: 1fr;
  }

  .blog-listing-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .blog-listing-title {
    font-size: 32px;
  }

  .blog-listing-subtitle {
    font-size: 15px;
  }
}

/* ===================================================
   BLOG ARTICLE / POST PAGE
   =================================================== */

.article-hero {
  width: 100%;
  padding: 90px 0 70px;
  background-color: #081b49;
}

.article-hero-card {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 20px;
}

.article-hero-card .article-hero-inner {
  text-align: left;
  padding: 0;
  flex: 1;
}

.article-hero-card .article-meta {
  justify-content: flex-start;
}

.article-hero-card .article-cover {
  flex: 1;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .article-hero-card {
    flex-direction: column;
    gap: 30px;
  }

  .article-hero-card .article-hero-inner {
    text-align: center;
  }

  .article-hero-card .article-meta {
    justify-content: center;
  }
}

.article-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 40px;
  text-align: center;
}

.article-tag {
  display: inline-block;
  background: var(--accent);
  color: #081b49;
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  margin-top: 50px;
}

.article-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  line-height: 1.15;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.article-meta i {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.article-cover {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-cover img {
  width: 100%;
  border: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--accent);
  display: block;
}

.article-section {
  width: 100%;
  padding: 56px 0 90px;
  background-color: var(--background-alt);
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
  font-family:
    "avenir-lt-w01_35-light1475496", "avenir-lt-w05_35-light", sans-serif;
  color: var(--foreground);
}

.article-body > p {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.article-body a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.article-body h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--foreground);
  margin: 56px 0 20px;
  line-height: 1.2;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.3px;
  color: var(--foreground);
  margin: 32px 0 14px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-body li {
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.article-body strong {
  font-weight: 700;
}

.article-toc {
  background: var(--card);
  border: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 black;
  padding: 24px 28px;
  margin: 8px 0 40px;
}

.article-toc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--foreground-muted);
  margin-bottom: 12px;
}

.article-toc ol {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 24px;
}

.article-toc li {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 0;
  break-inside: avoid;
}

.article-toc a {
  color: var(--foreground);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.article-toc a:hover {
  color: #185fa5;
  border-bottom-color: #185fa5;
}

.article-callout {
  background: var(--gradient-accent);
  border: 2.5px solid black;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 8px 0 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.article-callout i {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: #1a1a2e;
  margin-top: 2px;
}

.article-callout p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #1a1a2e;
  margin: 0;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 8px 0 32px;
  border: 2.5px solid black;
  border-radius: 16px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.article-table th {
  background: var(--dark-bg);
  color: var(--accent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 16px;
}

.article-table td {
  font-size: 14.5px;
  line-height: 1.6;
  padding: 14px 16px;
  border-top: 1.5px solid #e5e5e5;
}

.article-table tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}

.article-cta-box {
  background: var(--dark-bg);
  border: 2.5px solid black;
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--accent);
  padding: 36px 32px;
  margin: 48px 0;
  text-align: center;
}

.article-cta-box .article-cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-cta-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}

.article-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.article-links-inline a {
  color: #185fa5;
  font-weight: 700;
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
  .article-title {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .article-hero {
    padding: 76px 0 48px;
  }

  .article-title {
    font-size: 30px;
  }

  .article-body h2 {
    font-size: 26px;
    margin-top: 42px;
  }

  .article-body h3 {
    font-size: 19px;
  }

  .article-body > p,
  .article-body li {
    font-size: 15.5px;
  }

  .article-toc ol {
    columns: 1;
  }

  .article-cta-box {
    padding: 28px 22px;
  }
}

/* ===== Mobile responsiveness fixes for images (iPhone 12 & similar, ≤480px) ===== */
@media (max-width: 480px) {

  /* Generic safety net: no image should ever overflow its container */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Hero orbs — decorative, often absolutely positioned and oversized on mobile */
  .sap-hero-orb-1,
  .sap-hero-orb-2 {
    width: 140px;
    height: 140px;
  }

  /* "ELUNITE Solution" rows — icon + text side by side breaks on narrow screens */
  .sap-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sap-solve-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .sap-solve-ico {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }

  .sap-solve-ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* "Why Choose Us" layout — dark card + mini cards */
  .sap-why-layout {
    grid-template-columns: 1fr;
  }

  .sap-why-right {
    grid-template-columns: 1fr;
  }

  .sap-why-mini {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .sap-why-ico {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }

  .sap-why-ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Included section cards & process track — force single column stacking */
  .sap-included-grid {
    grid-template-columns: 1fr;
  }

  .sap-process-track {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  /* Slightly wider breakpoint for phones like iPhone 12 in general */
  .sap-hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .sap-hero-desc {
    font-size: 1rem;
  }
}