/* ============================================
   GOVIETVISA.COM — Main Stylesheet
   Premium Government-style design
   ============================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2b4a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  /* Primary brand */
  --primary: #0a3d8f;          /* Deep navy blue — like passport/government */
  --primary-dark: #062a66;
  --primary-light: #1c5ec9;
  --primary-50: #eaf1fb;

  /* Accent */
  --accent: #ffb800;            /* Gold accent */
  --accent-dark: #e6a500;

  /* Vietnam flag */
  --viet-red: #da251d;
  --viet-yellow: #ffcd00;

  /* Neutrals */
  --ink-900: #0d1b35;
  --ink-700: #2a3f5f;
  --ink-500: #5a6d8a;
  --ink-300: #a3afc4;
  --ink-100: #e6ecf5;
  --ink-50: #f4f7fb;
  --white: #ffffff;

  /* Semantic */
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #dc2626;

  /* Spacing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(13,27,53,.08);
  --shadow-md: 0 4px 20px rgba(13,27,53,.08);
  --shadow-lg: 0 12px 40px rgba(13,27,53,.12);
  --shadow-xl: 0 24px 60px rgba(13,27,53,.16);

  /* Containers */
  --container-width: 1200px;
  --header-height: 80px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  transition: all .2s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 61, 143, .25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10, 61, 143, .35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-block { width: 100%; }
.btn-large { padding: 18px 36px; font-size: 17px; }
.btn-header { display: none; }
@media (min-width: 1024px) {
  .btn-header { display: inline-flex; padding: 10px 22px; font-size: 14px; }
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.9);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-hours { color: var(--accent); }
@media (max-width: 768px) {
  .topbar-hours { display: none; }
  .topbar { font-size: 12px; }
  .topbar-left { gap: 12px; }
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo-tag {
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 2px;
}
.nav {
  display: none;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav { display: flex; }
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width .3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  transition: all .3s ease;
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.nav.open {
  display: flex;
  position: absolute;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 20px 24px;
  border-top: 1px solid var(--ink-100);
  box-shadow: var(--shadow-md);
  gap: 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #f4f7fb 0%, #eaf1fb 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: var(--primary-light);
  top: -150px; right: -100px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -150px; left: -100px;
  opacity: .2;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .hero { padding: 80px 0 100px; }
}

/* Hero content */
.hero-content { padding-top: 12px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--ink-500);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.trust-label {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 6px;
  font-weight: 500;
}

/* Hero form */
.hero-form-wrap {
  position: relative;
}
.hero-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--ink-100);
  position: relative;
}
@media (min-width: 1024px) {
  .hero-form { padding: 40px; }
}
.form-header { margin-bottom: 24px; text-align: center; }
.form-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--ink-500);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: var(--ink-50);
  font-size: 15px;
  color: var(--ink-900);
  transition: all .2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6d8a' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(10, 61, 143, .1);
}

/* Price display */
.price-display {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  text-align: center;
}
.price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  font-weight: 500;
}
.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  margin: 4px 0;
  line-height: 1;
}
.price-unit {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
}
.price-note {
  font-size: 12px;
  opacity: 0.85;
}

.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-500);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--ink-900);
  color: var(--white);
  padding: 28px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
}
.trust-bar-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}
.trust-bar-item span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
@media (max-width: 768px) {
  .section { padding: 60px 0; }
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--primary-50);
  border-radius: 100px;
}
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-500);
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all .3s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.step-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--ink-100);
  line-height: 1;
}
.step-icon { font-size: 44px; margin-bottom: 20px; }
.step-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}
.step-desc {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
  background: var(--ink-50);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
}
.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all .3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card-featured {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-xl);
}
.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
}
.pricing-card-featured .pricing-title,
.pricing-card-featured .pricing-features li {
  color: var(--white);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-100);
  color: var(--ink-700);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-badge-featured {
  background: var(--accent);
  color: var(--ink-900);
}
.pricing-badge-urgent {
  background: var(--viet-red);
  color: var(--white);
}
.pricing-title {
  font-size: 28px;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.pricing-sub {
  font-size: 14px;
  color: var(--ink-500);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.pricing-card-featured .pricing-sub { color: rgba(255,255,255,.8); }
.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
}
.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  margin-top: 12px;
  margin-right: 4px;
}
.pricing-amount {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}
.pricing-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 24px;
  margin-left: 8px;
  font-family: 'Inter', sans-serif;
}
.pricing-card-featured .pricing-period { color: rgba(255,255,255,.7); }
.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 14px;
  color: var(--ink-700);
}
.pricing-card-featured .pricing-features li {
  border-bottom-color: rgba(255,255,255,.15);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-card-featured .btn-primary {
  background: var(--accent);
  color: var(--ink-900);
}
.pricing-card-featured .btn-primary:hover {
  background: var(--accent-dark);
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--ink-500);
}
.pricing-note a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .3s ease;
}
.why-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(180deg, var(--ink-50) 0%, var(--white) 100%);
}
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  color: var(--ink-900);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--ink-500);
}

