*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #0b1f3f;
  --white: #ffffff;
  --dark-gray: #0b1f3f;
  --mid-gray: #1e3a66;
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-light: rgba(255, 255, 255, 0.75);
  --border: #1e3a66;
  --navy-dark: #0b1f3f;
  --navy-mid: #1e3a66;
  --font-main: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11, 31, 63, 0.97);
  border-bottom: 1px solid var(--navy-mid);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}
.header-logo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.header-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--white);
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-icons a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.header-icons a:hover {
  color: var(--white);
}
.header-contact-btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1.5px solid var(--white);
  color: var(--white) !important;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-contact-btn:hover {
  background: var(--white);
  color: var(--black) !important;
}
.header-mob-icon {
  display: none;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--white);
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  text-decoration: none;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.header-mob-icon:hover {
  background: var(--white);
  color: var(--black) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #081529;
  z-index: 998;
  padding: 90px 32px 40px;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid var(--navy-mid);
  overflow-y: auto;
}
.mobile-nav.open {
  left: 0;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30, 58, 102, 0.4);
  transition: color 0.25s;
}
.mobile-nav a:hover {
  color: var(--white);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.65);
}
.nav-overlay.visible {
  display: block;
}

/* ── PAGE HERO (CENTER ALIGNED + BRAND COLOR) ── */
.page-hero {
  margin-top: 70px;
  background: var(--navy-dark);
  padding: 90px 40px 70px;
  border-bottom: 1px solid var(--navy-mid);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--navy-mid),
    rgba(255, 255, 255, 0.4),
    transparent
  );
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--navy-mid);
}
.breadcrumb {
  font-family: var(--font-main);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover {
  color: var(--white);
}
.page-hero h1 {
  font-family: var(--font-main);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.15;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 16px;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.8;
  margin: 0 auto;
}

/* ── SECTION BASE ── */
.section-dark {
  background: var(--white);
  padding: 80px 40px;
  color: var(--black);
}
.section-dark .section-title {
  color: var(--black);
}
.section-dark .section-title span {
  color: var(--navy-mid);
}
.section-dark .section-label {
  color: var(--navy-mid);
}
.section-dark .section-body {
  color: rgba(11, 31, 63, 0.75);
}

.section-gray {
  background: var(--navy-dark);
  padding: 80px 40px;
  color: var(--white);
}
.section-gray .section-title {
  color: var(--white);
}
.section-gray .section-title span {
  color: var(--white);
}
.section-gray .section-label {
  color: var(--white);
}
.section-gray .section-body {
  color: var(--text-light);
}

.section-mid {
  background: var(--mid-gray);
  padding: 80px 40px;
  color: var(--white);
}
.section-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-body {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ── APPLY BUTTON ── */
.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.section-dark .apply-btn {
  background: var(--black);
  color: var(--white);
}
.section-dark .apply-btn:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.section-gray .apply-btn {
  background: var(--white);
  color: var(--black);
}
.section-gray .apply-btn:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.apply-btn i {
  font-size: 13px;
}
.apply-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.apply-btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* ── WHO IS THIS FOR ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--navy-mid);
  margin-bottom: 40px;
}
.who-card {
  background: var(--navy-dark);
  padding: 32px 28px;
  transition: background 0.3s;
}
.who-card:hover {
  background: rgba(30, 58, 102, 0.45);
}
.who-card-num {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}
.who-card h3 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.who-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* ── WHAT YOU LEARN ── */
.learn-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(30, 58, 102, 0.15);
}
.learn-item:first-child {
  border-top: 1px solid rgba(30, 58, 102, 0.15);
}
.learn-num {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-mid);
  flex-shrink: 0;
  width: 28px;
  padding-top: 2px;
}
.learn-text {
  font-size: 14px;
  color: rgba(11, 31, 63, 0.75);
  line-height: 1.8;
}
.learn-text strong {
  color: var(--black);
}

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.price-card {
  border: 1px solid rgba(30, 58, 102, 0.15);
  background: var(--white);
  color: var(--black);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s;
}
.price-card:hover {
  border-color: var(--navy-mid);
}
.price-card.featured {
  border-color: var(--navy-mid);
  background: var(--black);
  color: var(--white);
}
.price-card.featured::before {
  content: 'ONE TIME MENTORSHIP';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
}
.price-tag {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(11, 31, 63, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card.featured .price-tag {
  color: rgba(255, 255, 255, 0.4);
}
.price-card h3 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}
.price-card.featured h3 {
  color: var(--white);
}
.price-amount {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 900;
  color: var(--navy-mid);
  margin-bottom: 8px;
  line-height: 1;
}
.price-card.featured .price-amount {
  color: var(--white);
}
.price-desc {
  font-size: 13px;
  color: rgba(11, 31, 63, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}
.price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ── TESTIMONIALS ── */
.testi-swiper {
  padding: 10px 4px 50px !important;
}
.testi-swiper .swiper-slide {
  width: 320px !important;
  height: auto;
}
.testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.25) !important;
  opacity: 1;
  margin: 0 4px;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--white) !important;
  width: 24px;
  border-radius: 4px;
}
.testimonial-card {
  background: var(--navy-dark);
  border: 1px solid var(--navy-mid);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.testimonial-card:hover {
  border-color: var(--white);
}
.testi-stars {
  color: var(--white);
  font-size: 12px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}
.testi-author {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}

/* ── FAQ ── */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(30, 58, 102, 0.15);
  border-left: 3px solid transparent;
  margin-bottom: -1px;
  overflow: hidden;
  transition: border-left-color 0.3s;
}
.faq-item:hover {
  border-left-color: var(--navy-mid);
}
.faq-item.active {
  border-left: 3px solid var(--navy-mid);
  border-color: rgba(30, 58, 102, 0.2);
  position: relative;
  z-index: 1;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 22px 32px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition:
    background 0.25s,
    color 0.25s;
}
.faq-q:hover {
  background: rgba(30, 58, 102, 0.05);
  color: var(--navy-mid);
}
.faq-item.active .faq-q {
  color: var(--navy-mid);
  background: rgba(30, 58, 102, 0.05);
}
.faq-num {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  color: rgba(30, 58, 102, 0.4);
  flex-shrink: 0;
  width: 24px;
}
.faq-item.active .faq-num {
  color: var(--navy-mid);
}
.faq-q-text {
  flex: 1;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(30, 58, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--navy-mid);
  transition: all 0.3s;
}
.faq-item.active .faq-icon {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a.open {
  max-height: 300px;
}
.faq-a-inner {
  padding: 0 32px 24px 56px;
  font-size: 14px;
  color: rgba(11, 31, 63, 0.7);
  line-height: 1.9;
}

/* ── FOOTER ── */
.footer-main {
  background: var(--navy-dark);
  border-top: 2px solid var(--navy-mid);
  padding: 56px 40px 48px;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.footer-col-heading {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-mid);
}
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-contact-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.footer-contact-line strong {
  color: var(--white);
}
.footer-svg-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-svg-row a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--navy-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.25s;
  flex-shrink: 0;
}
.footer-svg-row a:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.footer-col-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-col-links a:hover {
  color: var(--white);
}
.footer-nl-input-wrap {
  margin-bottom: 12px;
}
.footer-nl-input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--navy-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.footer-nl-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-nl-input-wrap input:focus {
  border-color: var(--white);
}
.footer-nl-btn {
  background: var(--navy-mid);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}
