/* ============================================================================
   VRUUSHAL.COM — simple, clean theme
   White canvas, one clear blue accent, Inter throughout, generous rounded
   corners, soft shadows. No dark bands, no ornamental flourishes.
   ============================================================================ */

:root {
  --primary: #6D3DF5;
  --primary-dark: #5527D6;
  --primary-light: #F1ECFB;
  --primary-wash: #F8F6FF;
  --accent: #9B7BFF;

  --text: #16151D;
  --text-muted: #64748B;

  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --border: #E2E8F0;

  --footer-bg: #17132B;
  --footer-text-muted: #94A3B8;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);

  --radius: 16px;
  --radius-sm: 7px;
  --radius-btn: 7px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-soft);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-font-smoothing: antialiased;
}
.site-wrapper {
  width: 100%;
  background: var(--bg);
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 10px;
}

header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 47px;
  width: 100%;
  padding: 1px 15px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.logo img.header-logo-img {
  width: 67px !important;
  height: 45px !important;
  object-fit: contain;
  display: block;
}
.logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--primary);
}
.btn-header {
  background: var(--primary);
  color: white !important;
  padding: 10px 10px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-header:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.nav-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary) !important;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-call-link:hover {
  background: var(--primary);
  color: white !important;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s;
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.dropdown-menu li a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.page-view {
  display: block;
  padding: 30px 0 50px;
  animation: fadeUp 0.3s ease;
  background: var(--bg);
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---- Hero (home + services hub) ---- */
.hero {
  background: linear-gradient(145deg, var(--primary-wash) 0%, #ffffff 100%);
  padding: 44px 0 34px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 12px auto 24px;
  font-size: 1.05rem;
}

/* ---- Eyebrow pill badge (used above hero headlines) ---- */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 7px;
  margin-bottom: 16px;
}

/* ---- Ghost secondary button (icon + text, no fill) ---- */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.btn-ghost-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.btn-ghost:hover {
  color: var(--primary);
  gap: 12px;
}

/* ---- Homepage hero: two-column layout with decorative visual ---- */
.hero-home .container {
  text-align: left;
}
.hero-home-grid {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-home-copy {
  flex: 1.15 1 0%;
  min-width: 0;
}
.hero-home-visual {
  flex: 1 1 0%;
  min-width: 0;
}
.hero-home-copy h1 {
  font-size: 2.1rem;
}
.hero-home-copy p {
  margin: 14px 0 26px;
  max-width: 480px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-cta-row .btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
}
.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust-strip img {
  height: 38px;
  width: auto;
  border-radius: 6px;
  display: block;
}
.hero-trust-strip span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-home-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  width: 240px;
  height: 240px;
  background: linear-gradient(160deg, var(--primary-light) 0%, #ffffff 72%);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero-blob-icon {
  width: 92px;
  height: 92px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.hero-blob-icon i {
  font-size: 2.3rem;
  color: var(--primary);
}
.hero-sparkle {
  position: absolute;
  background: var(--accent);
  opacity: 0.6;
  clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
}
.hero-sparkle-1 {
  width: 18px;
  height: 18px;
  top: 4%;
  right: 12%;
}
.hero-sparkle-2 {
  width: 12px;
  height: 12px;
  bottom: 10%;
  right: 22%;
  opacity: 0.35;
}
.hero-stat-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-stat-chip strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.15;
}
.hero-stat-chip small {
  display: block;
  font-size: 0.66rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-stat-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero-stat-chip-1 { top: 4%; left: -4%; }
.hero-stat-chip-2 { top: 46%; right: -8%; }
.hero-stat-chip-3 { bottom: 2%; left: 10%; }

@media (max-width: 840px) {
  .hero-home-grid {
    flex-direction: column;
  }
  .hero-home .container {
    text-align: center;
  }
  .hero-home-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-row,
  .hero-trust-strip {
    justify-content: center;
  }
  .hero-home-visual {
    height: 260px;
    margin-top: 12px;
  }
}
@media (max-width: 640px) {
  .hero-stat-chip {
    padding: 8px 10px;
  }
  .hero-stat-chip-1 { left: -2%; }
  .hero-stat-chip-2 { right: -2%; }
  .hero-stat-chip-3 { left: 2%; }
}

.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
  align-items: start;
}
.service-layout.full-width {
  grid-template-columns: 1fr;
}
.service-content {
  /* Grid items default to min-width:auto, which lets wide content (like
     the pricing table below) force the whole grid column wider than the
     viewport instead of scrolling internally. min-width:0 fixes that. */
  min-width: 0;
}
.service-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.service-content > p:first-of-type,
.service-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.96rem;
}
.service-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 26px 0 12px;
  color: var(--text);
}
.service-content ul {
  padding-left: 20px;
  list-style: disc;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.service-content ul li {
  margin-bottom: 4px;
}
.service-content ul li::marker {
  color: var(--primary);
}
.service-content .legal-section {
  background: var(--bg-soft);
  padding: 18px 20px;
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  margin: 16px 0;
}
.service-content .legal-section h4 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 30px;
}
.feature-card {
  background: var(--bg);
  padding: 16px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.feature-card i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.feature-card h4 {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}

/* ---- Plan comparison table ---- */
.pricing-section {
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.pricing-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}
.pricing-section > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 640px;
}
.pricing-table thead th {
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 12px 10px;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.plan-price {
  display: block;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 4px;
}
.pricing-table tbody td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  white-space: nowrap;
}
.pricing-table thead th:first-child,
.pricing-table tbody td:first-child {
  text-align: left;
  white-space: normal;
  font-weight: 600;
  position: sticky;
  left: 0;
  background: var(--bg);
  box-shadow: 1px 0 0 var(--border);
}
.pricing-table thead th:first-child {
  background: var(--bg-soft);
  z-index: 2;
}

/* ---- Section divider bars (static — Core metrics, Essentials, etc.) ---- */
.pricing-table tr.group-divider td {
  background: var(--bg-soft);
  text-align: left;
}
.pricing-table tr.group-divider td:first-child {
  background: var(--bg-soft);
}
.group-label {
  font-weight: 800;
  color: var(--text);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Per-plan identity colors ---- */
:root {
  --plan-launch: #64748B;
  --plan-starter: #0F766E;
  --plan-business: #4F5FE0;
  --plan-professional: #7C3AED;
  --plan-advanced: #4338CA;
  --plan-premium: #1E293B;
}
.pricing-table thead th:nth-child(2) .plan-price { color: var(--plan-launch); }
.pricing-table thead th:nth-child(3) .plan-price { color: var(--plan-starter); }
.pricing-table thead th:nth-child(4) .plan-price { color: var(--plan-business); }
.pricing-table thead th:nth-child(5) .plan-price { color: var(--plan-professional); }
.pricing-table thead th:nth-child(6) .plan-price { color: var(--plan-advanced); }
.pricing-table thead th:nth-child(7) .plan-price { color: var(--plan-premium); }
.cta-body td:nth-child(2) .btn-plan { background: var(--plan-launch); }
.cta-body td:nth-child(3) .btn-plan { background: var(--plan-starter); }
.cta-body td:nth-child(4) .btn-plan { background: var(--plan-business); }
.cta-body td:nth-child(5) .btn-plan { background: var(--plan-professional); }
.cta-body td:nth-child(6) .btn-plan { background: var(--plan-advanced); }
.cta-body td:nth-child(7) .btn-plan { background: var(--plan-premium); }

/* ---- "Most Popular" column — styled like a raised card (Business plan) ---- */
.pricing-table th:nth-child(4),
.pricing-table td:nth-child(4) {
  background: var(--primary-light);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}
.pricing-table thead th.plan-popular {
  background: var(--primary-light);
  padding-top: 8px;
  border-top: 2px solid var(--primary);
  border-radius: 10px 10px 0 0;
}
.cta-body td:nth-child(4) {
  border-bottom: 2px solid var(--primary);
  border-radius: 0 0 10px 10px;
  padding-bottom: 14px;
}
.popular-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 6px;
  background: var(--primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 7px;
  white-space: nowrap;
}
.price-tag {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.88rem;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--bg-soft);
  color: var(--text-muted);
}
.badge-advanced {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.badge-premium {
  background: var(--primary);
  color: white;
}
.pricing-table .check {
  color: #16A34A;
  font-size: 1rem;
}
.pricing-table .dash {
  color: #CBD5E1;
  font-size: 1rem;
}
.cta-body td {
  background: var(--bg-soft);
  border-bottom: none;
  padding: 12px 8px;
}
.cta-body td:first-child {
  background: var(--bg-soft);
}
.btn-plan {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s ease;
}
.btn-plan:hover {
  filter: brightness(0.88);
}

/* ---- Common features shared by every plan (shown once, above the cards) ---- */
.common-features-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 22px;
}
.common-features-box h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.common-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px 20px;
}
.common-features-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.common-features-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 700;
}
@media (max-width: 840px) {
  .common-features-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .common-features-list { grid-template-columns: 1fr; }
}

