:root {
  --primary: #0A1628;
  --secondary: #1E3A5F;
  --accent: #D4A853;
  --accent-hover: #C49842;
  --success: #2ECC71;
  --light: #F8FAFC;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-hover: 0 8px 32px rgba(10, 22, 40, 0.15);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.2);
  --transition: all 0.3s ease;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 26px); }
h4 { font-size: 18px; }

p {
  color: var(--gray);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  z-index: 100;
  pointer-events: auto;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-block {
  width: 100%;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  padding: 12px 0;
}

header.scrolled,
header.header-scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 10001;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 10px;
  transition: var(--transition);
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 10002;
}
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 14px;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(212, 168, 83, 0.1);
  padding-left: 24px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  z-index: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(30, 58, 95, 0.5) 0%, transparent 50%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 83, 0.15);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 .text-gradient {
  display: block;
  min-height: 1.3em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), #F4D03F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-container {
  display: inline-block;
}

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

.typing-cursor {
  display: inline;
  color: var(--accent);
  font-size: 1.3em;
  font-weight: 700;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-trust > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-badges {
  display: flex;
  gap: 24px;
}

.trust-badges span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Marquee Section */
.marquee-section {
  background: var(--accent);
  padding: 20px 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  padding: 0 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

/* Section Styles */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-white {
  background: var(--white);
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.7);
}

.section-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  color: var(--white);
  z-index: 1;
}

.section-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212, 168, 83, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.section-gradient > * {
  position: relative;
  z-index: 1;
}

.section-gradient p,
.section-gradient li {
  color: rgba(255, 255, 255, 0.7);
}

