/* ========================================
   CSS Reset & Base Styles (Mobile First)
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #82E97B;
  --primary-green-hover: #A0FF99;
  --primary-dark: #0d1117;
  --primary-navy: #1a1a2e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-open: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-btn: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-inter);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-green {
  color: var(--primary-green);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(0, 46, 119);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 46, 119, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}

.logo-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 140px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trustpilot-badge-header {
  display: none;
}

.nav-desktop {
  display: none;
}

.btn-apply-header {
  display: none;
}

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgb(0, 46, 119);
  padding: 8px 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-link-mobile {
  display: block;
  color: var(--white);
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.nav-link-mobile:first-child {
  color: var(--primary-green);
  font-weight: 600;
}

.nav-link-mobile:hover {
  color: var(--primary-green);
}

/* ========================================
   Hero Section
   ======================================== */
/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: 100px 16px 0;
  background: linear-gradient(160deg, #003399 0%, #0044bb 40%, #0055cc 70%, #003399 100%);
  color: var(--white);
  overflow: visible;
  position: relative;
}

.hero-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Trustpilot in Hero */
.hero-trustpilot {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tp-label-hero {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.tp-stars-hero {
  display: flex;
  gap: 1px;
  background: #00b67a;
  padding: 2px 6px;
  border-radius: 3px;
}

.tp-star-hero {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.tp-star-hero-half {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1;
}

.tp-review-text {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.tp-logo-hero {
  width: 14px;
  height: 14px;
  color: #00b67a;
}

.tp-brand-hero {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.hero-badge {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-open);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 8px;
  max-width: 520px;
}

.hero-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.hero-features li strong {
  color: var(--white);
}

.hf-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary-green);
  margin-top: 1px;
}

/* Hero Checker (Right Side Card) */
.hero-checker {
  width: 100%;
}

.eligibility-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 2px 6px rgba(0,0,0,0.08);
  color: var(--gray-900);
  position: relative;
  z-index: 10;
}

.eligibility-title {
  font-family: var(--font-open);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
}

.eligibility-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Info Notice in Hero Card */
.hero-info-notice {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: #eff6ff;
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 12px;
  color: #1e40af;
  line-height: 1.5;
}

.hero-info-notice .info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #3b82f6;
  margin-top: 1px;
}

.hero-info-notice .info-link {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 600;
}

.btn-apply-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-green);
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-btn);
  border: none;
  cursor: pointer;
}

.btn-apply-hero:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-arrow {
  font-size: 18px;
}

/* Product Images (inside hero bottom) */
.hero-showcase {
  max-width: 1000px;
  margin: 20px auto 0;
  text-align: center;
  padding: 0 16px;
  overflow: hidden;
}

.hero-showcase img {
  margin-top: -50px;
  width: 100%;
  max-width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.25));
}

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

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.country-select-wrapper {
  position: relative;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: var(--font-inter);
}

.country-select:hover {
  border-color: var(--gray-300);
  background: var(--white);
}

.country-select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(130, 233, 123, 0.15);
}

.country-flag {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.select-chevron {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.country-select-wrapper.open .select-chevron {
  transform: rotate(180deg);
}

.country-name {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-name.placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

/* Dropdown */
.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  z-index: 100;
  display: none;
  overflow: hidden;
}

.country-select-wrapper.open .country-dropdown {
  display: block;
}

.dropdown-search {
  padding: 10px 12px;
  border-bottom: 1px solid var(--gray-100);
}

.dropdown-search-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-inter);
  outline: none;
  transition: border-color 0.2s;
  background: var(--gray-50);
}

.dropdown-search-input:focus {
  border-color: var(--primary-green);
  background: var(--white);
}

.country-list {
  max-height: 240px;
  overflow-y: auto;
  padding: 4px 0;
}

.country-list::-webkit-scrollbar {
  width: 6px;
}

.country-list::-webkit-scrollbar-track {
  background: transparent;
}

.country-list::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 3px;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 14px;
  color: var(--gray-700);
}

.country-option:hover,
.country-option.highlighted {
  background: var(--gray-50);
}

.country-option .opt-flag {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.country-option .opt-name {
  flex: 1;
}

/* Result */
.eligibility-result {
  padding: 16px;
  border-radius: var(--radius-md);
  animation: fadeInUp 0.3s ease;
}

.eligibility-result.eligible {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.eligibility-result.not-eligible {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.eligibility-result.partial {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.result-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.result-content .result-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.3;
}

.result-content .result-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
}

.result-content .result-text strong {
  font-weight: 600;
  color: var(--gray-900);
}

.btn-check-eligibility {
  width: 100%;
  padding: 14px 24px;
  background: var(--primary-green);
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-inter);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-btn);
}

.btn-check-eligibility:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-check-eligibility:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ========================================
   Info Badges
   ======================================== */
.info-badges {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}

.badge-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
}

.badge-icon svg {
  width: 24px;
  height: 24px;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
}

.badge-text span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ========================================
   How It Works
   ======================================== */
.how-it-works {
  padding: 56px 0;
  background: var(--white);
}

