/* ============================================
  MAIN STYLES — NorthStar
   ============================================ */

/* --- Layout Utilities --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-20) 0;
}

/* 2-column form row — collapses to 1 column on mobile */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 520px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}


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

.section-dark {
  background: var(--text);
  color: var(--text-inverse);
}

.section-primary {
  background: var(--primary);
  color: var(--text-inverse);
}

body.home-prism {
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--primary-light);
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  font-weight: var(--fw-semi);
  font-size: var(--text-base);
  transition: var(--transition);
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.25);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--primary);
  background: var(--primary-light);
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--text-lg);
  min-height: 56px;
}

.btn-sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  min-height: 36px;
}

.btn-icon {
  padding: var(--sp-3);
  border-radius: var(--radius-full);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* --- Cards --- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-body {
  padding: var(--sp-6);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-green {
  background: var(--secondary-light);
  color: var(--secondary-dark);
}

.badge-orange {
  background: #FEF3C7;
  color: #D97706;
}

.badge-popular {
  background: linear-gradient(135deg, var(--accent), #F97316);
  color: #fff;
  font-weight: var(--fw-bold);
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.form-label span {
  color: var(--error);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
  min-height: 48px;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-control.error {
  border-color: var(--error);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-error {
  font-size: var(--text-sm);
  color: var(--error);
  margin-top: var(--sp-1);
  display: none;
}

.form-error.show {
  display: block;
}

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' fill='%2394A3B8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  height: var(--nav-height);
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar .container {
  position: relative;
  height: 100%;
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--text-xl);
  color: var(--primary);
  flex-shrink: 0;
}

.navbar-logo .logo-dot {
  color: var(--secondary);
}

.navbar-logo svg {
  width: 32px;
  height: 32px;
}

.logo-star {
  display: inline-block;
  margin: 0 0.01em;
  font-size: 0.9em;
  line-height: 1;
  color: rgba(218, 218, 215, 0.95);
}

.navbar-logo-img {
  height: 90px;
  /* Increased from 68px */
  width: 90px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 90px;
  /* Increased from 56px */
  width: 90px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

.navbar-dark {
  background: rgba(var(--accent-rgb), 0.96);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
}

.navbar-dark .nav-link,
.navbar-dark .navbar-phone,
.navbar-dark .navbar-logo {
  color: var(--primary);
}

/* For dark navbar links (active on the pages) */
.navbar-dark .nav-link {
  color: #1b2a47;
  /* Slate dark blue default text for better visibility on gold */
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
  color: #ffffff !important;
  /* White color when element is chosen/hovered */
  background-color: var(--primary);
  /* Dark primary background pill for premium contrast */
}

.navbar-dark .nav-link.active::after {
  display: none !important;
  /* Hide old underline to support the new pill background */
}

.navbar-dark .navbar-phone svg {
  color: var(--primary);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
}

.nav-link {
  padding: var(--sp-2) var(--sp-4);
  /* Increased horizontal padding for pill design */
  border-radius: var(--radius);
  font-size: 1.05rem;
  /* Increased size of navbar elements */
  font-weight: var(--fw-bold);
  /* Bolder text for visibility */
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: var(--sp-3);
  right: var(--sp-3);
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.navbar-phone {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--text);
  white-space: nowrap;
}

.navbar-phone svg {
  color: var(--secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: var(--z-fixed);
  padding: var(--sp-4);
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  border-radius: var(--radius);
}

.mobile-menu .nav-link:hover {
  background: var(--primary-light);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, #F0F4F8 0%, #FAF9F6 100%);
  position: relative;
  overflow: hidden;
}

.hero-cover {
  min-height: 72vh;
  background:
    linear-gradient(rgba(27, 42, 71, 0.45), rgba(18, 28, 48, 0.45)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15, 41, 66, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 111, 86, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-cover::before,
.hero-cover::after {
  display: none;
}

.hero-cover .container {
  width: 100%;
}

.hero-center {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-16) 0;
}

.hero-tag-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-cover .hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  max-width: 14ch;
  margin: 0 auto var(--sp-5);
}

.hero-cover .hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin: 0 auto var(--sp-8);
}

.hero-cover .hero-actions,
.hero-cover .service-pills {
  justify-content: center;
}

.service-pills {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: var(--text-sm);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--primary-light);
  color: var(--primary);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-5);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--fw-black);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  color: var(--text);
}

.hero-title .highlight {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.hero-trust-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

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

.hero-cover .hero-visual {
  display: none;
}

.hero-dashboard {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-6);
  width: 100%;
  max-width: 480px;
  position: relative;
}

.hero-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}

.hero-db-title {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
}

.hero-db-badge {
  background: var(--secondary-light);
  color: var(--secondary-dark);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.hero-stat-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  text-align: center;
}

.hero-stat-value {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-progress {
  margin-bottom: var(--sp-4);
}

.hero-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
  font-size: var(--text-sm);
}

.progress-bar {
  height: 8px;
  background: var(--surface);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 1s ease;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* --- Trust Bar --- */
.trust-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: var(--sp-8) 0;
  color: #fff;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.trust-stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--fw-black);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.trust-stat-value span {
  color: var(--accent);
}

.trust-stat-label {
  font-size: var(--text-sm);
  opacity: 0.85;
}

.stats-strip {
  background: var(--surface);
  padding: 0 0 var(--sp-10);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: -42px;
}

.stats-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stats-value {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  line-height: 1;
  font-weight: var(--fw-black);
  color: #1f2937;
  margin-bottom: var(--sp-2);
}

.stats-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.service-card {
  background: var(--bg-white);
  border-radius: 18px;
  padding: var(--sp-6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.featured-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #fff);
  border-color: rgba(199, 150, 205, 0.25);
}

/* Dynamic radial gradient spotlight */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--primary-rgb), 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.service-card:has(.service-icon.green)::after {
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(16, 185, 129, 0.06), transparent 70%);
}

.service-card:has(.service-icon.orange)::after {
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(245, 158, 11, 0.06), transparent 70%);
}

