/* ===== CSS Variables ===== */
:root {
  --primary: #1a2e6e;
  --primary-dark: #0f1d4a;
  --primary-light: #2d4fa3;
  --secondary: #c8102e;
  --secondary-dark: #9b0c23;
  --accent: #f5a623;
  --accent-light: #ffc857;
  --dark: #0d1117;
  --gray-900: #1a1a2e;
  --gray-800: #2d2d44;
  --gray-700: #4a4a6a;
  --gray-500: #7a7a9a;
  --gray-300: #c5c5d8;
  --gray-100: #f0f0f8;
  --white: #ffffff;
  --success: #10b981;
  --gradient-hero: linear-gradient(135deg, #0f1d4a 0%, #1a2e6e 40%, #2d4fa3 100%);
  --gradient-card: linear-gradient(145deg, #1a2e6e, #2d4fa3);
  --shadow-sm: 0 2px 8px rgba(26, 46, 110, 0.12);
  --shadow-md: 0 4px 20px rgba(26, 46, 110, 0.18);
  --shadow-lg: 0 8px 40px rgba(26, 46, 110, 0.25);
  --shadow-xl: 0 16px 60px rgba(26, 46, 110, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--gray-700); line-height: 1.75; }

.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }

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

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-500);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(15, 29, 74, 0.97);
  backdrop-filter: blur(20px);
  padding: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.brand-text { line-height: 1.1; }
.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone span { color: var(--white); font-weight: 600; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200, 16, 46, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-left h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-left h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-left p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(6px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.hero-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.hero-card-badge {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.hero-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ===== Marquee / Trust Bar ===== */
.trust-bar {
  background: var(--primary-dark);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0 32px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ===== Stats Section ===== */
.stats-section {
  background: var(--primary);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: rgba(255,255,255,0.04);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255,255,255,0.08);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ===== Programs Section ===== */
.programs-section {
  background: var(--gray-100);
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid rgba(26, 46, 110, 0.06);
  display: flex;
  flex-direction: column;
}

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

.program-card-header {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}

.program-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.program-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.program-card-header h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.program-card-header p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin: 0;
}

.program-card-body {
  padding: 24px 28px;
  flex: 1;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--gray-700);
}

.program-feature .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.program-meta {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 16px;
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.program-meta-item svg { flex-shrink: 0; }

.program-card-footer {
  padding: 20px 28px 28px;
  display: flex;
  gap: 12px;
}

/* Color themes per program */
.theme-purple .program-card-header { background: linear-gradient(135deg, rgba(26,46,110,0.05), rgba(45,79,163,0.08)); }
.theme-purple .program-card-header::after { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.theme-purple .program-badge { background: rgba(26,46,110,0.08); color: var(--primary); }
.theme-purple .program-icon { background: rgba(26,46,110,0.1); color: var(--primary); }

.theme-red .program-card-header { background: linear-gradient(135deg, rgba(200,16,46,0.04), rgba(200,16,46,0.08)); }
.theme-red .program-card-header::after { background: linear-gradient(90deg, var(--secondary), #ff4560); }
.theme-red .program-badge { background: rgba(200,16,46,0.08); color: var(--secondary); }
.theme-red .program-icon { background: rgba(200,16,46,0.1); color: var(--secondary); }

.theme-gold .program-card-header { background: linear-gradient(135deg, rgba(245,166,35,0.05), rgba(245,166,35,0.1)); }
.theme-gold .program-card-header::after { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.theme-gold .program-badge { background: rgba(245,166,35,0.12); color: #b07800; }
.theme-gold .program-icon { background: rgba(245,166,35,0.15); color: #b07800; }

.theme-teal .program-card-header { background: linear-gradient(135deg, rgba(16,185,129,0.05), rgba(16,185,129,0.1)); }
.theme-teal .program-card-header::after { background: linear-gradient(90deg, var(--success), #34d399); }
.theme-teal .program-badge { background: rgba(16,185,129,0.1); color: #047857; }
.theme-teal .program-icon { background: rgba(16,185,129,0.12); color: #047857; }

/* ===== Why Choose Us ===== */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-image-wrapper {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.why-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(200,16,46,0.2), transparent 60%);
}

.why-image-content {
  position: relative;
  z-index: 1;
}

.why-badge-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.why-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
}

.why-big-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.why-big-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}

.float-card.float-1 {
  bottom: -20px;
  right: -20px;
}

.float-card.float-2 {
  top: -16px;
  right: -16px;
}

.float-card .fc-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.float-card .fc-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26,46,110,0.08), rgba(45,79,163,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: var(--primary);
  transform: scale(1.08);
}

.why-feature h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.why-feature p {
  font-size: 0.88rem;
  margin: 0;
}

/* ===== Partners ===== */
.partners-section {
  background: var(--gray-100);
  padding: 70px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.partner-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-700);
  min-height: 72px;
  border: 1px solid rgba(26,46,110,0.06);
  transition: var(--transition);
  line-height: 1.3;
}

.partner-item:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ===== Testimonials ===== */
.testimonials-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(200,16,46,0.1), transparent),
    radial-gradient(ellipse 40% 50% at 90% 50%, rgba(245,166,35,0.08), transparent);
}

.testimonials-section .section-header .eyebrow {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.3);
  color: var(--accent-light);
}

.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.author-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--white);
  padding: 90px 0;
}

.cta-wrapper {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,16,46,0.15), transparent),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(245,166,35,0.08), transparent);
}

