:root {
  --bg: #ffffff;
  --surface: #f8f8f8;
  --muted: #f0f0f0;
  --card: rgba(255, 255, 255, 0.95);
  --primary: #ff6b6b;
  --accent: #ff8c8c;
  --text: #1a1a2e;
  --text-muted: rgba(26, 26, 46, 0.7);
  --border: rgba(26, 26, 46, 0.15);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow: 0 25px 80px rgba(26, 26, 46, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Ensure all images are responsive */
img[src*=".jpg"],
img[src*=".jpeg"],
img[src*=".png"],
img[src*=".webp"],
img[src*=".svg"] {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 0;
}

ul {
  padding-left: 1.3rem;
  color: var(--text-muted);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.1), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(255, 140, 140, 0.08), transparent 35%);
  opacity: 0.6;
  pointer-events: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 600px) {
  .container {
    padding: 0 0.75rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(26, 26, 46, 0.05);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
}

.small-logo {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

.header-center {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
}

.course-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
}

@media (max-width: 600px) {
  .header-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .small-logo {
    width: 30px;
    height: auto;
  }

  .header-center {
    flex-direction: column;
    gap: 0.5rem;
  }

  .course-logo {
    height: 40px;
    max-width: 150px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  transform: scale(0.5);
  transform-origin: left center;
  max-width: none;
}

.brand__logo:hover {
  transform: scale(0.525);
  transform-origin: left center;
}

.brand__logo--footer {
  transform: scale(0.6);
  transform-origin: left center;
  margin-bottom: 1rem;
}

.brand__logo--footer:hover {
  transform: scale(0.63);
  transform-origin: left center;
}

.hero__logo {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__logo-img {
  height: 50px;
  width: auto;
  max-width: 180px;
  display: block;
}

.brand__text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.brand__text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.brand:hover .brand__text::after {
  transform: scaleX(1);
}

.brand__text--small {
  font-size: 1.25rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  white-space: nowrap;
  scroll-behavior: smooth;
  position: relative;
}

/* Hide scrollbar on mobile but keep functionality */
@media (max-width: 900px) {
  .site-nav {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .site-nav::-webkit-scrollbar {
    display: none;
  }
}

.site-nav::-webkit-scrollbar {
  height: 4px;
}

.site-nav::-webkit-scrollbar-track {
  background: transparent;
}

.site-nav::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.site-nav::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.site-nav a {
  color: var(--text-muted);
  transition: color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  text-align: center;
  white-space: nowrap;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: normal;
  }
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 107, 107, 0.4);
  background: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--primary);
  box-shadow: none;
}

.btn--ghost:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-left: 0;
  margin: 2rem 0 0;
}

.hero__stats li {
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 150px;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.08);
}

.hero__stats strong {
  display: block;
  font-size: 1.25rem;
}

.hero__note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 107, 0.08);
  border: 1px dashed var(--primary);
  color: var(--text);
  font-weight: 500;
}

.hero__media {
  position: relative;
}

.hero__orb {
  position: absolute;
  inset: 10% 20% auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.4), rgba(255, 255, 255, 0));
  filter: blur(10px);
  animation: pulse 6s infinite alternate;
  border-radius: 50%;
}

.hero__video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero__video img {
  object-fit: cover;
  width: 100%;
}

.pulse {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  animation: ripple 2.5s infinite;
}

.badge {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.1);
}

.badge--floating {
  position: absolute;
  top: -15%;
  right: 5%;
  max-width: 220px;
  animation: float 8s infinite ease-in-out;
}

.section {
  padding: 4rem 0;
}

.section--dark {
  background: var(--surface);
}

.section--muted {
  background: var(--muted);
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.card-grid,
.testimonial-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.pricing-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .pricing-table {
    display: block;
    overflow-x: auto;
  }
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1rem;
}

.pricing-row span {
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-row span:nth-child(2),
.pricing-row span:nth-child(3) {
  color: var(--text-muted);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-head {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.table-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card,
.testimonial,
.module-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(26, 26, 46, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.mentor-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:hover,
.testimonial:hover,
.module-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.15);
}

.pricing-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 140, 140, 0.08));
  border: 2px solid var(--primary);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(124, 92, 255, 0.4);
}

.pricing-card--featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 140, 140, 0.12));
  box-shadow: 0 25px 70px rgba(255, 107, 107, 0.25);
}

.pricing-card--featured::before {
  background: linear-gradient(120deg, var(--accent), var(--primary));
  height: 5px;
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.pricing-amount {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 1rem 0;
  display: block;
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.mentor-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.15);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.timeline__item {
  border-left: 3px solid var(--primary);
  padding: 1rem 1.5rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.08);
}

.timeline__item span {
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.05);
}

.lab-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 140, 140, 0.15));
  border: 1px solid var(--primary);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
}

.lab-card img {
  width: 100%;
  filter: drop-shadow(0 15px 25px rgba(3, 2, 12, 0.45));
}