.service-card:hover::after {
  opacity: 1;
}

/* Card Hover States with customized glows */
.service-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 20px 40px -10px rgba(var(--primary-rgb), 0.12), 0 0 0 1px rgba(var(--primary-rgb), 0.05);
}

.service-card:has(.service-icon.green):hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.05);
}

.service-card:has(.service-icon.orange):hover {
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.12), 0 0 0 1px rgba(245, 158, 11, 0.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.service-icon.green {
  background: var(--secondary-light);
  color: var(--secondary);
}

.service-icon.orange {
  background: #FEF3C7;
  color: #D97706;
}

.service-icon.purple {
  background: #F3E8FF;
  color: #7C3AED;
}

.service-icon.red {
  background: #FEF2F2;
  color: #EF4444;
}

/* Icon hover pop and shadow */
.service-card:hover .service-icon {
  transform: scale(1.12) rotate(3deg);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.15);
}

.service-card:has(.service-icon.green):hover .service-icon {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.18);
}

.service-card:has(.service-icon.orange):hover .service-icon {
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.18);
}

.service-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-3);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--sp-5);
}

.service-card .btn {
  margin-top: auto;
}

/* Buttons matching card theme */
.service-card:has(.service-icon.green) .btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
}

.service-card:has(.service-icon.green) .btn-outline:hover {
  background: var(--secondary);
  color: #fff;
}

.service-card:has(.service-icon.orange) .btn-outline {
  border-color: #D97706;
  color: #D97706;
}

.service-card:has(.service-icon.orange) .btn-outline:hover {
  background: #D97706;
  color: #fff;
}

.service-card:hover .btn-outline {
  transform: translateY(-2px);
}

.service-card .btn-outline:hover {
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.18) !important;
}

.service-card:has(.service-icon.green) .btn-outline:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25) !important;
}

.service-card:has(.service-icon.orange) .btn-outline:hover {
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.25) !important;
}

.service-list {
  list-style: none;
  margin: 0 0 var(--sp-5);
  padding: 0;
  display: grid;
  gap: var(--sp-2);
}

.service-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s ease;
}

/* Staggered text shift on hover */
.service-card:hover .service-list li {
  transform: translateX(4px);
  color: var(--text);
}

.service-card:hover .service-list li:nth-child(1) {
  transition-delay: 0.02s;
}

.service-card:hover .service-list li:nth-child(2) {
  transition-delay: 0.04s;
}

.service-card:hover .service-list li:nth-child(3) {
  transition-delay: 0.06s;
}