/* ===== CTA ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,184,0,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}
.cta-section .btn-primary {
  background: var(--accent);
  color: var(--ink-900);
  box-shadow: 0 8px 24px rgba(255, 184, 0, .35);
}
.cta-section .btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 32px rgba(255, 184, 0, .45);
}

/* ===== FAQ ===== */
.faq-teaser { background: var(--ink-50); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .2s ease;
}
.faq-item[open] {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  font-weight: 300;
  transition: transform .3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.7;
}
.faq-more {
  text-align: center;
  margin-top: 32px;
}
.link-arrow {
  color: var(--primary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.85);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tag { color: rgba(255,255,255,.5); }
.footer-about {
  font-size: 14px;
  line-height: 1.7;
  margin: 20px 0;
  color: rgba(255,255,255,.7);
  max-width: 320px;
}
.footer-contact p {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(255,255,255,.7);
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.footer-col ul a:hover {
  color: var(--accent);
}
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-bottom p { margin-bottom: 8px; }
.footer-disclaimer {
  font-size: 12px;
  font-style: italic;
  max-width: 800px;
}

/* ===== APPLY FORM PAGE ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 12px;
  position: relative;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.apply-section {
  padding: 0 0 80px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.apply-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .apply-wrap { grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
}
.apply-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}
@media (max-width: 768px) {
  .apply-form { padding: 24px; }
}
.form-section-title {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-50);
  margin-top: 32px;
}
.form-section-title:first-child { margin-top: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.required { color: var(--danger); }
.form-help {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 6px;
}
.file-upload {
  display: block;
  padding: 24px;
  border: 2px dashed var(--ink-100);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
  background: var(--ink-50);
}
.file-upload:hover {
  border-color: var(--primary);
  background: var(--primary-50);
}
.file-upload input { display: none; }
.file-upload-text {
  font-size: 14px;
  color: var(--ink-500);
}
.file-upload-text strong {
  color: var(--primary);
}

/* Sidebar summary */
.apply-sidebar {
  position: sticky;
  top: 100px;
}
.summary-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  margin-bottom: 20px;
}
.summary-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-100);
  color: var(--primary);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--ink-100);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: var(--ink-500); }
.summary-row span:last-child { color: var(--ink-900); font-weight: 600; }
.summary-total {
  background: var(--primary);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-total span:first-child {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}
.summary-total span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
}
.summary-trust {
  background: var(--ink-50);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 13px;
  color: var(--ink-700);
}
.summary-trust strong {
  display: block;
  color: var(--primary);
  margin-bottom: 8px;
}
.summary-trust li {
  padding: 4px 0;
}

/* ===== STATIC PAGES (FAQ, Contact, Terms...) ===== */
.content-section { padding: 60px 0 80px; }
.content-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.content-wrap h2 {
  font-size: 28px;
  color: var(--primary);
  margin: 40px 0 16px;
}
.content-wrap h3 {
  font-size: 20px;
  color: var(--ink-900);
  margin: 24px 0 12px;
  font-family: 'Inter', sans-serif;
}
.content-wrap p {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-wrap ul, .content-wrap ol {
  margin: 16px 0 24px 24px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.8;
}
.content-wrap ul li, .content-wrap ol li {
  list-style: disc;
  margin-bottom: 8px;
}
.content-wrap ol li { list-style: decimal; }
.content-wrap a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* Pricing table on fees page */
.fees-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}
.fees-table th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fees-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-100);
  font-size: 15px;
  color: var(--ink-700);
}
.fees-table tr:last-child td { border-bottom: none; }
.fees-table tr:hover td { background: var(--ink-50); }
.fees-table .price-cell {
  font-weight: 700;
  color: var(--primary);
  font-size: 17px;
}

/* Thank you page */
.thankyou-wrap {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.thankyou-icon {
  width: 100px;
  height: 100px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--white);
  font-size: 50px;
  box-shadow: 0 12px 32px rgba(22, 163, 74, .3);
}
.thankyou-title {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--ink-900);
}
.thankyou-text {
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.thankyou-ref {
  background: var(--ink-50);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.thankyou-ref strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary);
  display: block;
  margin-top: 4px;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
}
.contact-info h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 4px;
}
.contact-info-text p { color: var(--white); font-size: 15px; }

/* Mobile fixes */
@media (max-width: 640px) {
  .hero-features { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .hero { padding: 40px 0 60px; }
  .footer-grid { gap: 32px; }
}
