/* ============================================================
   NEW HOPE TECHNOLOGY — Public Website Stylesheet
   Mobile-first, enterprise-grade, premium responsive design
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --brand-primary:      #4f46e5;
  --brand-primary-dark: #3730a3;
  --brand-secondary:    #7c3aed;
  --brand-accent:       #06b6d4;
  --brand-dark:         #1e1b4b;
  --brand-gradient:     linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --text-dark:          #1f2937;
  --text-muted:         #6b7280;
  --bg-light:           #f8f9fb;
  --border-color:       #e5e7eb;
  --shadow-sm:          0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:          0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:          0 20px 60px rgba(0,0,0,0.13);
  --radius:             12px;
  --radius-lg:          20px;
  --transition:         0.3s ease;
  --navbar-h:           72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; }

p, li, td, th, blockquote,
.card-text, .lead, .section-subtitle,
.hero-subtitle, .process-desc, .faq-answer,
.testimonial-text, .footer-desc, .page-hero-subtitle,
.service-desc, .about-text, .why-desc, .contact-text,
.pricing-desc, .proof-text, .stat-lbl {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-navbar {
  transition: all var(--transition);
  padding: 0;
  height: var(--navbar-h);
  z-index: 1050;
}

.site-navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Transparent state text */
.site-navbar:not(.scrolled) .nav-link-custom,
.site-navbar:not(.scrolled) .navbar-toggler-icon-wrap {
  color: rgba(255,255,255,0.9) !important;
}
.site-navbar:not(.scrolled) .navbar-toggler-icon-wrap i {
  color: rgba(255,255,255,0.9);
}

/* Scrolled state text */
.site-navbar.scrolled .nav-link-custom { color: var(--text-dark) !important; }
.site-navbar.scrolled .navbar-toggler-icon-wrap i { color: var(--text-dark); }

/* Brand */
.navbar-brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.site-navbar:not(.scrolled) .navbar-brand-text {
  background: linear-gradient(135deg, #c7d2fe, #e9d5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav-link-custom {
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.site-navbar.scrolled .nav-link-custom:hover,
.site-navbar.scrolled .nav-link-custom.active {
  color: var(--brand-primary) !important;
  background: rgba(79,70,229,0.07);
}
.site-navbar:not(.scrolled) .nav-link-custom:hover,
.site-navbar:not(.scrolled) .nav-link-custom.active {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
}

/* CTA button */
.btn-get-started {
  background: #fff;
  color: var(--brand-primary) !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  text-decoration: none;
  white-space: nowrap;
}
.site-navbar.scrolled .btn-get-started {
  background: var(--brand-gradient);
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}
.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79,70,229,0.35);
}

/* ── Hamburger toggle button ─────────────────────────────── */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 6px 8px;
  border-radius: 8px;
  background: transparent;
  transition: background var(--transition);
  flex-shrink: 0;
}
.site-navbar.scrolled .navbar-toggler:hover { background: rgba(79,70,229,0.07); }
.site-navbar:not(.scrolled) .navbar-toggler:hover { background: rgba(255,255,255,0.1); }

.navbar-toggler-icon-wrap { display: flex; align-items: center; justify-content: center; }
.navbar-toggler-icon-wrap i { font-size: 1.55rem; transition: all 0.2s ease; }