.service-card:hover .service-list li:nth-child(4) {
  transition-delay: 0.08s;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Bullet color changes based on card theme */
.service-card:hover .service-list li::before {
  transform: scale(1.3);
  background: var(--primary);
}

.service-card:has(.service-icon.green):hover .service-list li::before {
  background: var(--secondary);
}

.service-card:has(.service-icon.orange):hover .service-list li::before {
  background: #D97706;
}

/* --- Coverage / Insurance Content --- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.coverage-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(199, 150, 205, 0.35);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}

.coverage-title {
  font-size: var(--text-lg);
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-3);
  color: #1f2937;
}

.coverage-desc {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  box-shadow: var(--shadow-primary);
}

.step-title {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-2);
}

.step-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  border: 2px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-light) 0%, #fff 40%);
  transform: scale(1.03);
  box-shadow: var(--shadow-primary);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 4px var(--sp-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  white-space: nowrap;
}

.pricing-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}

.pricing-price {
  margin-bottom: var(--sp-6);
}

.pricing-amount {
  font-size: var(--text-5xl);
  font-weight: var(--fw-black);
  color: var(--text);
  line-height: 1;
}

.pricing-amount sup {
  font-size: var(--text-xl);
  vertical-align: super;
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
}

.pricing-features {
  margin-bottom: var(--sp-8);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-3);
}

.pricing-feature svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature.disabled {
  color: var(--text-muted);
}

.pricing-feature.disabled svg {
  color: var(--text-muted);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.toggle-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

input:checked+.toggle-slider {
  background: var(--primary);
}

input:checked+.toggle-slider::before {
  transform: translateX(22px);
}

.pricing-save {
  background: var(--secondary-light);
  color: var(--secondary-dark);
  padding: 2px var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
}

/* --- Testimonials --- */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--sp-4);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: var(--text-3xl);
  color: var(--primary);
  line-height: 0;
  vertical-align: -12px;
  margin-right: var(--sp-1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: var(--text-base);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: var(--fw-semi);
  font-size: var(--text-sm);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.carousel-dots {
  display: flex;
  gap: var(--sp-2);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5);
  cursor: pointer;
  font-weight: var(--fw-medium);
  font-size: var(--text-sm);
  transition: var(--transition);
  gap: var(--sp-4);
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question.open {
  background: var(--primary-light);
  color: var(--primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--sp-5) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: #fff;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}

.cta-banner-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--sp-8);
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--sp-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--sp-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-link:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer-badges {
  display: flex;
  gap: var(--sp-3);
  justify-content: flex-end;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255, 255, 255, 0.06);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
}

.security-badge svg {
  color: var(--secondary);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-fixed);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.whatsapp-float .wa-label {}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
}

.contact-info {}

.contact-info-title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}

