@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --primary: #0c2340;
  --primary-mid: #163a64;
  --primary-light: #1e4d7b;
  --accent: #ff6900;
  --accent-light: #ff8533;
  --accent-hover: #e55d00;
  --dark: #060e1a;
  --light: #f4f6fa;
  --light-alt: #eef1f7;
  --gray: #5a6a7e;
  --gray-light: #8d99a8;
  --border: #d8dfe8;
  --white: #ffffff;
  --success: #16a34a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e293b;
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.logo-img {
  height: 280px;
  width: auto;
  margin: -110px -45px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.25s;
  letter-spacing: 0.01em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255,105,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,105,0,0.4);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  background: #f0f0f0;
}

.btn-outline-light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 44px;
  font-size: 1.05rem;
}

.hero {
  background: linear-gradient(135deg, #ff6900 0%, #e55d00 50%, #cc5200 100%);
  color: var(--white);
  padding: 7rem 2rem 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  letter-spacing: 0.03em;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero h1 span {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stats-bar {
  background: var(--white);
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.stats-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

section {
  padding: 6rem 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.how-it-works {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(12,35,64,0.06) 0%, rgba(12,35,64,0.12) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
}

.who-qualifies {
  background: var(--white);
}

.qualify-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.qualify-list li {
  padding: 1rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}

.qualify-list li:last-child {
  border-bottom: none;
}

.qualify-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.qualify-check svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.qualify-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}

.qualify-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.qualify-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.qualify-box li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.qualify-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.use-cases {
  background: var(--light);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.use-case-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.use-case-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.use-case-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255,105,0,0.08) 0%, rgba(255,105,0,0.16) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
  flex-shrink: 0;
}

.use-case-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.use-case-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.calculator {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.calculator::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(255,105,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.calculator .section-header p {
  color: rgba(255,255,255,0.65);
}

.calculator .section-label {
  color: var(--accent);
}

.calculator .section-label::before {
  background: var(--accent);
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.calc-input-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.calc-input-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calc-input-header svg {
  color: var(--accent);
}

.calc-input-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.calc-field {
  margin-bottom: 1.8rem;
}

.calc-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.calc-input-wrapper:focus-within {
  border-color: var(--accent);
}

.calc-currency {
  padding: 0 0 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.calc-input-wrapper input[type="text"] {
  background: transparent;
  border: none;
  padding: 12px 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  width: 100%;
  outline: none;
}

.calc-slider {
  width: 100%;
  margin-top: 0.8rem;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,105,0,0.4);
  transition: transform 0.15s;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(255,105,0,0.4);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.calc-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

.calc-disclaimer svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.35);
}

.calc-results-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.calc-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.calc-results-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.calc-results-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,105,0,0.15);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calc-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calc-tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.calc-tier:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.calc-tier.recommended {
  background: rgba(255,105,0,0.1);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255,105,0,0.15);
}

.calc-tier-recommended-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.calc-tier-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.calc-tier.recommended .calc-tier-label {
  color: var(--accent);
}

.calc-tier-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.calc-tier-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.calc-detail-row span {
  color: rgba(255,255,255,0.45);
}

.calc-detail-row strong {
  color: var(--white);
  font-weight: 600;
}

.calc-custom-result {
  background: rgba(255,105,0,0.08);
  border: 1px solid rgba(255,105,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.calc-custom-header {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.calc-custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.calc-custom-stat {
  text-align: center;
}

.calc-custom-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.calc-custom-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.calc-apply-btn {
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: 16px;
}

@media (max-width: 900px) {
  .calc-wrapper {
    grid-template-columns: 1fr;
  }
  .calc-tiers {
    grid-template-columns: 1fr;
  }
  .calc-custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--light);
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-text {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--gray-light);
  font-size: 0.78rem;
  font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, #ff6900 0%, #e55d00 50%, #cc5200 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.8px;
}

.cta-section p {
  opacity: 0.75;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
  line-height: 1.7;
}

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 3.5rem 2rem 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand {
  flex-shrink: 0;
}

.footer-logo {
  height: 200px;
  width: auto;
  margin: -60px -30px -60px -30px;
}

footer .footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: right;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}

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

footer .footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.apply-page {
  min-height: 100vh;
  background: var(--light);
}

.apply-hero {
  background: linear-gradient(135deg, #ff6900 0%, #e55d00 50%, #cc5200 100%);
  color: var(--white);
  padding: 4rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.apply-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.apply-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  position: relative;
  letter-spacing: -0.8px;
}

.apply-hero p {
  opacity: 0.75;
  font-size: 1.05rem;
  position: relative;
}

.form-container {
  max-width: 720px;
  margin: -2.5rem auto 4rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-group label .required {
  color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s ease;
  color: #1e293b;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(12,35,64,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}

.form-submit .btn {
  min-width: 240px;
}

.form-note {
  text-align: center;
  color: var(--gray-light);
  font-size: 0.82rem;
  margin-top: 1rem;
}

.success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--success);
}

.success-message h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.success-message p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.error-message {
  background: #fef2f2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
  border: 1px solid #fecaca;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

@media (max-width: 900px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .qualify-content {
    grid-template-columns: 1fr;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .hero {
    padding: 4rem 1.5rem 6rem;
  }
  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  .hero p {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
    margin-top: -2rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-bar-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}