/* ---- Pricing cards (replaces the table on pages using the card layout) ---- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.plan-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card-best {
  border: 2px solid var(--plan-business);
  box-shadow: var(--shadow-md);
}
.best-value-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plan-business);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.plan-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.plan-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.plan-dot-launch { background: var(--plan-launch); }
.plan-dot-starter { background: var(--plan-starter); }
.plan-dot-business { background: var(--plan-business); }
.plan-dot-professional { background: var(--plan-professional); }
.plan-dot-advanced { background: var(--plan-advanced); }
.plan-dot-premium { background: var(--plan-premium); }
.plan-card-head h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}
.plan-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 10px 0 14px;
}
.plan-card-price-custom {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ---- Price / Offer / Renewal block (Price struck-through, Offer highlighted, GST + renewal noted) ---- */
.plan-card-pricing {
  margin: 10px 0 14px;
}
.plan-price-original {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: #F87171;
}
.plan-price-offer {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 2px;
}
.plan-price-gst-inline {
  font-size: 0.68rem;
  font-weight: 700;
  color: #16A34A;
  background: #F0FDF4;
  padding: 2px 7px;
  border-radius: 7px;
  white-space: nowrap;
}
.plan-price-period {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.plan-price-renew {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}
.plan-price-renew .plan-price-gst-inline {
  color: var(--text-muted);
  background: var(--bg-soft);
  font-weight: 600;
}
.btn-plan-card {
  width: 100%;
  border: none;
  border-radius: 7px;
  padding: 11px;
  font-size: 0.86rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: filter 0.2s ease;
  margin-bottom: 10px;
}
.btn-plan-card:hover {
  filter: brightness(0.88);
}
.btn-plan-card-launch { background: var(--plan-launch); }
.btn-plan-card-starter { background: var(--plan-starter); }
.btn-plan-card-business { background: var(--plan-business); }
.btn-plan-card-professional { background: var(--plan-professional); }
.btn-plan-card-advanced { background: var(--plan-advanced); }
.btn-plan-card-premium { background: var(--plan-premium); }
.plan-card-features {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  flex-grow: 1;
}
.plan-card-features li {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.4;
}
.plan-card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 700;
}
.plan-card-everything {
  font-weight: 700;
  color: var(--text);
  padding-left: 0 !important;
  margin-bottom: 10px !important;
}
.plan-card-everything::before {
  content: '' !important;
}