.contact-info-desc {
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
  line-height: var(--lh-relaxed);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon.blue {
  background: var(--primary-light);
  color: var(--primary);
}

.contact-method-icon.green {
  background: var(--secondary-light);
  color: var(--secondary);
}

.contact-method-icon.orange {
  background: #FEF3C7;
  color: #D97706;
}

.contact-method-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-method-value {
  font-size: var(--text-base);
  font-weight: var(--fw-semi);
}

.contact-method-value a {
  color: var(--text);
  transition: var(--transition);
}

.contact-method-value a:hover {
  color: var(--primary);
}

.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.success-message {
  background: var(--secondary-light);
  color: var(--secondary-dark);
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  display: none;
  margin-bottom: var(--sp-4);
  align-items: center;
  gap: var(--sp-3);
}

.success-message.show {
  display: flex;
}

.error-message {
  background: #FEF2F2;
  color: var(--error);
  padding: var(--sp-4);
  border-radius: var(--radius-md);
  display: none;
  margin-bottom: var(--sp-4);
  align-items: center;
  gap: var(--sp-3);
}

.error-message.show {
  display: flex;
}

/* --- Notifications / Toasts --- */
.toast-container {
  position: fixed;
  top: calc(var(--nav-height) + var(--sp-4));
  right: var(--sp-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  pointer-events: none;
}

.toast {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 300px;
  pointer-events: all;
  animation: slideIn 0.3s ease;
}

.toast.success {
  border-color: var(--success);
}

.toast.error {
  border-color: var(--error);
}

.toast.warning {
  border-color: var(--warning);
}

.toast-icon {
  flex-shrink: 0;
}

.toast-icon.success {
  color: var(--success);
}

.toast-icon.error {
  color: var(--error);
}

.toast-icon.warning {
  color: var(--warning);
}

.toast-icon.info {
  color: var(--info);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semi);
}

.toast-msg {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-top: 2px;
}

.toast-close {
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.toast-close:hover {
  color: var(--text);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--surface);
  color: var(--text);
}

@keyframes modalIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

/* ── Tablet / Small Desktop (≤ 1023px) ─────── */
@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-subtitle {
    max-width: 100%;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card.popular {
    transform: none;
  }

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

  .steps-grid::before {
    display: none;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  /* Inline-style grids — about & why-choose-us */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── Mobile (≤ 767px) ─────────────────────── */
@media (max-width: 767px) {
  :root {
    --nav-height: 64px;
    --sp-20: 3rem;
    /* reduce section vertical padding */
    --sp-16: 2.5rem;
    --sp-12: 2rem;
  }

  /* --- Navbar --- */
  .hamburger {
    display: flex;
  }

  .navbar-nav,
  .navbar-phone {
    display: none !important;
  }

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

  .navbar-logo-img {
    height: 46px;
    width: 46px;
  }

  /* --- Mobile Menu --- */
  .mobile-menu {
    padding: var(--sp-3) var(--sp-4) var(--sp-4);
  }

  .mobile-menu .nav-link {
    padding: var(--sp-4) var(--sp-3);
    font-size: var(--text-base);
    border-radius: var(--radius);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .mobile-menu-actions {
    gap: var(--sp-3);
    margin-top: var(--sp-4);
  }

  .mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* --- Layout --- */
  .container {
    padding: 0 var(--sp-4);
  }

  .section {
    padding: var(--sp-12) 0;
  }

  .section-header {
    margin-bottom: var(--sp-8);
  }

  .section-subtitle {
    font-size: var(--text-base);
  }

  /* --- Hero --- */
  .hero {
    min-height: auto;
    padding-top: var(--nav-height);
  }

  .hero-cover {
    min-height: 55vh;
  }

  .hero-center {
    padding: var(--sp-10) 0 var(--sp-8);
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    margin-bottom: var(--sp-4);
  }

  .hero-cover .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.6rem);
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--sp-6);
    max-width: 100%;
  }

  .hero-cover .hero-subtitle {
    font-size: var(--text-base);
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    padding-top: var(--sp-5);
  }

  .service-pills {
    justify-content: center;
  }

  /* --- Trust Bar --- */
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }

  .trust-stat-value {
    font-size: var(--text-2xl);
  }

  /* --- Services --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .service-card {
    padding: var(--sp-5);
  }

  /* --- Coverage Grid --- */
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  /* --- Steps --- */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .steps-grid::before {
    display: none;
  }

  /* --- Stats --- */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
    margin-top: -16px;
  }

  .stats-card {
    padding: var(--sp-4);
  }

  .stats-value {
    font-size: var(--text-2xl);
  }

  /* --- Pricing --- */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card {
    padding: var(--sp-6);
  }

  /* --- Testimonials --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .testimonial-slide {
    padding: 0 var(--sp-2);
  }

  /* --- FAQ --- */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .faq-question {
    font-size: var(--text-sm);
    padding: var(--sp-4);
    min-height: 52px;
  }

  /* --- CTA Banner --- */
  .cta-banner {
    padding: var(--sp-10) var(--sp-5);
    border-radius: var(--radius-xl);
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .contact-form-card {
    padding: var(--sp-5);
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-5) 0;
  }

  .footer-badges {
    flex-wrap: wrap;
    gap: var(--sp-2);
  }

  /* --- Inline-style grids (About, Why Choose Us) --- */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: var(--sp-4) !important;
  }

  /* About section inline padding */
  [style*="padding: var(--sp-12)"],
  [style*="padding: var(--sp-10)"] {
    padding: var(--sp-6) !important;
  }

  [style*="padding: var(--sp-12) var(--sp-16)"],
  [style*="padding:var(--sp-12) var(--sp-16)"] {
    padding: var(--sp-8) var(--sp-5) !important;
  }

  /* --- WhatsApp Float --- */
  .whatsapp-float .wa-label {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    bottom: 20px;
    right: 16px;
    border-radius: 50%;
  }

  /* --- Toasts --- */
  .toast-container {
    left: var(--sp-4);
    right: var(--sp-4);
  }

  .toast {
    min-width: unset;
    width: 100%;
  }

  /* --- Modal --- */
  .modal {
    padding: var(--sp-5);
    border-radius: var(--radius-lg);
    max-height: 90vh;
    overflow-y: auto;
  }

  /* --- Buttons — comfortable tap targets --- */
  .btn {
    min-height: 48px;
    padding: var(--sp-3) var(--sp-5);
  }

  .btn-sm {
    min-height: 44px;
    padding: var(--sp-2) var(--sp-4);
  }

  .btn-lg {
    min-height: 54px;
    padding: var(--sp-4) var(--sp-6);
  }

  /* --- KPI grid --- */
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* --- Misc auth --- */
  .auth-right {
    padding: var(--sp-4);
  }

  .otp-inputs {
    gap: var(--sp-2);
  }

  .otp-input {
    width: 44px;
    height: 48px;
  }
}

