:root {
  --bg: #f2f5fb;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --surface-deep: #0d1729;
  --text: #12223b;
  --text-muted: #56627a;
  --heading: #0a1a34;
  --border: #dbe3ef;
  --accent: #e33a2f;
  --accent-strong: #c72e24;
  --accent-soft: #fff1ef;
  --accent-glow: rgba(227, 58, 47, 0.22);
  --success-soft: #eafdf2;
  --warning-soft: #fff8e8;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 16px 30px -24px rgba(12, 32, 73, 0.36);
  --shadow-md: 0 30px 70px -38px rgba(9, 29, 64, 0.42);
  --shadow-lg: 0 38px 90px -45px rgba(3, 20, 48, 0.45);
  --section-gap: clamp(68px, 8vw, 108px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:#fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 2.2vw, 28px);
}

.section-pad {
  padding: var(--section-gap) 0;
}

.center {
  text-align: center;
}

.section-head {
  margin-bottom: clamp(20px, 3vw, 36px);
}

.section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
}

.section-title {
  font-size: clamp(1.65rem, 2.6vw, 2.65rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--heading);
  font-weight: 800;
  margin: 0 0 14px;
}

.section-title i {
  color: var(--accent);
  margin-right: 8px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #f4ccc8;
  background: linear-gradient(145deg, #fff8f7 0%, #fff1ef 100%);
  color: #b33329;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-soft i {
  font-size: 0.8rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #ea5e53 55%, #f07b70 100%);
  box-shadow: 0 16px 32px -20px rgba(227, 58, 47, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px -24px rgba(227, 58, 47, 0.72);
}

.btn-outline {
  color: #b33329;
  border-color: #f2c7c2;
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: #fff3f1;
  border-color: #eaada6;
}

.btn-on-dark {
  color: #b13228;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  backdrop-filter: blur(14px);
  background: rgba(12, 23, 42, 0.8);
  border-bottom: 1px solid rgba(226, 236, 251, 0.12);
  transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.scrolled {
  background: rgba(10, 20, 38, 0.92);
  border-bottom-color: rgba(223, 236, 255, 0.2);
  box-shadow: 0 20px 30px -26px rgba(1, 12, 31, 0.9);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px 18px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
}

.brand img {
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(28, 72, 139, 0.32));
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(226, 236, 251, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #f2f6ff;
  cursor: pointer;
}

.nav-link {
  position: relative;
  color: rgba(246, 250, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 8px 2px;
  transition: color 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, #ff9d95 0%, #ffffff 100%);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.hero-section {
  padding-top: clamp(36px, 6vw, 42px);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:#fff;
  border: 1px solid #fff;
  box-shadow: var(--shadow-lg);
}


.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  padding: clamp(24px, 4vw, 50px);
}

.hero-content h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.55rem);
  line-height: 1.1;
  color: var(--heading);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.hero-kicker {
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-copy {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
}

.badge-hero {
  margin-bottom: 18px;
  border-color: #f2c8c4;
}

.hero-actions {
  margin: 26px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions a i {
  font-size: 0.9rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags .badge-soft {
  background: rgba(255, 255, 255, 0.8);
}

.hero-image-wrap {
  padding: 8px;
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 232, 228, 0.9));
  border: 1px solid #f5d4cf;
}

.hero-image-wrap img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 50px -32px rgba(11, 36, 76, 0.58);
}

.about-overview,
.placement-section,
.testimonials-section,
.curriculum-section {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.journey-section {
  background:
    linear-gradient(180deg, rgba(255, 241, 238, 0.88) 0%, rgba(255, 250, 249, 0.96) 100%),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80") center/cover;
  background-blend-mode: screen;
}

.journey-timeline {
  max-width: 980px;
  margin: 38px auto 0;
  display: grid;
  gap: 12px;
}

.journey-step {
  position: relative;
  display: block;
  margin-left: 74px;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #f2d7d3;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-4px);
  border-color: #efb9b3;
  box-shadow: var(--shadow-md);
}

.journey-step h3,
.problem-title,
.module-title {
  color: var(--heading);
}

.journey-step h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  margin-bottom: 8px;
}

.journey-step p {
  color: var(--text-muted);
}

.journey-step h3 i,
.track-row label i,
.form-group label i,
.modal-body h4 i {
  width: 18px;
  margin-right: 6px;
  text-align: center;
  color: var(--accent);
}

.step-number {
  position: absolute;
  left: -74px;
  top: 16px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(150deg, #b92e24 0%, #e33a2f 100%);
  box-shadow: 0 14px 22px -16px rgba(185, 46, 36, 0.85);
}

.featured-step {
  border-color: #ffe0b0;
  background: linear-gradient(145deg, #fffaf1 0%, #fffef8 100%);
}

.featured-step .step-number {
  background: linear-gradient(150deg, #ffad34 0%, #ff9b0a 100%);
  box-shadow: 0 14px 24px -16px rgba(255, 157, 34, 1);
}

.muted-step {
  opacity: 0.96;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.top-five-section {
  background:
    linear-gradient(180deg, rgba(255, 246, 244, 0.76) 0%, rgba(255, 255, 255, 0.95) 100%),
    radial-gradient(45rem 25rem at 85% 15%, rgba(246, 197, 191, 0.5) 0%, transparent 70%);
}

.stat-highlight {
  border-radius: var(--radius-lg);
  border: 1px solid #f3d1cc;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 244, 242, 0.98) 100%),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80") center/cover;
  background-blend-mode: screen;
  padding: clamp(24px, 3.6vw, 40px);
  box-shadow: var(--shadow-md);
}

.three-pillar {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card {
  text-align: center;
  border: 1px solid #f2d9d5;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.pillar-card .pillar-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  border: 1px solid #f0cbc6;
  background: #fff4f2;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.25rem;
}

.inline-note {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #f1d8d4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.inline-note p + p {
  margin-top: 10px;
  color: var(--text-muted);
}

.tag {
  display: inline-block;
  margin-left: 8px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  border: 1px solid #bdebcf;
  background: var(--success-soft);
  color: #0f7340;
}

.card-modern {
  border: 1px solid #f1d8d4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff 0%, #fff7f5 100%);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3.4vw, 38px);
}

.check-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.check-row div {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #f1ceca;
  background: #fff4f2;
  font-size: 0.88rem;
  color: #a73a31;
}

.challenges-section {
  background:
    linear-gradient(180deg, rgba(255, 251, 250, 0.9) 0%, rgba(255, 243, 241, 0.96) 100%),
    radial-gradient(40rem 22rem at 8% 15%, rgba(248, 204, 198, 0.38) 0%, transparent 75%);
}

.problem-cards-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.problem-card {
  border: 1px solid #f1d8d4;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #fff7f5 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: #eeb4ae;
  box-shadow: var(--shadow-md);
}

.problem-icon {
  color: var(--accent);
  font-size: 1.72rem;
}

.problem-title {
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.3;
}

.problem-goal {
  color: var(--text-muted);
  font-size: 0.92rem;
  border-left: 3px solid #ebb4ae;
  padding-left: 10px;
}

.btn-more {
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #efbcb6;
  color: #b1342a;
  background: #fff2f0;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.btn-more:hover {
  transform: translateY(-1px);
  border-color: #e89f98;
  background: #ffe6e2;
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 245, 0.95) 100%),
    radial-gradient(36rem 20rem at 90% 80%, rgba(247, 201, 195, 0.35) 0%, transparent 72%);
}

.testimonial-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  border: 1px solid #f1d9d4;
  border-radius: 18px;
  background: #ffffff;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  color: #304664;
  margin-bottom: 14px;
  font-weight: 500;
}

.testimonial-card span {
  font-size: 0.86rem;
  color: #5b6a83;
}

.form-section {
  background:
    linear-gradient(180deg, rgba(255, 241, 238, 0.74) 0%, rgba(255, 252, 251, 0.95) 100%),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1400&q=80") center/cover;
  background-blend-mode: screen;
}

.form-card {
  border-color: #f0cbc7;
  padding: clamp(22px, 4vw, 38px);
}

.grid-2cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.9rem;
  color: #1d3150;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #f1cfca;
  background: rgba(255, 255, 255, 0.96);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: #e98f86;
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.quiz-wrap {
  margin: 18px 0;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #f1d4d0;
  background: linear-gradient(150deg, #fff7f5 0%, #fff0ed 100%);
}

.track-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.track-row label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #f1cfca;
  background: #fff5f3;
  font-weight: 500;
}

.btn-full {
  width: 100%;
}

.form-note {
  margin-top: 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.partners-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 245, 243, 0.96) 100%),
    radial-gradient(35rem 20rem at 15% 65%, rgba(247, 205, 199, 0.32) 0%, transparent 70%);
}
.mt-5{margin-top:20px;}
.partners-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 22px;
  border: 1px solid #f1ceca;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 246, 244, 0.98) 100%),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1400&q=80") center/cover;
  background-blend-mode: screen;
}

.partners-main {
  text-align: left;
}

.partners-main .section-title {
  margin-top: 10px;
}

.partners-copy {
  color: var(--text-muted);
}

.college-highlight {
  display: inline-block;
  margin: 0 2px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #f1cbc6;
  background: #fff2ef;
  color: #af342a;
  font-weight: 600;
}

.partners-stats {
  display: grid;
  gap: 12px;
}

.partner-stat {
  text-align: center;
  border-radius: 14px;
  border: 1px solid #f1d4d0;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px;
}

.partner-stat strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.2;
  color: var(--accent);
}