.section-gradient-alt {
  background: linear-gradient(135deg, #1a2d4a 0%, #0A1628 100%);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.section-gradient-alt > * {
  position: relative;
  z-index: 1;
}

.section-gradient-alt p,
.section-gradient-alt li {
  color: rgba(255, 255, 255, 0.7);
}

/* White section specific styles for career sections */
.section-white .career-detail-header h2,
.section-white .career-detail-section h3 {
  color: var(--primary);
}

.section-white .career-detail-header p {
  color: var(--gray);
}

.section-white .career-detail-section h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.section-white .check-item {
  background: var(--light);
  border: 1px solid #E2E8F0;
}

.section-white .check-item h4 {
  color: var(--primary);
}

.section-white .check-item p {
  color: var(--gray);
}

.section-white .learn-item {
  background: var(--white);
  border: 1px solid #E2E8F0;
}

.section-white .learn-item h4 {
  color: var(--primary);
}

.section-white .learn-item p {
  color: var(--gray);
}

.section-white .learn-number {
  color: var(--accent);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-label-light {
  display: inline-block;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray);
}

.section-dark .section-header h2,
.section-gradient .section-header h2,
.section-gradient-alt .section-header h2 {
  color: var(--white);
}

.section-light .section-header h2 {
  color: var(--primary);
}

.section-white .section-header h2 {
  color: var(--primary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card > p {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--gray);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 14px;
  color: var(--gray);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Career Detail Sections */
.career-detail-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.career-detail-header h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.career-detail-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.career-detail-section {
  margin-bottom: 60px;
}

.career-detail-section h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 24px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.check-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.check-item h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.check-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.check-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.check-item-light {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-icon-light {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.check-item-light h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.check-item-light p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.learn-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.learn-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.learn-item h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.learn-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.career-cta {
  text-align: center;
  margin-top: 40px;
}

.career-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  font-size: 16px;
}

/* Activities Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.activity-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.activity-card h3 {
  margin-bottom: 12px;
}

.activity-card p {
  font-size: 15px;
}

/* Process Timeline */
.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.process-content h3 {
  margin-bottom: 8px;
}

.process-content p {
  font-size: 15px;
}

.process-connector {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin-top: 32px;
  opacity: 0.3;
}

/* Guarantee Section */
.guarantee-section {
  text-align: center;
}

.guarantee-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.guarantee-section h2 {
  margin-bottom: 16px;
}

.guarantee-section > p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.guarantee-item {
  display: flex;
  gap: 12px;
  text-align: left;
}

.guarantee-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.guarantee-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.guarantee-item p {
  font-size: 14px;
}

/* About Section */
.about-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-hero h2 {
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-section-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section-card h3 {
  color: var(--accent);
  margin-bottom: 16px;
}

.about-section-card > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.mission-list,
.vision-list {
  list-style: none;
  margin-bottom: 20px;
}

.mission-list li,
.vision-list li {
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-list li::before,
.vision-list li::before {
  content: '✓';
  color: var(--accent);
  margin-right: 10px;
}

.impact-text,
.vision-text {
  color: var(--white);
  font-weight: 600;
  font-style: italic;
}

/* Founder Section */
.founder-showcase {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.founder-images-col {
  position: sticky;
  top: 100px;
}

.image-slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.15);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--gray-light);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.dot:hover {
  background: var(--accent-hover);
}

.founder-story-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.story-date {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(212, 168, 83, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
}

.story-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 20px;
}

.story-text:first-of-type {
  font-size: 18px;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}

.story-text.highlight {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
  background: rgba(212, 168, 83, 0.1);
  padding: 20px;
  border-radius: 12px;
}

.lessons-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.lessons-list li {
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 18px;
  background: rgba(10, 22, 40, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(10, 22, 40, 0.08);
}

.story-conclusion {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.7;
  padding-top: 24px;
  border-top: 2px solid var(--accent);
}

/* Credentials */
.credentials-section {
  margin-top: 60px;
  text-align: center;
}

.credentials-section h3 {
  margin-bottom: 32px;
  color: var(--primary);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.credential-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.credential-card h4 {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
}

.credential-card p {
  font-size: 14px;
  color: var(--gray);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
}

/* Apply Section */
.apply-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.apply-content h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.apply-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.apply-benefits {
  list-style: none;
}

.apply-benefits li {
  color: var(--white);
  padding: 10px 0;
  font-size: 16px;
}

.apply-benefits li::before {
  content: '✓';
  color: var(--accent);
  margin-right: 10px;
}

.apply-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.apply-form-container input,
.apply-form-container select,
.apply-form-container button {
  pointer-events: auto !important;
}

.apply-form-container input:focus,
.apply-form-container select:focus {
  pointer-events: auto !important;
  outline: none;
}

.apply-form-container .form-group label {
  color: var(--primary);
}

.apply-form-container .form-header h3 {
  color: var(--primary);
  margin-bottom: 4px;
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-header p {
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--primary);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--primary);
  position: relative;
  z-index: 100;
  pointer-events: auto;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder {
  color: #94A3B8;
}

.radio-group-inline {
  display: flex;
  gap: 12px;
}

.radio-chip {
  flex: 1;
  cursor: pointer;
}

.radio-chip input {
  display: none;
}

.radio-chip span {
  display: block;
  text-align: center;
  padding: 12px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
  color: var(--gray);
}

.radio-chip input:checked + span {
  border-color: var(--accent);
  background: rgba(212, 168, 83, 0.1);
  color: var(--primary);
}

.hidden {
  display: none;
}

.form-footer {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
}

/* Form Success Message */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: var(--white);
  font-size: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.form-success h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 8px;
}

.form-success .success-note {
  color: var(--gray-light);
  font-size: 14px;
  margin-top: 16px;
}

#formFields {
  transition: opacity 0.3s ease;
}

#formFields.hidden {
  display: none;
}

/* CTA Section */
.cta-section {
  background: var(--accent);
  text-align: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 16px;
  color: var(--primary);
}

.cta-section p {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-footer img {
  height: 36px;
}

.logo-footer .logo-text {
  font-size: 20px;
  font-weight: 700;
}

.footer-section > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-section h4 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-size: 15px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .apply-split {
    grid-template-columns: 1fr;
  }
  
  .founder-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
  }

  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .process-connector {
    display: none;
  }

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

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

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

  .check-grid,
  .check-grid-light,
  .learn-grid {
    grid-template-columns: 1fr;
  }
}
