/* =============================================
   COMPONENTS — cards, pricing, contact, forms
   ============================================= */

/* ---- Trust bar ---- */
.trust-bar {
  background: linear-gradient(90deg, var(--color-primary) 0%, #1A4A8A 100%);
  padding: var(--space-3) 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  font-family: var(--font-heading);
  font-weight: 500;
}
.trust-item svg {
  width: 16px; height: 16px;
  color: var(--color-sky);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px; height: 16px;
  background-color: rgba(255,255,255,0.2);
}

/* ---- Service cards ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-action), var(--color-sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.card:hover::before { transform: scaleX(1); }

/* Card icon — supports both inline SVG and <img> */
.card-icon {
  width: 52px; height: 52px;
  background-color: var(--color-ice-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: background-color var(--transition-base);
  flex-shrink: 0;
}
.card:hover .card-icon { background-color: var(--color-action); }
.card-icon svg {
  width: 26px; height: 26px;
  color: var(--color-action);
  transition: color var(--transition-base);
}
.card:hover .card-icon svg { color: var(--color-white); }
/* img icons in cards — CSS filter for hover white effect */
.card-icon img {
  width: 26px; height: 26px;
  transition: filter var(--transition-base);
}
.card:hover .card-icon img { filter: brightness(0) invert(1); }

.card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.card p {
  font-size: var(--text-sm);
  flex: 1;
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-action);
  font-family: var(--font-heading);
  transition: gap var(--transition-fast);
}
.card:hover .card-link { gap: var(--space-2); }

/* ---- Why choose us grid ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
}
.why-item { text-align: center; padding: var(--space-6); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--color-action), var(--color-sky));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}
.why-icon svg { width: 30px; height: 30px; color: var(--color-white); }
.why-icon img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.why-item h4 { margin-bottom: var(--space-2); }

/* ---- Numbered approach list (about page) ---- */
.approach-list { display: flex; flex-direction: column; gap: var(--space-6); }
.approach-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.approach-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.approach-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-ice);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
  transition: color var(--transition-base);
}
.approach-item:hover .approach-number { color: var(--color-action); }
.approach-item h4 { margin-bottom: var(--space-2); color: var(--color-primary); }
.approach-item p { font-size: var(--text-sm); }

/* ---- Stats row ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-sky);
}
.stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-2);
}

/* ---- Service feature list ---- */
.service-features { margin-top: var(--space-4); }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.service-features li:last-child { border-bottom: none; }
.service-features li svg {
  width: 18px; height: 18px;
  color: var(--color-action);
  flex-shrink: 0;
  margin-top: 2px;
}
.service-features li img {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Services detail blocks ---- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--color-action), var(--color-sky));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.service-block-icon svg  { width: 36px; height: 36px; color: var(--color-white); }
.service-block-icon img  { width: 36px; height: 36px; filter: brightness(0) invert(1); }

/* Service visual info panel (replaces blank placeholder) */
.service-info-panel {
  background: linear-gradient(145deg, var(--color-ice-light) 0%, var(--color-white) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-ice);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.service-info-panel-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--color-ice);
}
.service-info-panel-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-action), var(--color-sky));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-info-panel-icon img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.service-info-panel-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary);
}
.service-info-panel-subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.key-facts { display: flex; flex-direction: column; gap: var(--space-3); }
.key-fact {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.key-fact-value {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-action);
  min-width: 80px;
  flex-shrink: 0;
}
.key-fact-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ---- About page facts panel ---- */
.about-facts-panel {
  background: linear-gradient(135deg, var(--color-ice-light) 0%, var(--color-white) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.about-facts-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
}
.about-fact-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.about-fact-icon {
  width: 48px;
  height: 48px;
  background: var(--color-action);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-fact-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}
.about-fact-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ---- Pricing tabs ---- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}
.pricing-tab {
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}
.pricing-tab.active {
  border-color: var(--color-action);
  background-color: var(--color-action);
  color: var(--color-white);
}

.pricing-section { display: none; }
.pricing-section.active { display: block; }

/* Individual pricing table */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  font-family: var(--font-body);
}

/* ── Animated header — gradient spans the full row, no inter-column divider ── */
@keyframes pricing-header-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.pricing-table thead tr {
  background: linear-gradient(
    105deg,
    var(--color-primary) 0%,
    #1e6fc4       25%,
    #38b6f0       50%,
    #1e6fc4       75%,
    #1A4A8A       100%
  );
  background-size: 250% 100%;
  animation: pricing-header-shimmer 6s ease-in-out infinite;
}
.pricing-table th {
  background: transparent; /* let the row gradient show through — no column dividers */
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-table th:nth-child(2) { text-align: right; white-space: nowrap; }
.pricing-table th:last-child   { text-align: left; width: 40%; }

.pricing-table td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-base);
  vertical-align: top;
}
.pricing-table td:nth-child(2) { text-align: right; white-space: nowrap; vertical-align: top; padding-right: var(--space-6); }
.pricing-table td:nth-child(2) .price-value { display: block; }
.pricing-table td:nth-child(2) .price-billing-tag { display: inline-block; margin-top: var(--space-1); }
.pricing-table td:last-child   { text-align: left; width: 40%; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background-color: var(--color-ice-light); }