/* ── Mobile dropdown menu ────────────────────────────────── */
@media (max-width: 991.98px) {

  .site-navbar { height: auto; min-height: var(--navbar-h); }
  .site-navbar .container { flex-wrap: wrap; padding-top: 0.875rem; padding-bottom: 0.875rem; }

  #navMenu {
    width: 100%;
    border-radius: 16px;
    margin-top: 0.5rem;
    overflow: hidden;
  }

  /* Dark overlay menu (on hero / transparent state) */
  .site-navbar:not(.scrolled) #navMenu.show,
  .site-navbar:not(.scrolled) #navMenu.collapsing {
    background: linear-gradient(180deg, rgba(15,12,50,0.98) 0%, rgba(20,17,70,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    padding: 0.75rem;
  }

  /* White menu (on scrolled state) */
  .site-navbar.scrolled #navMenu.show,
  .site-navbar.scrolled #navMenu.collapsing {
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 0.75rem;
  }

  /* Nav items in mobile */
  #navMenu .navbar-nav { gap: 0 !important; padding: 0 !important; }

  #navMenu .nav-item { width: 100%; }

  #navMenu .nav-link-custom {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem !important;
    border-radius: 10px;
    font-size: 0.925rem;
    margin-bottom: 2px;
  }
  .site-navbar:not(.scrolled) #navMenu .nav-link-custom {
    color: rgba(255,255,255,0.88) !important;
  }
  .site-navbar:not(.scrolled) #navMenu .nav-link-custom.active,
  .site-navbar:not(.scrolled) #navMenu .nav-link-custom:hover {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
  }
  .site-navbar.scrolled #navMenu .nav-link-custom { color: var(--text-dark) !important; }
  .site-navbar.scrolled #navMenu .nav-link-custom.active,
  .site-navbar.scrolled #navMenu .nav-link-custom:hover {
    background: rgba(79,70,229,0.07);
    color: var(--brand-primary) !important;
  }

  /* Bottom action row in mobile menu */
  #navMenu .d-flex.align-items-center {
    flex-direction: column !important;
    width: 100%;
    gap: 0.5rem !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.5rem;
    padding-top: 0.75rem !important;
  }
  .site-navbar.scrolled #navMenu .d-flex.align-items-center {
    border-top-color: var(--border-color);
  }

  #navMenu .d-flex .nav-link-custom {
    width: 100%;
    padding: 0.75rem 1rem !important;
    text-align: center;
    border-radius: 10px;
  }

  #navMenu .btn-get-started {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: block;
  }
  .site-navbar:not(.scrolled) #navMenu .btn-get-started {
    background: var(--brand-gradient);
    color: #fff !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(155deg, #07051a 0%, #110e42 30%, #1e1870 60%, #150f45 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-glow-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(99,82,255,0.28) 0%, transparent 65%);
  top: -180px; right: -100px;
  filter: blur(80px);
}
.hero-glow-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 65%);
  bottom: -80px; left: -60px;
  filter: blur(70px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(52,211,153,0.7);
}

