/* ==========================================================================
   AVANGARD INTELLEGANCE - MODERN PAYMENT PROCESSING STYLES
   ========================================================================== */

:root {
  /* Vibrant Palette */
  --bg-dark: #090d16;
  --bg-card: rgba(18, 26, 44, 0.75);
  --bg-card-hover: rgba(26, 37, 62, 0.85);
  --bg-input: rgba(13, 20, 36, 0.8);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(16, 185, 129, 0.3);

  /* Vivid Accent Colors */
  --primary-emerald: #10b981;
  --primary-emerald-light: #34d399;
  --primary-cyan: #06b6d4;
  --primary-cyan-light: #38bdf8;
  --accent-gold: #f59e0b;
  --accent-purple: #8b5cf6;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #090d16;

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --glow-emerald: 0 0 35px -5px rgba(16, 185, 129, 0.35);
  --glow-cyan: 0 0 35px -5px rgba(6, 182, 212, 0.35);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Orbs */
.glow-orb {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
  opacity: 0.18;
}

.glow-top-left {
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, var(--primary-emerald), transparent 70%);
}

.glow-top-right {
  top: 150px;
  right: -150px;
  background: radial-gradient(circle, var(--primary-cyan), transparent 70%);
}

.glow-mid-left {
  top: 900px;
  left: -200px;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.glow-bottom-right {
  bottom: 0px;
  right: -100px;
  background: radial-gradient(circle, var(--primary-emerald), transparent 70%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Text Gradients */
.gradient-text-emerald {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand Link with Left-Top Corner Logo */
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.2s ease;
}

.brand-link:hover {
  transform: translateY(-1px);
}

.logo-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--primary-emerald-light);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.nav-phone-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-phone-btn .icon {
  width: 16px;
  height: 16px;
  color: var(--primary-emerald-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  font-family: var(--font-main);
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

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

.btn-emerald {
  background: #10b981;
  color: #ffffff;
}

.btn-emerald:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-large {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-block {
  width: 100%;
}

.btn-outline-glow {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-emerald-light);
  border-color: rgba(16, 185, 129, 0.4);
}

.btn-outline-glow:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--primary-emerald-light);
  color: #ffffff;
  box-shadow: var(--glow-emerald);
}

.btn-arrow, .btn-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-emerald-light);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-emerald);
  box-shadow: 0 0 10px var(--primary-emerald);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pill-icon {
  width: 18px;
  height: 18px;
}

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

/* Hero Glass Feature Card */
.glass-feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--glow-cyan);
  position: relative;
  overflow: hidden;
}

.glass-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-emerald), var(--primary-cyan), var(--accent-purple));
}

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

.card-status-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-cyan-light);
}

.chip-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: var(--text-secondary);
}

.rate-comparison-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.rate-column {
  flex: 1;
}

.rate-column .label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.rate-column .rate-val {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.rate-column .strike {
  color: #ef4444;
  text-decoration: line-through;
  opacity: 0.8;
}

.rate-column .highlight {
  color: var(--primary-emerald-light);
}

.rate-column .subtext {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.rate-vs {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 0 0.75rem;
}

.card-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.bg-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.bg-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--primary-cyan-light);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.bg-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.bg-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.feature-item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.feature-item-text p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   STATS BANNER
   ========================================================================== */
.stats-banner {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(13, 20, 36, 0.5);
}

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

.stat-card {
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   HOW IT WORKS / STEPS (MAKE IT LOOK EASY)
   ========================================================================== */
.steps-section {
  padding: 5.5rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-cyan-light);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-md);
}

.step-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.step-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon-circle svg {
  width: 26px;
  height: 26px;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

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

/* ==========================================================================
   SOLUTIONS SECTION
   ========================================================================== */
.solutions-section {
  padding: 5.5rem 0;
  background: rgba(13, 20, 36, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 182, 212, 0.3);
}

.featured-card {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(22, 33, 56, 0.85) 0%, rgba(18, 26, 44, 0.9) 100%);
  box-shadow: var(--glow-emerald);
}