.price-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-action);
  font-size: var(--text-lg);
}
.price-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Package cards — equal height via grid stretch */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;   /* ← equal height */
}
.package-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-border);
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;  /* ← needed for stretch to work */
  height: 100%;            /* ← fill the grid row */
}
.package-card.featured {
  border-color: var(--color-action);
  box-shadow: var(--shadow-md);
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-action);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.package-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  font-weight: 700;
}
.package-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.package-price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-action);
}
.package-price-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  margin-top: var(--space-1);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.package-billing-tag {
  display: inline-block;
  background-color: var(--color-bg-subtle, #f1f5f9);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}
.package-services {
  margin-bottom: var(--space-6);
  flex: 1;  /* ← push CTA button to bottom */
}
.package-service-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.package-service-item:last-child { border-bottom: none; }
.package-service-item svg {
  width: 16px; height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}
.package-service-item img {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-6);
  background-color: var(--color-ice-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border: 1px solid var(--color-ice);
}

/* ---- Home hero ---- */
.home-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a56db 100%);
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero .hero-inner { position: relative; z-index: 2; }
.home-hero h1 { color: var(--color-white); margin: var(--space-4) auto; max-width: 820px; }
.home-hero .hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: var(--text-xl);
  max-width: 660px;
  margin: 0 auto var(--space-10);
}

/* Hero animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 540px; height: 540px;
  top: -180px; right: -150px;
  background: radial-gradient(circle at center, rgba(56,182,240,0.22) 0%, transparent 65%);
  animation: heroFloat 10s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  bottom: -130px; left: -100px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.10) 0%, transparent 65%);
  animation: heroFloat2 8s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 220px; height: 220px;
  top: 20%; left: 10%;
  background: radial-gradient(circle at center, rgba(56,182,240,0.14) 0%, transparent 65%);
  animation: heroFloat3 6s ease-in-out infinite;
}
.hero-orb-4 {
  width: 160px; height: 160px;
  bottom: 18%; right: 12%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 65%);
  animation: heroFloat2 5s 1.5s ease-in-out infinite alternate;
}
.hero-beam {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  z-index: 1;
  pointer-events: none;
  animation: heroBeam 14s 3s ease-in-out infinite;
}

/* ---- Home intro stats panel ---- */
.stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}
.stat-card {
  background: linear-gradient(145deg, var(--color-action) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition-base);
  animation: statGlow 4s ease-in-out infinite;
  min-height: 130px;
}
.stat-card:nth-child(2) { animation-delay: 1s; }
.stat-card:nth-child(3) { animation-delay: 2s; }
.stat-card:nth-child(4) { animation-delay: 3s; }
.stat-card:hover { transform: translateY(-5px) scale(1.02); }
/* Shiny sweeping shimmer along the top edge */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 55%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), rgba(56,182,240,0.9), transparent);
  animation: cardShimmer 4s ease-in-out infinite;
  pointer-events: none;
}
.stat-card:nth-child(2)::before { animation-delay: 1s; }
.stat-card:nth-child(3)::before { animation-delay: 2s; }
.stat-card:nth-child(4)::before { animation-delay: 3s; }
/* Sparkle glow in upper-right corner */
.stat-card::after {
  content: '';
  position: absolute;
  top: 10px; right: 12px;
  width: 22px; height: 22px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.50) 0%, rgba(56,182,240,0.35) 42%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.stat-card-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-1);
  flex-shrink: 0;
}
.stat-card-icon svg { width: 17px; height: 17px; color: var(--color-sky); }
.stat-card-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.stat-card-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---- Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1A56DB 100%);
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(56,182,240,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-xl);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .badge {
  position: relative;
  z-index: 1;
}

/* ---- CTA section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1452CC 100%);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(56,182,240,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--color-white); }
.cta-section p {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: var(--space-4) auto var(--space-8);
  font-size: var(--text-lg);
}
.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-info-icon {
  width: 44px; height: 44px;
  background-color: var(--color-ice-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg  { width: 22px; height: 22px; color: var(--color-action); }
.contact-info-icon img  { width: 22px; height: 22px; }
.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--font-heading);
}
.contact-info-value {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-top: 3px;
  line-height: 1.5;
}

/* Contact form */
.contact-form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.contact-form-card h3 { margin-bottom: var(--space-6); }

.form-group { margin-bottom: var(--space-4); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-family: var(--font-heading);
}
.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-action);
  box-shadow: 0 0 0 3px rgba(20,82,204,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  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='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: var(--space-10);
  cursor: pointer;
}