.section-title {
  font-family: var(--font-open);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-green);
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-image {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.step-image img {
  width: 100%;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.5;
}

.step-card p a {
  color: var(--primary-green);
  text-decoration: underline;
}

/* ========================================
   Trusted By
   ======================================== */
.trusted-by {
  padding: 48px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.logos-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 32px;
}

.logos-scroll::-webkit-scrollbar {
  display: none;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: max-content;
  padding: 0 16px;
  animation: scroll-logos 20s linear infinite;
}

.logos-track img {
  height: 35px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s;
  flex-shrink: 0;
}

.logos-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

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

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
  padding: 56px 0;
  background: var(--white);
}

.pricing .section-title {
  font-size: 24px;
}

.validity-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.validity-tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-inter);
}

.validity-tab:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

.validity-tab.active {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.pricing-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #f0fdf0;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note .info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #16a34a;
  margin-top: 2px;
}

.pricing-note p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.pricing-note a {
  color: #16a34a;
  text-decoration: underline;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.pricing-card.recommended {
  border: 2px solid var(--primary-green);
  box-shadow: 0 0 0 1px rgba(130, 233, 123, 0.1), var(--shadow-md);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: var(--gray-900);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  text-align: center;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-current {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.price-original {
  font-size: 20px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-desc {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.check-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #16a34a;
  margin-top: 1px;
}

.btn-apply-card {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary-green);
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  box-shadow: var(--shadow-btn);
}

.btn-apply-card:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
}

.btn-apply-card.btn-secondary {
  background: var(--white);
  color: var(--gray-900);
  border: 1px solid var(--gray-300);
  box-shadow: none;
}

.btn-apply-card.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.tp-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray-500);
}

.tp-stars {
  display: flex;
  gap: 1px;
}

.tp-star {
  color: #00b67a;
  font-size: 16px;
}

.tp-star-half {
  color: #00b67a;
  font-size: 16px;
  opacity: 0.5;
}

.tp-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
  padding: 56px 0;
  background: var(--gray-50);
}

.faq-list {
  max-width: 736px;
  margin: 32px auto 0;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 20px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: #16a34a;
  text-decoration: underline;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
  padding: 56px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.icon-globe { background: #ecfdf5; color: #059669; }
.icon-translate { background: #eff6ff; color: #2563eb; }
.icon-calendar { background: #fef3c7; color: #d97706; }
.icon-shield { background: #f0fdf4; color: #16a34a; }
.icon-price { background: #fce7f3; color: #db2777; }
.icon-shipping { background: #ede9fe; color: #7c3aed; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 8px;
}

.feature-card p:last-child {
  margin-bottom: 0;
}

.feature-note {
  font-size: 14px !important;
  color: var(--gray-500) !important;
}

.feature-note a {
  color: #16a34a;
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: rgb(0, 36, 100);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badges img {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-col a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

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

.footer-company-info {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--gray-700);
}

.back-to-top:hover {
  background: var(--gray-50);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   Sticky Mobile CTA
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.btn-apply-sticky {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary-green);
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.btn-apply-sticky:hover {
  background: var(--primary-green-hover);
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 72px;
  }
}

/* ========================================
   Tablet (640px+)
   ======================================== */
@media (min-width: 640px) {
  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 36px;
  }
}

/* ========================================
   Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .header-inner {
    padding: 14px 24px;
  }

  .logo-text {
    font-size: 15px;
    max-width: none;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-link:hover {
    color: var(--white);
  }

  .btn-apply-header {
    display: inline-flex;
    align-items: center;
    background: var(--primary-green);
    color: var(--gray-900);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
  }

  .btn-apply-header:hover {
    background: var(--primary-green-hover);
  }

  .hamburger {
    display: none;
  }

  .hero {
    padding: 140px 24px 0px;
  }

  .hero-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .hero-content {
    flex: 1;
    padding-top: 16px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-checker {
    width: 400px;
    flex-shrink: 0;
  }

  .eligibility-card {
    padding: 28px 24px;
  }

  .eligibility-title {
    font-size: 20px;
  }

  .hero-showcase {
    max-width: 1120px;
    margin-top: 24px;
    padding: 0;
  }

  .container {
    padding: 0 24px;
  }

  .how-it-works {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .trusted-by {
    padding: 64px 0;
  }

  .pricing {
    padding: 80px 0;
  }

  .pricing .section-title {
    font-size: 30px;
  }

  .faq-section {
    padding: 80px 0;
  }

  .features-section {
    padding: 80px 0;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer {
    padding: 64px 0 32px;
  }

  .sticky-cta {
    display: none;
  }

  .back-to-top {
    bottom: 32px;
    right: 32px;
  }
}

/* ========================================
   Large Desktop (1280px+)
   ======================================== */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-checker {
    width: 430px;
  }
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up:nth-child(2).visible { transition-delay: 0.1s; }
.fade-in-up:nth-child(3).visible { transition-delay: 0.2s; }
.fade-in-up:nth-child(4).visible { transition-delay: 0.15s; }
.fade-in-up:nth-child(5).visible { transition-delay: 0.2s; }
.fade-in-up:nth-child(6).visible { transition-delay: 0.25s; }

/* Smooth transitions for interactive elements */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