.cta-wrapper > * { position: relative; z-index: 1; }
.cta-wrapper h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-wrapper p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .brand-name { color: var(--white); font-size: 1.2rem; }
.footer-brand .brand-tagline { color: rgba(255,255,255,0.4); }

.footer-desc {
  margin: 18px 0 24px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .text strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-item .text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== Page Header ===== */
.page-header {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,16,46,0.12), transparent),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(245,166,35,0.07), transparent);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header .eyebrow {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.82rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--accent); }

/* ===== Contact Page ===== */
.contact-section {
  padding: 90px 0;
  background: var(--gray-100);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,46,110,0.06);
}

.contact-info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(26,46,110,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 3px;
}

.contact-detail span {
  font-size: 0.84rem;
  color: var(--gray-500);
}

.contact-detail a {
  font-size: 0.84rem;
  color: var(--primary);
  font-weight: 500;
}

.contact-detail a:hover { color: var(--secondary); }

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,46,110,0.06);
}

.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form-group label .req { color: var(--secondary); margin-left: 3px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.form-control::placeholder { color: var(--gray-300); }

.form-control:focus {
  background: var(--white);
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(45,79,163,0.08);
}

.form-control:hover:not(:focus) {
  border-color: var(--gray-300);
  background: var(--white);
}

select.form-control { cursor: pointer; }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 5px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-500);
  cursor: pointer;
  margin-bottom: 28px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox a { color: var(--primary); font-weight: 600; }

.form-success {
  display: none;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
  text-align: center;
}

.form-success.show { display: block; }

.form-success .success-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.form-success p {
  color: #047857;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0;
}

/* ===== Help / FAQ Page ===== */
.faq-section {
  padding: 90px 0;
  background: var(--white);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(26,46,110,0.15);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: rgba(26,46,110,0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question span {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--transition);
  font-weight: 700;
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 0;
}

.faq-answer ul {
  margin-top: 10px;
  padding-left: 4px;
}

.faq-answer ul li {
  font-size: 0.87rem;
  color: var(--gray-500);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.faq-answer ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--primary-light);
  font-weight: 700;
}

/* Help cards */
.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.help-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.help-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.help-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.help-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Process steps */
.process-section {
  background: var(--gray-100);
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border: 4px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--secondary);
  transform: scale(1.12);
}

.process-step h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0;
}

/* ===== Notification Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateX(200%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 340px;
  border-left: 3px solid var(--success);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  font-size: 1rem;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* ===== Utility ===== */
.bg-gray { background: var(--gray-100); }
.bg-dark { background: var(--dark); }
.bg-primary { background: var(--primary); }

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.w-full { width: 100%; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 120px 0 64px; }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .float-card { display: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-wrapper { padding: 48px 28px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .help-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15,29,74,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }

  .mobile-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}