.lab-card__chip {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--card);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.1);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.logo-row img {
  height: 36px;
  filter: grayscale(1) brightness(1.3);
  opacity: 0.8;
}

.section--partners {
  background: linear-gradient(135deg, var(--surface), var(--muted));
  padding: 5rem 0;
}

.partners-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-card {
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.stat-card strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partners-content {
  margin: 3rem 0;
}

.partners-info {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.partners-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.partners-info .feature-list {
  text-align: left;
  margin-bottom: 2rem;
}

.partners-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.partners-logos {
  margin-top: 4rem;
}

.partners-logos__title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.logo-scroll-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 0;
}

.logo-scroll-container {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logo-scroll-track {
  display: flex;
  gap: 3rem;
  width: fit-content;
}

.logo-scroll-track--row1 {
  animation: scroll-logos-left 30s linear infinite;
}

.logo-scroll-track--row2 {
  animation: scroll-logos-right 35s linear infinite;
}

.logo-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-logos-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.partners-logos .logo-item {
  flex-shrink: 0;
  min-width: 140px;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.partners-logos .logo-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.partners-logos .logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  filter: grayscale(0.5) brightness(1.2);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.partners-logos .logo-item:hover img {
  filter: grayscale(0) brightness(1.3);
  opacity: 1;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  min-height: 100px;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  filter: grayscale(0.5) brightness(1.2);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0) brightness(1.3);
  opacity: 1;
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
}

.cta {
  background: linear-gradient(120deg, rgba(255, 107, 107, 0.15), rgba(255, 140, 140, 0.12));
}

.cta__box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--card);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.1);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 3rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.newsletter {
  display: grid;
  gap: 0.5rem;
}

.newsletter input,
.newsletter select,
.newsletter textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  width: 100%;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .newsletter input,
  .newsletter select,
  .newsletter textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

.newsletter textarea {
  min-height: 140px;
  resize: vertical;
}

.footer__copy {
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.page-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-hero .hero__details {
  font-weight: 500;
  color: var(--text);
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mentor-card {
  display: flex;
  flex-direction: column;
}

.mentor-card__image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.mentor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-card__content {
  flex-grow: 1;
}

.mentor-card__role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.leadership-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.leadership-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.15);
}

.leadership-card__image {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
}

.leadership-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-card__content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.leadership-card__role {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.leadership-card__experience {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.leadership-card__content p:last-child {
  color: var(--text-muted);
  line-height: 1.7;
}

.project-grid article {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
}

.accordion {
  display: grid;
  gap: 1rem;
}

.accordion details {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
}

.link-arrow {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.link-arrow:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  touch-action: manipulation;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 0.5;
  }
  to {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 72px;
    right: 4vw;
    flex-direction: column;
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(26, 26, 46, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: visible;
    white-space: normal;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .site-nav a {
    white-space: normal;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .brand {
    flex-shrink: 0;
  }
}

/* Tablet and medium screen responsiveness */
@media (min-width: 901px) and (max-width: 1100px) {
  .site-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .nav-wrapper {
    gap: 0.5rem;
  }
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.curriculum-module {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.curriculum-module:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.12);
}

.curriculum-module h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.curriculum-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.75rem;
}

.curriculum-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  line-height: 1.6;
}

.curriculum-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content article {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-content article:last-child {
  border-bottom: none;
}

.legal-content h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 600px) {
  .hero__stats {
    flex-direction: column;
  }

  .cta__box {
    padding: 1.75rem;
    flex-direction: column;
    text-align: center;
  }

  .brand__logo {
    transform: scale(0.5);
    transform-origin: left center;
    max-width: none;
  }

  .brand__logo--footer {
    transform: scale(0.6);
    transform-origin: left center;
  }

  .hero__logo-img {
    height: 50px;
    max-width: 200px;
  }

  .site-nav {
    width: calc(100% - 8vw);
    right: 4vw;
    max-width: 90vw;
  }

  .hero__logo {
    margin-bottom: 1rem;
  }

  .hero__logo-img {
    height: 45px;
    max-width: 180px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .legal-content article {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section__header {
    margin-bottom: 1.5rem;
  }

  .card-grid,
  .testimonial-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Success Stories Styles */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.success-story {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.success-story:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.15);
}

.success-story__image {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-story__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8f9fa;
}

.success-story__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.success-story__role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.success-story__quote {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex-grow: 1;
}

.success-story__company {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.success-story__company img {
  height: 32px;
  width: auto;
  filter: grayscale(0.3) brightness(1.2);
  opacity: 0.9;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
  margin-top: 2rem;
}

.logo-grid img {
  height: 40px;
  width: auto;
  max-width: 100%;
  filter: grayscale(1) brightness(1.3);
  opacity: 0.8;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-grid img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.2);
}

.section--founder {
  background: linear-gradient(135deg, var(--surface), var(--muted));
  padding: 5rem 0;
}

.founder-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.founder-showcase__content {
  padding: 3.5rem;
  background: var(--card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.1);
}

.founder-showcase__header {
  margin-bottom: 2rem;
}

.founder-showcase__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-showcase__underline {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.founder-showcase__name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem 0;
}

.founder-showcase__role {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin: 0 0 2rem 0;
  font-weight: 400;
}

.founder-showcase__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.founder-detail-item strong {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.founder-detail-item span {
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
}

.founder-showcase__bio {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.founder-showcase__bio:last-of-type {
  margin-bottom: 2rem;
}

.founder-showcase__logo {
  margin-top: auto;
  display: flex;
  align-items: center;
}

.founder-showcase__logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  display: block;
}

.founder-showcase__image {
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.founder-showcase__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 107, 0.1), transparent 70%);
  pointer-events: none;
}

.founder-showcase__image img {
  width: 100%;
  height: 100%;
  max-width: 500px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1.5rem;
  }

  .founder-showcase {
    grid-template-columns: 1fr;
  }

  .founder-showcase__content {
    padding: 2.5rem 2rem;
  }

  .founder-showcase__title {
    font-size: 2rem;
  }

  .founder-showcase__name {
    font-size: 1.75rem;
  }

  .founder-showcase__image {
    padding: 2rem;
    min-height: 400px;
  }

  .partners-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-scroll-container {
    padding: 1.5rem 0;
  }

  .logo-scroll-track {
    gap: 2rem;
  }

  .partners-logos .logo-item {
    min-width: 100px;
    width: 100px;
    height: 70px;
    padding: 0.75rem;
  }

  .partners-logos .logo-item img {
    max-height: 40px;
  }

  .nav-wrapper {
    flex-wrap: nowrap;
  }

  .site-header {
    overflow-x: hidden;
  }
}

/* Scholarship Section Styles */
.section--scholarship {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 140, 140, 0.05));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section--scholarship::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.section--scholarship::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 140, 140, 0.12), transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.scholarship-hero {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.scholarship-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

.scholarship-icon {
  font-size: 1.25rem;
  animation: bounce 2s ease-in-out infinite;
}

.scholarship-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.scholarship-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.scholarship-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.scholarship-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.scholarship-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.scholarship-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.2);
}