/* ── Small Mobile (≤ 480px) ──────────────────── */
@media (max-width: 480px) {
  :root {
    --nav-height: 60px;
  }

  .container {
    padding: 0 var(--sp-3);
  }

  /* --- Hero --- */
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-cover .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-cover {
    min-height: 50vh;
  }

  .hero-center {
    padding: var(--sp-8) 0 var(--sp-6);
  }

  /* --- Trust / Hero trust --- */
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust-item {
    font-size: var(--text-xs);
  }

  /* --- Stats --- */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-2);
  }

  /* --- KPI --- */
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  /* --- Trust bar --- */
  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
  }

  .trust-stat-value {
    font-size: var(--text-xl);
  }

  .trust-stat-label {
    font-size: var(--text-xs);
  }

  /* --- Section headings --- */
  .section-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  /* --- Pricing amount --- */
  .pricing-amount {
    font-size: var(--text-4xl);
  }

  /* --- Testimonial --- */
  .testimonial-card {
    padding: var(--sp-4);
  }

  /* --- CTA Banner --- */
  .cta-banner {
    padding: var(--sp-8) var(--sp-4);
  }

  /* --- Footer --- */
  .footer {
    padding-top: var(--sp-12);
  }

  .security-badge {
    font-size: 0.65rem;
  }

  /* --- WhatsApp button --- */
  .whatsapp-float {
    bottom: 16px;
    right: 12px;
  }

  /* --- Service pills --- */
  .service-pill {
    font-size: var(--text-xs);
    padding: var(--sp-1) var(--sp-3);
  }

  /* --- Navbar logo text --- */
  .navbar-logo span {
    font-size: var(--text-lg);
  }

  .navbar-logo-img {
    height: 58px;
    /* Increased from 48px */
    width: 58px;
  }
}

/* ── Extra Small Mobile (≤ 360px) ─────────────── */
@media (max-width: 360px) {
  :root {
    --nav-height: 66px;
    /* Increased from 58px */
  }

  .container {
    padding: 0 var(--sp-3);
  }

  .hero-title,
  .hero-cover .hero-title {
    font-size: 1.4rem;
  }

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

  .btn {
    font-size: var(--text-sm);
    padding: var(--sp-3) var(--sp-4);
  }

  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    gap: var(--sp-6);
  }

  .cta-banner {
    padding: var(--sp-6) var(--sp-3);
  }

  .pricing-amount {
    font-size: var(--text-3xl);
  }

  .testimonial-card {
    padding: var(--sp-3);
  }

  /* Inline-style paddings on small screens */
  [style*="padding: var(--sp-12)"],
  [style*="padding: var(--sp-10)"],
  [style*="padding: var(--sp-8)"] {
    padding: var(--sp-4) !important;
  }
}

/* ── Touch device enhancements ─────────────── */
@media (hover: none) and (pointer: coarse) {

  /* Remove hover transforms on touch devices to avoid stuck states */
  .card:hover,
  .service-card:hover,
  .testimonial-card:hover,
  .pricing-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }

  .btn:hover {
    transform: none;
  }

  /* Larger tap targets */
  .nav-link,
  .footer-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .faq-question {
    min-height: 52px;
  }

  .carousel-btn {
    width: 52px;
    height: 52px;
  }

  .carousel-dot {
    width: 12px;
    height: 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* ─────────────────────────────────────────────
   FEEDBACK MODAL & INTERACTIVE STAR RATING
   ───────────────────────────────────────────── */

/* Modal Overlay with Backdrop Blur */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.65);
  /* Slate-900 with opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  padding: var(--sp-4);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Content Box */
.modal-content {
  background: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-8) var(--sp-10);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25),
    0 0 0 1px rgba(15, 23, 42, 0.05);
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

/* Modal Header styling */
.modal-title {
  font-family: var(--font-poppins), sans-serif;
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.modal-subtitle {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-6);
  line-height: var(--lh-relaxed);
}

/* Close Button with premium styling */
.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  padding-bottom: 2px;
}

.modal-close-btn:hover {
  background: var(--border);
  color: var(--text);
  transform: rotate(90deg);
}

/* Interactive Star Rating Selector */
.star-rating-selector {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
}

.star-btn {
  font-size: 2.2rem;
  background: none !important;
  border: none !important;
  cursor: pointer;
  color: #cbd5e1;
  /* Visible light grey initially (slate-300) */
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.15s ease;
  padding: 0;
  outline: none;
}

.star-btn:hover {
  transform: scale(1.2);
}

/* Color definitions for selected/hovered state */
.star-btn.hover,
.star-btn.active {
  color: #fbbf24;
  /* Golden yellow */
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

/* Button Loading Spinner */
.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: btn-spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}