/* Required-field asterisk */
.req {
  color: #e53e3e;
  margin-left: 3px;
  font-weight: 700;
}
.form-required-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin: -var(--space-2) 0 var(--space-5);
}
.form-label-opt {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: var(--space-2);
}

/* reCAPTCHA wrapper */
.recaptcha-wrap {
  margin: var(--space-4) 0;
}

/* Disabled submit button */
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Map */
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-6);
}
.map-container iframe {
  width: 100%; height: 260px;
  border: none; display: block;
}
.map-open-btn {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 12px 6px 10px;
  font-size: var(--text-xs);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-action);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
  backdrop-filter: blur(4px);
}
.map-open-btn:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  color: var(--color-action);
}
.map-open-btn svg { flex-shrink: 0; }

/* ---- Confirmation modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  backdrop-filter: blur(3px);
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp 0.3s ease forwards;
}
.modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-2);
}

/* ============================================================
   SWITCH & SAVE PROMOTION
   ============================================================ */

/* ---- Nav highlight ---- */
.nav-switch-link {
  color: #E89A00 !important;
  font-weight: 700 !important;
  position: relative;
  padding-top: 10px !important; /* room for the NEW badge above */
}
.nav-switch-link::after {
  content: 'NEW';
  font-size: 0.5rem;
  background: #F59E0B;
  color: #000;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 800;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ---- High-contrast promo banner ---- */
.switch-banner {
  background: linear-gradient(135deg, #071929 0%, #0D2B4E 45%, #1452CC 100%);
  border-radius: var(--radius-lg);
  border-left: 5px solid #F59E0B;
  padding: var(--space-8) var(--space-10);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.switch-banner::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.switch-banner-rocket {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.switch-banner-content { flex: 1; min-width: 0; }
.switch-banner-headline {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}
.switch-banner-headline .discount { color: #FCD34D; }
.switch-banner-body {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 600px;
}
.switch-banner-actions { flex-shrink: 0; }
.btn-switch {
  background: linear-gradient(90deg, #F59E0B, #FBBF24);
  color: #1a1000;
  font-weight: 700;
  border: none;
  white-space: nowrap;
}
.btn-switch:hover {
  background: linear-gradient(90deg, #D97706, #F59E0B);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}

/* ---- Small "Switching is Easy" badge on stat card ---- */
.switch-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(90deg, #F59E0B, #FCD34D);
  color: #78350F;
  font-size: 0.62rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 2px 9px;
  border-radius: var(--radius-full);
  margin-top: var(--space-1);
  white-space: nowrap;
}

/* ---- Process steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin: var(--space-10) 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-action), var(--color-sky));
  pointer-events: none;
}
.process-step { text-align: center; }
.process-step-number {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--color-action), var(--color-sky));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: #fff;
  margin: 0 auto var(--space-4);
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(20,82,204,0.30);
}
.process-step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Comparison grid ---- */
.switch-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin: var(--space-8) 0;
}
.compare-col { padding: var(--space-8); }
.compare-col-ballast {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1452CC 100%);
  color: #fff;
}
.compare-col-other {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: none;
}
.compare-col-header {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; gap: var(--space-2);
}
.compare-col-other .compare-col-header {
  border-bottom-color: var(--color-border);
}
.compare-item {
  display: flex; align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-item:last-child { border-bottom: none; }
.compare-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; }
.compare-item img { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; }
.compare-col-ballast .compare-item { color: rgba(255,255,255,0.88); }
.compare-col-other  .compare-item {
  color: var(--color-text-muted);
  border-bottom-color: var(--color-border);
}

/* ---- T&C accordion ---- */
.tc-accordion {
  background: var(--color-ice-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-8);
}
.tc-accordion summary {
  list-style: none;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--color-text-muted);
  user-select: none;
  gap: var(--space-2);
}
.tc-accordion summary::-webkit-details-marker { display: none; }
.tc-accordion summary::after {
  content: '＋';
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
}
.tc-accordion[open] summary::after { content: '－'; }
.tc-accordion-body {
  padding: 0 var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-border);
}
.tc-accordion-body ol {
  padding-left: var(--space-6);
  margin: var(--space-4) 0 0;
}
.tc-accordion-body li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
}
.tc-accordion-body li:last-child { border-bottom: none; }
.tc-accordion-body li strong { color: var(--color-text); }

/* ---- Switcher checkbox in contact form ---- */
.switch-promo-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(90deg, rgba(245,158,11,0.08), rgba(252,211,77,0.06));
  border: 1.5px solid #F59E0B;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin-bottom: var(--space-4);
}
.switch-promo-check input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: #F59E0B;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.switch-promo-check-label {
  font-size: var(--text-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.5;
}
.switch-promo-check-label .highlight { color: #B45309; font-weight: 700; }