@media (max-width: 840px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card-best {
    order: -1;
  }
}

.faq-section {
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.faq-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-question {
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  transition: background 0.15s ease;
}
.faq-question i {
  color: var(--primary);
  transition: transform 0.2s ease;
}
.faq-question:hover {
  background: var(--bg-soft);
}
.faq-answer {
  padding: 0 16px 16px;
  color: var(--text-muted);
  font-size: 0.87rem;
  display: none;
  line-height: 1.7;
}
.faq-answer ul {
  padding-left: 20px;
  list-style: disc;
  margin: 6px 0;
}
.faq-answer ul li {
  margin-bottom: 2px;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 24px;
}
.map-section {
  margin: 0 0 28px;
}
.map-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.map-embed-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
}
.contact-box {
  background: var(--bg);
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-box:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.contact-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-box h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.contact-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.service-box {
  background: var(--bg);
  padding: 22px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-box:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-light);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.service-box p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 7px 0 16px;
}
.btn-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.83rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s;
}
.btn-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

.form-card {
  background: var(--bg);
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.form-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}
.form-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.form-group {
  margin-bottom: 5px;
}
.form-control {
  width: 100%;
  padding: 10px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
  transition: 0.2s;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.form-control::placeholder {
  color: #94A3B8;
}
.form-control:focus {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.14);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
.btn-submit:hover {
  background: var(--primary-dark);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.06);
}
.mobile-action-bar {
  display: none;
}
@media (max-width: 640px) {
  .whatsapp-float {
    display: none;
  }
  .mobile-action-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 4px;
    border-radius: 10px;
    color: var(--text-muted) !important;
    font-size: 0.66rem;
    font-weight: 600;
    transition: background 0.15s ease;
  }
  .mobile-action-btn i {
    font-size: 1.2rem;
    color: var(--primary);
  }
  .mobile-action-btn:active {
    background: var(--primary-light);
  }
  .site-wrapper {
    padding-bottom: 62px;
  }
}