.footer-nl-btn:hover {
  background: var(--white);
  color: var(--navy-dark);
}
.footer-bottom-bar {
  background: #0b1f3f;
  padding: 18px 40px;
  border-top: 1px solid var(--navy-mid);
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-bottom-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  font-family: var(--font-main);
}
.footer-bottom-bar {
  background: #0b1f3f;
  padding: 18px 40px;
  border-top: 1px solid var(--navy-mid);
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-bottom-inner p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
  font-family: var(--font-main);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
  }
  .header-logo {
    grid-column: 2;
    justify-self: center;
  }
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .header-icons {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .header-contact-btn {
    display: none;
  }
  .header-mob-icon {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0 16px;
  }
  .page-hero {
    padding: 60px 20px 48px;
  }
  .section-dark,
  .section-gray,
  .section-mid {
    padding: 60px 20px;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    margin-top: 20px;
  }
  .testi-swiper .swiper-slide {
    width: 270px !important;
  }
  .faq-q {
    padding: 18px 20px;
    font-size: 13px;
  }
  .faq-a-inner {
    padding: 0 20px 20px 20px;
  }
  .footer-main {
    padding: 48px 20px 36px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-bar {
    padding: 16px 20px;
  }
}
@media (max-width: 480px) {
  .who-grid {
    gap: 0;
  }
  .testi-swiper .swiper-slide {
    width: 240px !important;
  }
  .faq-q {
    font-size: 12px;
    padding: 16px 16px;
  }
  .faq-a-inner {
    padding: 0 16px 18px 16px;
  }
}

/* ── WHY STATS GRID ── */
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy-mid);
  margin: 32px 0 40px;
}
.why-stat-cell {
  background: var(--navy-dark);
  padding: 30px 24px;
  text-align: center;
  transition: background 0.3s;
}
.why-stat-cell:hover {
  background: rgba(30, 58, 102, 0.45);
}
.why-stat-num {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.why-stat-label {
  font-family: var(--font-main);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-top: 10px;
}

/* ── TESTIMONIALS SECTION ── */
.testi-section {
  background: var(--navy-dark);
  padding: 80px 40px;
  overflow: hidden;
  border-top: 1px solid var(--navy-mid);
  border-bottom: 1px solid var(--navy-mid);
}
.testi-section-hd {
  max-width: 900px;
  margin: 0 auto 40px;
}

@media (max-width: 640px) {
  /deep/ .why-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .testi-section {
    padding: 60px 20px;
  }
}

/* ── PRICE CARD CTA BUTTON ── */
.price-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 22px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.price-card-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.price-card.featured .price-card-btn {
  background: var(--white);
  color: var(--black);
}
.price-card.featured .price-card-btn:hover {
  background: var(--navy-mid);
  color: var(--white);
}

/* ── APPLY MODAL ── */
.apply-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.apply-modal.active {
  display: flex;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(5px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--navy-dark);
  border: 1px solid var(--navy-mid);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 8px;
  z-index: 2;
  transition: color 0.3s;
  font-family: var(--font-main);
}
.modal-close:hover {
  color: var(--white);
}

/* Left: Bank Details */
.modal-bank {
  background: #0b1f3f;
  padding: 40px 32px;
  border-right: 1px solid var(--navy-mid);
}
.modal-bank-eyebrow {
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.modal-bank-title {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.bank-row {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(30, 58, 102, 0.6);
}
.bank-row:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bank-key {
  display: block;
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 5px;
}
.bank-val {
  display: block;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  word-break: break-all;
}
.bank-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.75;
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(30, 58, 102, 0.15);
  border-left: 2px solid var(--white);
}

/* Right: Form */
.modal-form-wrap {
  padding: 40px 32px;
}
.modal-form-title {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.modal-form input[type='text'],
.modal-form input[type='tel'],
.modal-form input[type='url'] {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.3s;
}
.modal-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.modal-form input:focus {
  border-color: var(--white);
}
.modal-file-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal-file-label {
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.modal-form input[type='file'] {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px dashed rgba(30, 58, 102, 0.8);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  padding: 10px 12px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
}
.modal-form input[type='file']:hover {
  border-color: var(--white);
}
.modal-submit {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 4px;
  width: 100%;
}
.modal-submit:hover {
  background: var(--navy-mid);
  color: var(--white);
}
.modal-success {
  display: none;
  text-align: center;
  padding: 24px 0 8px;
}
.modal-success-icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--white);
}
.modal-success p {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.modal-box--single {
  grid-template-columns: 1fr;
  max-width: 480px;
}

@media (max-width: 640px) {
  .modal-box {
    grid-template-columns: 1fr;
  }
  .modal-bank {
    border-right: none;
    border-bottom: 1px solid var(--navy-mid);
    padding: 28px 20px;
  }
  .modal-form-wrap {
    padding: 28px 20px;
  }
}
