@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Cyber Space & Golden Accents */
  --bg-primary: #050811;
  --bg-secondary: #0a0f1d;
  --bg-tertiary: #131a2e;
  
  --primary: #4f46e5;         /* Electric Indigo */
  --primary-glow: rgba(79, 70, 229, 0.4);
  --primary-hover: #4338ca;
  
  --accent: #f59e0b;          /* Warm Gold (represents German Pension & Refund) */
  --accent-glow: rgba(245, 158, 11, 0.3);
  --accent-hover: #d97706;
  
  --success: #10b981;         /* Refund Success Green */
  --success-glow: rgba(16, 185, 129, 0.2);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-color: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(79, 70, 229, 0.3);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  background: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 100% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

section.alt-bg {
  background-color: var(--bg-secondary);
}

/* Subtle Grid Background Pattern Overlay */
section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 8, 17, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(5, 8, 17, 0.85);
  border-bottom-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 30%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: 1rem;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: #ffffff;
}

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

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 6px 0;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  padding-top: 200px;
  padding-bottom: 140px;
  background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 16px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #a5b4fc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 0 12px rgba(79, 70, 229, 0.1);
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 70%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

.cta-group {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
  color: #ffffff;
  box-shadow: 0 4px 24px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a52ff 0%, #4f46e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
  color: #050811;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Glass Card */
.glass-card {
  background: rgba(10, 15, 29, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: var(--transition-normal);
  position: relative;
  z-index: 2;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent 40%, rgba(79, 70, 229, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 40px 80px rgba(79, 70, 229, 0.08);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-header h2 {
  font-size: 3rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Eligibility Checker Widget */
.checker-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.checker-card {
  padding: 56px;
}

.checker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.checker-title-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checker-step-indicator {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.progress-bar-bg {
  width: 140px;
  height: 6px;
  background-color: var(--bg-tertiary);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  transition: var(--transition-normal);
}

.checker-step {
  display: none;
}

.checker-step.active {
  display: block;
  animation: fadeInStep 0.4s ease-out forwards;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.checker-step h3 {
  font-size: 1.75rem;
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.option-card {
  background: rgba(19, 26, 46, 0.4);
  border: 1px solid var(--border-color);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.option-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.option-card:hover {
  border-color: rgba(79, 70, 229, 0.4);
  background: rgba(79, 70, 229, 0.04);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.08);
  box-shadow: 0 0 25px rgba(79, 70, 229, 0.15);
}

.option-card.selected::before {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.option-card-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
}

.option-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checker-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Checker Results */
.result-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.result-badge {
  display: inline-flex;
  padding: 8px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-badge.eligible {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.result-badge.warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

.result-title {
  font-size: 2.25rem;
  background: linear-gradient(to right, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-desc {
  color: var(--text-secondary);
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.result-points {
  text-align: left;
  background: rgba(19, 26, 46, 0.3);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 600px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
}

.result-point svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.result-point.check svg {
  color: #34d399;
}

.result-point.cross svg {
  color: #f87171;
}

/* Service Detail Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.08);
}

.service-card h3 {
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-card ul li svg {
  color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Info Cards / Why Support */
.info-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.info-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(19, 26, 46, 0.4);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
}

.info-card:hover {
  border-color: rgba(79, 70, 229, 0.2);
  transform: translateX(6px);
  background: rgba(19, 26, 46, 0.6);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.info-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.info-card-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Timeline Process */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, 
              rgba(79, 70, 229, 0.8), 
              rgba(245, 158, 11, 0.8) 50%, 
              var(--border-color) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 48px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-node {
  position: absolute;
  top: 26px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--primary);
  z-index: 5;
  transition: var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-node {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-node {
  left: -10px;
  border-color: var(--accent);
}

.timeline-item:hover .timeline-node {
  transform: scale(1.4);
  box-shadow: 0 0 20px var(--primary);
  background-color: var(--primary);
}

.timeline-item:nth-child(even):hover .timeline-node {
  box-shadow: 0 0 20px var(--accent);
  background-color: var(--accent);
}

.timeline-content {
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.timeline-step-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  margin-bottom: 10px;
}

.timeline-item:nth-child(even) .timeline-step-num {
  color: #fcd34d;
}

.timeline-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Feature Grid / Why Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-box {
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid var(--border-color);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: var(--transition-normal);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.25);
  background: rgba(19, 26, 46, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-box-icon {
  width: 52px;
  height: 52px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.feature-box h4 {
  font-size: 1.15rem;
  color: #ffffff;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Accordion FAQs */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(79, 70, 229, 0.2);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-item:hover .faq-header h3 {
  color: #ffffff;
}

.faq-icon-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-normal);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon-indicator {
  transform: rotate(180deg);
  background: rgba(79, 70, 229, 0.1);
  color: #a5b4fc;
  border-color: rgba(79, 70, 229, 0.2);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 32px 28px 32px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact Form Grid */
.contact-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

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

.contact-info-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(10, 15, 29, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.contact-method-item:hover {
  border-color: rgba(79, 70, 229, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.contact-method-details span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-method-details a {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition-fast);
}

.contact-method-item:hover .contact-method-details a {
  color: #a5b4fc;
}

.contact-method-item.whatsapp-item:hover .contact-method-details a {
  color: #22c55e;
}

.contact-method-item.whatsapp-item .contact-method-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.2);
}

/* Contact Form UI */
.contact-form-card {
  padding: 48px;
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(19, 26, 46, 0.6);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
  background: rgba(19, 26, 46, 0.8);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
}

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

/* Action buttons in form */
.form-actions {
  display: flex;
  gap: 20px;
}

.form-actions button {
  flex: 1;
}

#btn-submit-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

#btn-submit-whatsapp:hover {
  background: linear-gradient(135deg, #28d96b 0%, #22c55e 100%);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
}

/* Footer & Disclaimers */
footer {
  background-color: #03050c;
  padding: 80px 0 48px 0;
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-disclaimer-box {
  background: rgba(245, 158, 11, 0.02);
  border: 1px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
}

.footer-disclaimer-box h4 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-disclaimer-box h4 svg {
  flex-shrink: 0;
}

.footer-disclaimer-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a {
  transition: var(--transition-fast);
}

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

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  
  .badge {
    align-self: center;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero p {
    margin: 0 auto;
  }
  
  .cta-group {
    justify-content: center;
  }
  
  .hero-image {
    max-width: 380px;
  }
  
  .checker-card {
    padding: 32px;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .timeline-line {
    left: 24px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 56px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(odd) {
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-node {
    left: 14px !important;
  }
  
  .info-section-grid,
  .contact-section-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .checker-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .progress-bar-bg {
    width: 100%;
  }
}