.hero-highlight {
  display: inline;
  background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--brand-primary) !important;
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  font-size: 0.925rem;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  text-decoration: none;
  white-space: nowrap;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  font-size: 0.925rem;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Hero proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
}
.proof-avatars { display: flex; }
.proof-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
  border: 2.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; color: #4338ca;
  margin-left: -9px;
}
.proof-av:first-child { margin-left: 0; }
.proof-details { display: flex; flex-direction: column; gap: 0.1rem; }
.proof-stars i { color: #fbbf24; font-size: 0.78rem; }
.proof-stars strong { color: #fbbf24; font-size: 0.8rem; margin-left: 3px; }
.proof-text { font-size: 0.78rem; color: rgba(255,255,255,0.58); margin: 0; }

/* Hero dashboard mockup */
.hero-mockup {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.mockup-topbar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mockup-dots { display: flex; gap: 7px; align-items: center; }
.dot-red       { width:11px;height:11px;border-radius:50%;background:#ff5f57; }
.dot-yellow    { width:11px;height:11px;border-radius:50%;background:#febc2e; }
.dot-green-dot { width:11px;height:11px;border-radius:50%;background:#28c840; }
.mockup-url {
  flex: 1; text-align: center; font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.06);
  padding: 0.22rem 0.875rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.07);
  max-width: 190px; margin: 0 auto;
}
.mockup-live {
  font-size: 0.7rem; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.mockup-body { padding: 1.25rem; color: #fff; }

.mkp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.25rem;
  height: 100%;
}
.mkp-revenue {
  background: linear-gradient(135deg, rgba(79,70,229,0.5) 0%, rgba(124,58,237,0.4) 100%);
  border-color: rgba(255,255,255,0.18);
  margin-bottom: 0.875rem;
}
.mkp-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.48); margin-bottom: 0.3rem; }
.mkp-value { font-size: 1.9rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.mkp-trend { font-size: 0.72rem; margin-top: 0.35rem; }
.mkp-trend.up { color: #34d399; }
.mkp-icon-box {
  width: 44px; height: 44px;
  background: rgba(52,211,153,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #34d399; flex-shrink: 0;
}
.mkp-bar-track { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.mkp-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #34d399, #10b981); }
.mkp-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; flex-shrink: 0; }
.mkp-small { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.mkp-stars i { color: #fbbf24; font-size: 0.7rem; }
.mkp-badges {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 0.75rem 1rem; margin-top: 0.875rem;
}
.mkp-badges span { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.76rem; color: rgba(255,255,255,0.7); }
.mkp-badges i { color: #34d399; }

/* Hero trust strip */
.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 0.75rem;
}
.trust-label { font-size: 0.68rem; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
.trust-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.trust-chips span {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.76rem; color: rgba(255,255,255,0.42);
  padding: 0.27rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  transition: all var(--transition);
}
.trust-chips span:hover { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.09); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

.stat-card {
  text-align: center;
  padding: 2.75rem 1.25rem;
  border-right: 1px solid var(--border-color);
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(79,70,229,0.025); }
.stat-card-last  { border-right: none; }

.stat-icon-wrap { font-size: 1.5rem; color: var(--brand-primary); margin-bottom: 0.65rem; opacity: 0.7; }
.stat-num {
  font-size: 2.6rem; font-weight: 800; color: var(--text-dark);
  line-height: 1; margin-bottom: 0.35rem; letter-spacing: -0.03em;
}
.stat-slash { font-size: 1.6rem; color: var(--brand-primary); }
.stat-lbl { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-padding    { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

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

.section-badge {
  display: inline-block;
  background: rgba(79,70,229,0.1);
  color: var(--brand-primary);
  padding: 0.32rem 0.95rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: rgba(79,70,229,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; font-size: 1.4rem;
  color: var(--brand-primary); transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--brand-gradient); color: #fff; transform: rotate(-5deg) scale(1.05); }

.service-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.625rem; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }

.service-link {
  color: var(--brand-primary); font-weight: 600; font-size: 0.85rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; color: var(--brand-primary-dark); }

/* Service colour variants */
.si-indigo  { background: rgba(79,70,229,0.09)  !important; color: #4f46e5 !important; }
.si-cyan    { background: rgba(6,182,212,0.1)   !important; color: #0891b2 !important; }
.si-emerald { background: rgba(16,185,129,0.1)  !important; color: #059669 !important; }
.si-amber   { background: rgba(245,158,11,0.1)  !important; color: #d97706 !important; }

.service-card:hover .si-indigo  { background: #4f46e5 !important; color: #fff !important; }
.service-card:hover .si-cyan    { background: #0891b2 !important; color: #fff !important; }
.service-card:hover .si-emerald { background: #059669 !important; color: #fff !important; }
.service-card:hover .si-amber   { background: #d97706 !important; color: #fff !important; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works-section { background: var(--bg-light); }

.process-connector {
  position: absolute;
  top: 68px;
  left: calc(16.67% + 2rem);
  right: calc(16.67% + 2rem);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 30%, var(--brand-secondary) 70%, transparent 100%);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.process-card {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  transition: all var(--transition);
}
.process-card:hover,
.process-card-featured {
  border-color: var(--brand-primary);
  box-shadow: 0 20px 50px rgba(79,70,229,0.12);
  transform: translateY(-6px);
}
.process-step-num {
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 3.75rem; font-weight: 900; line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.12; pointer-events: none; letter-spacing: -0.04em;
}
.process-icon-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(79,70,229,0.08);
  border: 2px solid rgba(79,70,229,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--brand-primary);
  margin: 0 auto 1.25rem;
  transition: all var(--transition);
}
.process-card:hover .process-icon-ring,
.process-card-featured .process-icon-ring {
  background: var(--brand-gradient); border-color: transparent; color: #fff;
  box-shadow: 0 10px 30px rgba(79,70,229,0.35); transform: scale(1.05);
}
.process-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.625rem; }
.process-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.78; margin: 0; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.2rem;
  height: 100%;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 8px 30px rgba(79,70,229,0.1);
  transform: translateY(-3px);
}
.why-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; transition: all var(--transition);
}
.why-ic-indigo { background: rgba(79,70,229,0.09); color: #4f46e5; }
.why-ic-emerald{ background: rgba(16,185,129,0.1); color: #059669; }
.why-ic-amber  { background: rgba(245,158,11,0.1); color: #d97706; }
.why-ic-red    { background: rgba(239,68,68,0.1);  color: #dc2626; }
.why-ic-violet { background: rgba(139,92,246,0.1); color: #7c3aed; }
.why-card:hover .why-icon-wrap { background: var(--brand-gradient); color: #fff; box-shadow: 0 4px 14px rgba(79,70,229,0.3); }
.why-title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.why-desc { font-size: 0.81rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-section { background: var(--bg-light); }

.pricing-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.625rem;
  transition: all var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card.popular {
  border-color: var(--brand-primary);
  box-shadow: 0 12px 40px rgba(79,70,229,0.15);
  transform: translateY(-6px);
}
.pricing-card:hover { border-color: var(--brand-primary); box-shadow: 0 20px 60px rgba(79,70,229,0.15); }

.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-gradient); color: #fff;
  padding: 0.28rem 1.2rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; white-space: nowrap;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.pricing-name { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.35rem; }
.pricing-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.5; }

.pricing-price {
  margin: 1.25rem 0;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.pricing-currency { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); vertical-align: top; margin-top: 0.3rem; display: inline-block; }
.pricing-amount { font-size: 2rem; font-weight: 800; color: var(--brand-primary); line-height: 1; letter-spacing: -0.02em; }
.pricing-period { font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 0.35rem; }

.pricing-features { list-style: none; padding: 0; margin: 1.1rem 0 1.75rem; flex: 1; }
.pricing-features li {
  padding: 0.45rem 0; font-size: 0.86rem; color: var(--text-dark);
  display: flex; align-items: flex-start; gap: 0.55rem;
  border-bottom: 1px solid var(--border-color);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: #10b981; font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.not-included i { color: #d1d5db; }
.pricing-features li.not-included span { color: var(--text-muted); }

.btn-pricing {
  display: block; width: 100%; padding: 0.8rem;
  border-radius: 50px; font-weight: 700; font-size: 0.86rem;
  text-align: center; text-decoration: none; transition: all var(--transition);
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary); background: transparent;
}
.btn-pricing:hover {
  background: var(--brand-gradient); border-color: transparent; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79,70,229,0.3);
}
.pricing-card.popular .btn-pricing {
  background: var(--brand-gradient); border-color: transparent; color: #fff;
  box-shadow: 0 8px 25px rgba(79,70,229,0.3);
}
.pricing-card.popular .btn-pricing:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(79,70,229,0.4); }

/* Package tabs */
.package-tabs-wrapper { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.package-tab {
  padding: 0.6rem 1.75rem; border-radius: 50px;
  border: 2px solid var(--brand-primary); color: var(--brand-primary);
  background: transparent; font-weight: 600; font-size: 0.875rem;
  cursor: pointer; transition: all var(--transition);
}
.package-tab.active,
.package-tab:hover {
  background: var(--brand-gradient); border-color: transparent; color: #fff;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: #fff; }

.testimonial-card {
  background: #fff; border: 1.5px solid var(--border-color);
  border-radius: var(--radius); padding: 1.75rem;
  height: 100%; position: relative; transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); }
.testimonial-quote-mark {
  font-size: 4rem; font-family: Georgia, 'Times New Roman', serif; line-height: 1;
  color: var(--brand-primary); opacity: 0.12; display: block;
  margin-bottom: -1.35rem; font-weight: 900;
}
.testimonial-featured {
  border-color: var(--brand-primary); box-shadow: 0 12px 40px rgba(79,70,229,0.12);
  transform: translateY(-6px);
}
.testimonial-featured .testimonial-quote-mark { opacity: 0.2; }
.testimonial-stars { color: #f59e0b; font-size: 0.82rem; margin-bottom: 0.875rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 0.875rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.78rem; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-strip { background: var(--bg-light); padding: 3rem 0; }
.partner-logo-card {
  background: #fff; border: 1.5px solid var(--border-color);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
  text-align: center; font-weight: 700; color: var(--text-muted);
  font-size: 0.95rem; transition: all var(--transition);
  min-height: 68px; display: flex; align-items: center; justify-content: center;
}
.partner-logo-card:hover { box-shadow: var(--shadow-md); color: var(--brand-primary); border-color: var(--brand-primary); transform: translateY(-3px); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--brand-gradient);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section-v2 { position: relative; }
.cta-bg-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none; z-index: 0;
}
.cta-glow-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  top: -200px; right: -100px; filter: blur(60px);
}
.cta-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 65%);
  bottom: -100px; left: -50px; filter: blur(60px);
}
.cta-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; color: #fff;
  margin-bottom: 0.875rem; letter-spacing: -0.02em;
}
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.cta-trust-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
.cta-trust-row span { display: flex; align-items: center; gap: 0.4rem; }
.cta-trust-row i { color: rgba(52,211,153,0.8); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--brand-gradient);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 40h40v40H40zm-40 0h40v40H0zm0-40h40v40H0zm40 0h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-title { font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 800; color: #fff; margin-bottom: 0.875rem; letter-spacing: -0.02em; }
.page-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.82); max-width: 560px; line-height: 1.75; }

.breadcrumb-web .breadcrumb-item,
.breadcrumb-web .breadcrumb-item a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; }
.breadcrumb-web .breadcrumb-item.active { color: #fff; }
.breadcrumb-web .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.value-card {
  background: #fff; border: 1.5px solid var(--border-color);
  border-radius: var(--radius); padding: 1.75rem 1.25rem;
  text-align: center; transition: all var(--transition); height: 100%;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--brand-primary); }
.value-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(79,70,229,0.09);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; font-size: 1.65rem; color: var(--brand-primary); transition: all var(--transition);
}
.value-card:hover .value-icon { background: var(--brand-gradient); color: #fff; }
.team-card { text-align: center; padding: 1.25rem; }
.team-avatar {
  width: 82px; height: 82px; border-radius: 50%;
  background: var(--brand-gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.875rem; font-size: 1.65rem; color: #fff; font-weight: 700;
  box-shadow: 0 8px 25px rgba(79,70,229,0.3);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-card {
  background: #fff; border: 1.5px solid var(--border-color);
  border-radius: var(--radius); padding: 1.75rem;
  height: 100%; transition: all var(--transition);
}
.service-detail-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); }
.process-step { text-align: center; padding: 1.25rem 0.875rem; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand-gradient); color: #fff;
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.875rem;
  box-shadow: 0 6px 20px rgba(79,70,229,0.3);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--brand-dark); border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem; color: rgba(255,255,255,0.8); height: 100%;
}
.contact-info-card h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: #a5b4fc; flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: #fff; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.15rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail-text span { font-size: 0.875rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.contact-form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2.25rem; box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-color);
}
.form-label-custom { font-size: 0.83rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.35rem; display: block; }
.form-control-custom,
.form-select-custom {
  border: 1.5px solid var(--border-color) !important;
  border-radius: 8px !important;
  padding: 0.72rem 1rem !important;
  font-size: 0.875rem !important;
  transition: all var(--transition) !important;
  color: var(--text-dark) !important;
  background-color: #fff !important;
}
.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1) !important;
}
.btn-submit {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--brand-gradient); color: #fff; font-weight: 700;
  padding: 0.85rem 2.25rem; border-radius: 50px; border: none;
  font-size: 0.925rem; cursor: pointer; transition: all var(--transition);
  width: 100%; justify-content: center;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(79,70,229,0.35); }
.btn-submit:disabled { opacity: 0.7; transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--brand-dark); color: rgba(255,255,255,0.65); padding: 4.5rem 0 0; }
.footer-brand { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.875rem; display: flex; align-items: center; gap: 0.55rem; }
.footer-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.52); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  text-decoration: none; transition: all var(--transition);
}
.social-btn:hover { background: var(--brand-primary); color: #fff; transform: translateY(-3px); }
.footer-heading { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.33); margin-bottom: 1.1rem; }
.footer-link { display: block; color: rgba(255,255,255,0.58); text-decoration: none; font-size: 0.85rem; padding: 0.28rem 0; transition: all var(--transition); }
.footer-link:hover { color: #fff; padding-left: 0.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.875rem; font-size: 0.85rem; color: rgba(255,255,255,0.58); }
.footer-contact-item i { color: #818cf8; font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3.5rem; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-divider p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.36); }

/* ============================================================
   UTILITY BUTTON
   ============================================================ */
.btn-brand-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand-gradient); color: #fff !important;
  border: none; border-radius: 50px;
  padding: 0.85rem 2.1rem; font-weight: 700; font-size: 0.925rem;
  text-decoration: none; transition: all var(--transition);
}
.btn-brand-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79,70,229,0.35);
  color: #fff !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.22s; }
.animate-delay-3 { animation-delay: 0.34s; }
.animate-delay-4 { animation-delay: 0.46s; }
.float-anim      { animation: floatY 3.5s ease-in-out infinite; }

.text-brand         { color: var(--brand-primary) !important; }
.bg-gradient-brand  { background: var(--brand-gradient) !important; }

/* Hero row sizing */
.hero-row {
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-on-scroll.revealed { opacity: 1 !important; transform: translateY(0) !important; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991.98px) {

  /* Hero */
  .hero-section { min-height: auto; padding: 2rem 0 0; }
  .hero-visual   { display: none !important; }

  /* Pricing */
  .pricing-card.popular   { transform: none; }
  .testimonial-featured   { transform: none; }

  /* Process connector */
  .process-connector { display: none !important; }

  /* Stats */
  .stat-card { border-right: none; border-bottom: 1px solid var(--border-color); }
  .stat-card-last { border-bottom: none; }

  /* Package tabs */
  .package-tab { padding: 0.5rem 1.25rem; font-size: 0.83rem; }

  /* Section padding */
  .section-padding    { padding: 4rem 0; }
  .section-padding-sm { padding: 2.5rem 0; }
  .section-header     { margin-bottom: 2.75rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767.98px) {

  /* Section spacing */
  .section-padding    { padding: 3rem 0; }
  .section-padding-sm { padding: 2rem 0; }
  .section-header     { margin-bottom: 2rem; }

  /* Hero */
  .hero-section       { padding: 1rem 0 0; }
  .hero-row           { min-height: 0 !important; padding-top: 5.5rem !important; padding-bottom: 2rem !important; }

  .hero-badge         { font-size: 0.73rem; padding: 0.35rem 0.85rem; margin-bottom: 1.1rem; }
  .hero-subtitle      { font-size: 0.925rem; line-height: 1.7; margin-bottom: 1.5rem; }

  /* Trust strip stacks */
  .hero-trust-strip   { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding-bottom: 2rem; }
  .trust-chips        { gap: 0.4rem; }

  /* Stats: 2×2 grid */
  .stats-section .row { display: grid !important; grid-template-columns: 1fr 1fr; }
  .stat-card {
    padding: 1.75rem 0.875rem;
    border-right: 1px solid var(--border-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
  }
  /* Remove right border on even, bottom border on last row */
  .stat-card:nth-child(2n)   { border-right: none !important; }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4)    { border-bottom: none !important; }
  .stat-card-last            { border-right: none !important; border-bottom: none !important; }
  .stat-num                  { font-size: 2rem; }
  .stat-icon-wrap            { font-size: 1.3rem; margin-bottom: 0.5rem; }

  /* Process cards: stacked, arrow between them */
  .process-card       { padding: 1.75rem 1.25rem; }
  .process-icon-ring  { width: 62px; height: 62px; font-size: 1.5rem; }

  /* Why choose us full width cards */
  .why-card           { padding: 1rem; }
  .why-icon-wrap      { width: 40px; height: 40px; font-size: 1.05rem; }

  /* Pricing: remove popular lift on mobile */
  .pricing-card.popular { transform: none; }

  /* Testimonial: remove featured lift */
  .testimonial-featured { transform: none; }

  /* CTA section */
  .cta-section        { padding: 3.5rem 0; }
  .cta-trust-row      { gap: 1rem; font-size: 0.76rem; }
  .cta-subtitle       { font-size: 0.925rem; }

  /* Page hero inner pages */
  .page-hero          { padding: 6.5rem 0 3rem; }

  /* Contact form card */
  .contact-form-card  { padding: 1.5rem; }
  .contact-info-card  { padding: 1.75rem 1.25rem; margin-bottom: 0; }

  /* Footer */
  .site-footer        { padding-top: 3rem; }
  .footer-divider     { flex-direction: column; text-align: center; margin-top: 2.5rem; }
  .footer-divider p   { font-size: 0.76rem; }
  .footer-social      { justify-content: flex-start; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONES (≤ 575px)
   ============================================================ */
@media (max-width: 575.98px) {

  /* Hero */
  .hero-row           { padding-top: 5rem !important; padding-bottom: 1.5rem !important; }
  .hero-title         { font-size: 1.85rem; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 1rem; }
  .hero-subtitle      { font-size: 0.9rem; margin-bottom: 1.25rem; }

  /* CTA buttons: full width stack */
  .hero-cta-group     { flex-direction: column; gap: 0.6rem; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; padding: 0.8rem 1rem; font-size: 0.875rem; }

  .hero-proof         { gap: 0.65rem; }
  .proof-text         { font-size: 0.73rem; }

  .hero-trust-strip   { gap: 0.5rem; padding-bottom: 1.5rem; }
  .trust-chips span   { font-size: 0.72rem; padding: 0.22rem 0.6rem; }

  /* Section titles */
  .section-title      { font-size: 1.5rem; }
  .section-subtitle   { font-size: 0.9rem; }

  /* Stats */
  .stat-num           { font-size: 1.75rem; }
  .stat-lbl           { font-size: 0.68rem; }

  /* Service cards */
  .service-card       { padding: 1.375rem 1.1rem; }
  .service-card h4    { font-size: 0.95rem; }
  .service-card p     { font-size: 0.83rem; }

  /* Process */
  .process-card       { padding: 1.5rem 1rem; }
  .process-step-num   { font-size: 3rem; top: 0.75rem; right: 0.875rem; }
  .process-icon-ring  { width: 56px; height: 56px; font-size: 1.35rem; margin-bottom: 1rem; }
  .process-title      { font-size: 0.975rem; }

  /* Why cards */
  .why-card           { gap: 0.75rem; padding: 0.875rem; }

  /* Pricing */
  .pricing-card       { padding: 1.625rem 1.25rem; }
  .pricing-amount     { font-size: 1.75rem; }
  .package-tab        { padding: 0.45rem 1rem; font-size: 0.8rem; }

  /* Testimonials */
  .testimonial-card   { padding: 1.375rem; }
  .testimonial-quote-mark { font-size: 3.25rem; }

  /* CTA section buttons */
  .cta-section .d-flex { flex-direction: column !important; }
  .cta-section .btn-hero-primary,
  .cta-section .btn-hero-secondary { width: 100%; justify-content: center; }

  /* CTA trust row */
  .cta-trust-row      { flex-direction: column; gap: 0.6rem; }

  /* Contact */
  .contact-form-card  { padding: 1.25rem; }
  .btn-submit         { padding: 0.8rem 1.5rem; font-size: 0.875rem; }

  /* Footer */
  .footer-brand       { font-size: 1.1rem; }
  .footer-desc        { font-size: 0.82rem; }
  .footer-link        { font-size: 0.82rem; }
  .footer-contact-item { font-size: 0.82rem; }

  /* Page hero */
  .page-hero          { padding: 6rem 0 2.5rem; }
  .page-hero-title    { font-size: 1.625rem; }
  .page-hero-subtitle { font-size: 0.9rem; }

  /* Brand pill button full width in some contexts */
  .btn-brand-pill     { padding: 0.8rem 1.75rem; font-size: 0.875rem; }

  /* Why section CTA buttons */
  .why-section-cta { flex-direction: column !important; }
  .why-section-cta .btn-brand-pill,
  .why-section-cta .btn { width: 100% !important; justify-content: center; text-align: center; }
}

/* ============================================================
   TOUCH — minimum tap targets & hover suppression on touch
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover   { transform: none; box-shadow: var(--shadow-sm); border-color: var(--border-color); }
  .service-card:hover::before { transform: scaleX(0); }
  .pricing-card:hover   { transform: none; }
  .testimonial-card:hover { border-color: var(--border-color); box-shadow: none; }
  .why-card:hover       { transform: none; box-shadow: none; border-color: var(--border-color); }
  .process-card:hover   { transform: none; box-shadow: none; border-color: var(--border-color); }
  .value-card:hover     { transform: none; box-shadow: none; border-color: var(--border-color); }
  .btn-hero-primary:hover,
  .btn-hero-secondary:hover { transform: none; }
  .btn-brand-pill:hover { transform: none; box-shadow: none; }
  .social-btn:hover     { transform: none; }
  .footer-link:hover    { padding-left: 0; }
  /* ensure all interactive links/buttons are min 44px tall */
  .nav-link-custom      { min-height: 44px; display: flex; align-items: center; }
  .btn-get-started,
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-brand-pill,
  .btn-submit,
  .btn-pricing          { min-height: 44px; }
}