.scholarship-card:hover::before {
  transform: scaleX(1);
}

.scholarship-card__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.scholarship-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  animation: rotate-number 3s ease-in-out infinite;
}

.scholarship-card h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text);
}

.scholarship-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.scholarship-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  margin-top: 1.5rem;
}

.highlight-icon {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

.scholarship-highlight strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.scholarship-highlight span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.scholarship-criteria {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.scholarship-criteria li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 107, 107, 0.05);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.scholarship-criteria li:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: translateX(5px);
}

.criteria-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.scholarship-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 107, 107, 0.08);
  border-radius: var(--radius-md);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scholarship-cta {
  background: var(--card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.15);
  overflow: hidden;
}

.scholarship-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.scholarship-cta__content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.scholarship-cta__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.scholarship-visual {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scholarship-trophy {
  font-size: 5rem;
  animation: bounce-trophy 2s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(255, 107, 107, 0.3));
}

.scholarship-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  font-size: 1.5rem;
  animation: float-particle 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  bottom: 10%;
  right: 25%;
  animation-delay: 1.5s;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate-number {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.1);
  }
}

@keyframes bounce-trophy {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes float-particle {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) translateX(10px) scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .scholarship-content {
    grid-template-columns: 1fr;
  }

  .scholarship-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .scholarship-visual {
    margin: 2rem auto 0;
  }

  .scholarship-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero__content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* Application Form Styles */
.form-wrapper {
  width: 100%;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.15);
  backdrop-filter: blur(12px);
}

.form-wrapper--hero {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.application-form {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.required {
  color: var(--accent);
  margin-left: 0.25rem;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="number"] {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .application-form input[type="text"],
  .application-form input[type="email"],
  .application-form input[type="tel"],
  .application-form input[type="number"] {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

.application-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.application-form input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 180px;
}

.radio-label:hover {
  background: rgba(255, 107, 107, 0.05);
  border-color: var(--primary);
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
}

.radio-label input[type="radio"]:checked + span {
  color: var(--primary);
  font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  background: rgba(255, 107, 107, 0.1);
}

.conditional-fields {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 107, 107, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn--submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

.form-message--success {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.form-message--error {
  background: rgba(255, 77, 77, 0.15);
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
}

@media (max-width: 900px) {
  .form-wrapper--hero {
    margin-top: 2rem;
  }

  .hero__logo-img {
    height: 60px;
  }

  .brand__logo {
    transform: scale(0.5);
    transform-origin: left center;
  }

  .application-form {
    gap: 1rem;
  }

  .form-group {
    gap: 0.4rem;
  }
}

@media (max-width: 600px) {
  .form-wrapper {
    padding: 1.75rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }

  .radio-label {
    min-width: auto;
    width: 100%;
  }

  .hero__stats li {
    min-width: auto;
    width: 100%;
  }

  .logo-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-row img {
    max-width: 120px;
  }
}