.partner-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.module-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.module-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #f1d8d4;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: #edb1ab;
  box-shadow: var(--shadow-md);
}

.module-header {
  padding: 18px;
  background: linear-gradient(145deg, #fff8f7 0%, #fff1ee 100%);
  border-bottom: 1px solid #f1d9d4;
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #f1cfca;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-bottom: 12px;
}

.module-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.module-sub,
.module-subtitle {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.topic-list {
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #324764;
  font-size: 0.82rem;
}

.topic-item i {
  color: #d88a84;
  margin-top: 3px;
  font-size: 0.45rem;
}

.topic-item .fa-star,
.topic-item .fa-trophy {
  color: #f49d00;
  font-size: 0.62rem;
}

.module-footer {
  margin-top: auto;
  padding: 0 18px 18px;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #f1ccc7;
  background: #fff2ef;
  color: #ad3329;
  font-size: 0.74rem;
  font-weight: 600;
}

.mt-space {
  margin-top: 30px;
}

.footer {
  margin-top: 58px;
  padding: 30px 0;
  border-top: 1px solid #f1d0cb;
  background: linear-gradient(180deg, #fff7f5 0%, #fff0ed 100%);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #3a4d6b;
  font-size: 0.92rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(8, 19, 38, 0.72);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  width: min(760px, 92vw);
  border-radius: 18px;
  border: 1px solid #f1d5d1;
  background: #ffffff;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.24s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #7f241d 0%, #e33a2f 100%);
}

.modal-close {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 1.7rem;
  cursor: pointer;
}

.modal-body {
  max-height: 64vh;
  overflow-y: auto;
  padding: 24px;
}

.modal-body h4 {
  margin: 16px 0 8px;
  color: var(--accent);
}

.modal-body p {
  color: #2f4666;
}

.modal-prize {
  margin-top: 18px;
}

.back2top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  text-decoration: none;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ef7065 100%);
  color: #ffffff;
  box-shadow: 0 20px 32px -20px rgba(227, 58, 47, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back2top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.72s cubic-bezier(0.23, 1, 0.32, 1), transform 0.72s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .three-pillar,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    right: 18px;
    top: calc(100% + 8px);
    width: min(340px, calc(100vw - 36px));
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(241, 188, 181, 0.45);
    background: rgba(10, 20, 38, 0.96);
    display: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 28px 42px -30px rgba(0, 0, 0, 0.75);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link::after {
    bottom: -2px;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .section-pad {
    padding: clamp(58px, 9vw, 84px) 0;
  }

  .grid-2cols,
  .partners-panel {
    grid-template-columns: 1fr;
  }

  .partners-main {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    min-height: 70px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions a {
    flex: 1 1 100%;
  }

  .journey-step {
    padding: 18px;
    margin-left: 0;
  }

  .step-number {
    position: static;
    margin-bottom: 12px;
  }

  .three-pillar,
  .testimonial-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .check-row {
    justify-content: flex-start;
  }

  .footer-wrap {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