.solution-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

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

.bg-emerald-glow {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.bg-cyan-glow {
  background: rgba(6, 182, 212, 0.2);
  color: var(--primary-cyan-light);
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.bg-purple-glow {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-purple);
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.card-badge.popular {
  background: var(--primary-emerald);
  color: #ffffff;
}

.solution-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.solution-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  color: var(--text-secondary);
}

.solution-list {
  list-style: none;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.solution-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.2rem;
}

.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-emerald-light);
  font-weight: 800;
}

/* ==========================================================================
   TRUST / SPECIALIST SECTION
   ========================================================================== */
.trust-section {
  padding: 5.5rem 0;
}

.trust-card-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
}

.trust-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.75rem 0 1rem;
  line-height: 1.25;
}

.trust-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.trust-perks-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-icon svg {
  width: 18px;
  height: 18px;
}

.perk-text strong {
  display: block;
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.perk-text span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Specialist Card */
.agent-card {
  background: rgba(13, 20, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.agent-avatar-area {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 1.25rem;
}

.agent-avatar-crop {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--primary-emerald);
  box-shadow: 0 4px 22px rgba(16, 185, 129, 0.45);
  position: relative;
  background: var(--bg-dark);
}

.agent-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.5);
  transform-origin: center 25%;
  display: block;
}

.agent-avatar-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-emerald), var(--primary-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: #10b981;
  border: 3px solid var(--bg-dark);
  border-radius: 50%;
}

.agent-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.agent-role {
  font-size: 0.9rem;
  color: var(--primary-emerald-light);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.agent-affiliation {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.agent-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.agent-note {
  font-size: 0.78rem;
  color: var(--primary-cyan-light);
  font-weight: 500;
}

/* ==========================================================================
   QUOTE FORM SECTION
   ========================================================================== */
.form-section {
  padding: 5.5rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg), var(--glow-emerald);
}

.form-header-box {
  margin-bottom: 2.25rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.6rem 0;
}

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

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bot-field-hidden {
  display: none !important;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-field .req {
  color: #f87171;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background: rgba(18, 28, 50, 0.9);
}

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

.form-select option {
  background: #0d1424;
  color: #ffffff;
}

.form-submit-group {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.privacy-guarantee {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}

.faq-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

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

/* ==========================================================================
   FOOTER (WITH BOTTOM-LEFT LOGO)
   ========================================================================== */
.site-footer {
  background: #060910;
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 2.5rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.6;
}

.footer-specialist-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  max-width: 320px;
}

.serving-badge {
  font-size: 0.78rem;
  color: var(--primary-emerald-light);
  font-weight: 600;
  margin-top: 0.25rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--primary-emerald-light);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-emerald-light);
  flex-shrink: 0;
}

.footer-contact-link {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: var(--primary-emerald-light);
}

.footer-lang-badge {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--primary-cyan-light);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.compliance-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

.footer-legal-links .sep {
  opacity: 0.4;
}

/* ==========================================================================
   MOBILE STICKY QUICK-ACTION BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(9, 13, 22, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.mobile-bar-btn svg {
  width: 18px;
  height: 18px;
}

.mobile-bar-btn.btn-call {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-bar-btn.btn-quote {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   RESPONSIVE / MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-heading {
    font-size: 2.75rem;
  }

  .trust-card-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* Space for sticky mobile bar */
  }

  .header-nav {
    padding: 0.65rem 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-section {
    padding: 2.5rem 0 2rem;
  }

  .hero-heading {
    font-size: 2.15rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

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

  .steps-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .form-wrapper {
    padding: 2rem 1.25rem;
  }

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

  .mobile-sticky-bar {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.85rem;
  }

  .brand-title {
    font-size: 1rem;
  }

  .logo-wrapper {
    width: 38px;
    height: 38px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .trust-heading {
    font-size: 1.75rem;
  }
}