/* ---- Differentiator section ("We don't just run ads. We build identity.") ---- */
.differentiator-section {
  background: var(--footer-bg);
  color: white;
  padding: 64px 0;
  text-align: center;
  margin-top: 8px;
}
.differentiator-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.differentiator-section h2 span {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.differentiator-section > .container > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin: 0 0 40px;
}
.differentiator-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.differentiator-item {
  margin: 0 24px;
}
.differentiator-item h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.differentiator-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .differentiator-section h2 {
    font-size: 1.6rem;
  }
  .differentiator-grid {
    gap: 28px;
  }
}

footer {
  background: var(--footer-bg);
  color: white;
  padding: 28px 0 6px;
  margin-top: 10px;
  width: 100%;
}
.footer-grid {
  display: grid;
  /* 27.5% / 17.5% / 17.5% / 17.5% / 20.0% column widths. Uses fr units
     (not literal %) so the gaps below are subtracted before the ratio
     is applied — plain percentages here would overflow the container
     by the total gap width. */
  grid-template-columns: 40.0fr 13.5fr 13.5fr 13.5fr 20.5fr;
  gap: 7.5px;
  margin-bottom: 7.5px;
}
.footer-col {
  /* Grid items default to min-width:auto, which lets long unbreakable
     content (the partner badge images, email address, etc.) override
     the fr ratio above. min-width:0 makes the ratio exact. */
  min-width: 0;
}
.footer-col .logo {
  color: white !important;
  font-size: 1.4rem;
}
.footer-col .logo span {
  color: var(--primary);
}
.footer-col h4 {
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer-col p,
.footer-col li {
  color: #CBD5E1;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.footer-col ul li a {
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: white;
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.footer-badges svg {
  height: 55px;
  width: auto;
  border-radius: 5px;
  max-width: 100px;
  display: block;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-social-link svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}
.copyright {
  text-align: center;
  padding-top: 5px;
  margin-top: 5px;
  border-top: 1px solid #1E293B;
  color: #94A3B8;
  font-size: 0.8rem;
}
.copyright a {
  color: #CBD5E1;
}
.copyright a:hover {
  color: white;
}

@media (max-width: 840px) {
  .site-wrapper {
    max-width: 100%;
  }
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
  .service-layout {
    grid-template-columns: 1fr;
  }
  .form-card {
    position: static;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 20px 28px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .services-grid,
  .feature-grid,
  .footer-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  .service-layout {
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Highlights the nav link matching the current page */
.nav-links a.current-page {
  color: var(--primary);
  font-weight: 700;
}

/* ---- Lead inquiry modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.show {
  display: flex;
}
body.modal-open {
  overflow: hidden;
}
.modal-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  max-width: 440px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: 5px;
}
.modal-close:hover {
  color: var(--text);
}
