/* ═══════════════════════════════════════════════════════════
   PRITHVI GLOBAL FZ LLP — Shared CSS Design System
   shared.css — imported by all pages
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET & ROOT ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-300: #93C5FD;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --blue-900: #1E3A8A;
  --slate-50:  #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.06);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; }
img { max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; }

/* ─── SCROLL PROGRESS BAR ─── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  z-index: 10000; width: 0%; transition: width 0.1s linear;
}

/* ─── NAVIGATION ─── */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-height);
  padding: 0 64px;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
nav.main-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15,23,42,0.06), var(--shadow-sm);
}
nav.main-nav.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15,23,42,0.06), var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo img {
  height: 44px; width: auto; object-fit: contain;
}
.nav-logo-fallback {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: white;
  box-shadow: var(--shadow-blue); flex-shrink: 0;
}
.nav-logo-name { font-size: 16px; font-weight: 800; color: var(--slate-900); letter-spacing: -0.4px; line-height: 1.2; }
.nav-logo-sub { font-size: 10px; font-weight: 600; color: var(--blue-600); letter-spacing: 1.2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--slate-700);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { background: var(--blue-50); color: var(--blue-600); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--blue-600); border: 1.5px solid var(--blue-200);
  background: transparent; transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-nav-outline:hover { background: var(--blue-50); border-color: var(--blue-400); }
.btn-nav-solid {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: white; background: var(--blue-600); border: 1.5px solid var(--blue-600);
  transition: var(--transition); cursor: pointer; box-shadow: var(--shadow-blue);
  white-space: nowrap;
}
.btn-nav-solid:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(37,99,235,0.28); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; cursor: pointer;
  padding: 6px; border-radius: 8px; background: transparent;
  border: none; transition: background 0.2s;
}
.hamburger:hover { background: var(--blue-50); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--slate-700); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV DRAWER ─── */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 998; overflow-y: auto;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 24px 24px 40px;
  border-top: 1px solid var(--slate-200);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 10px;
  font-size: 16px; font-weight: 600; color: var(--slate-800);
  transition: var(--transition);
}
.mobile-nav ul li a::after { content: '→'; font-size: 14px; color: var(--slate-400); }
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active { background: var(--blue-50); color: var(--blue-600); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid var(--slate-200); }
.mobile-nav-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; border-radius: 10px; font-size: 15px; font-weight: 700; }
.mobile-nav-actions .btn-call { background: var(--slate-100); color: var(--slate-800); }
.mobile-nav-actions .btn-quote { background: var(--blue-600); color: white; box-shadow: var(--shadow-blue); }
.mobile-nav-contact { margin-top: 24px; padding: 20px; background: var(--blue-50); border-radius: 12px; border: 1px solid var(--blue-100); }
.mobile-nav-contact p { font-size: 13px; color: var(--slate-500); margin-bottom: 8px; }
.mobile-nav-contact a { font-size: 18px; font-weight: 800; color: var(--blue-600); display: block; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  padding: 140px 64px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb svg { opacity: 0.5; }
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: white;
  letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.8;
  max-width: 560px;
}

/* ─── SECTION COMMONS ─── */
section { padding: 100px 64px; }
.section-max { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 5px 12px 5px 8px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--blue-500); border-radius: 50%; }
.eyebrow span { font-size: 12px; font-weight: 600; color: var(--blue-700); letter-spacing: 0.5px; }

.section-title {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: var(--slate-900); letter-spacing: -1px; line-height: 1.15;
}
.section-sub {
  font-size: 16px; color: var(--slate-500); line-height: 1.8;
  margin-top: 14px; max-width: 560px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity:0; transform:translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
[data-delay="8"] { transition-delay: 0.8s; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: white; background: var(--blue-600);
  box-shadow: var(--shadow-blue); transition: var(--transition);
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37,99,235,0.30); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--slate-700); background: var(--slate-100);
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--slate-200); color: var(--slate-900); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-size: 15px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--blue-600); border: 1.5px solid var(--blue-200); background: transparent;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue-400); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 10px; font-size: 15px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--blue-700); background: white;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 10px; font-size: 15px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: white; background: transparent; border: 1.5px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.btn-white-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: white; border: 1.5px solid rgba(255,255,255,0.4); background: transparent;
  transition: var(--transition);
}
.btn-white-sm:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* ─── ICON WRAPPER ─── */
.icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--blue-50); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.icon-wrap svg { color: var(--blue-600); }
.icon-wrap.blue { background: var(--blue-600); }
.icon-wrap.blue svg { color: white; }
.icon-wrap.sm { width: 40px; height: 40px; border-radius: 10px; }

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--blue-600); overflow: hidden;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 40px; border-right: 1px solid rgba(255,255,255,0.12);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px; font-weight: 800; color: white; line-height: 1;
  letter-spacing: -1.5px;
}
.stat-num span { font-size: 28px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 500; }
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.2); transform: scaleX(0);
  transform-origin: left; transition: transform 0.6s ease;
}
.stat-item:hover::before { transform: scaleX(1); }

/* ─── TRUST BAND ─── */
.trust-band { background: var(--slate-50); padding: 60px 64px; }
.trust-band-inner { max-width: 1200px; margin: 0 auto; }
.trust-label { font-size: 13px; font-weight: 600; color: var(--slate-400); letter-spacing: 1px; text-transform: uppercase; text-align: center; margin-bottom: 36px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  background: white; border-radius: 14px; padding: 28px 24px;
  border: 1px solid var(--slate-200); transition: var(--transition);
}
.trust-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-md); }
.trust-card-icon { margin-bottom: 14px; }
.trust-card h4 { font-size: 15px; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: var(--slate-500); line-height: 1.7; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  padding: 100px 64px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px 6px 10px; border-radius: 100px; margin-bottom: 24px;
}
.cta-eyebrow-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.7); border-radius: 50%; }
.cta-eyebrow span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.5px; }
.cta-section h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: white; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 18px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-contact { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.cta-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.7); }
.cta-contact-item svg { opacity: 0.7; flex-shrink: 0; }

/* ─── FOOTER ─── */
footer.main-footer {
  background: var(--slate-900); color: rgba(255,255,255,0.65);
}
.footer-top {
  padding: 72px 64px 52px; max-width: 1328px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white; flex-shrink: 0;
}
.footer-logo-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: white; line-height: 1.2; }
.footer-logo-sub { font-size: 10px; font-weight: 600; color: var(--blue-400); letter-spacing: 1px; text-transform: uppercase; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.45); max-width: 280px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,0.5);
}
.social-btn:hover { background: var(--blue-600); border-color: var(--blue-600); color: white; }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-bottom-inner {
  max-width: 1328px; margin: 0 auto; padding: 22px 64px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── PRODUCT CARD ─── */
.product-card {
  border-radius: 16px; overflow: hidden; position: relative;
  background: white; border: 1px solid var(--slate-200);
  transition: var(--transition); cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-200); }
.product-img { overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.product-card.featured .product-img img { height: 280px; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(15,23,42,0.5) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-body { padding: 18px 20px; }
.product-origin {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: var(--blue-600);
  background: var(--blue-50); padding: 3px 8px; border-radius: 100px;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px;
}
.product-name { font-size: 16px; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.product-card.featured .product-name { font-size: 20px; }
.product-desc { font-size: 13px; color: var(--slate-500); line-height: 1.6; }
.product-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 13px; font-weight: 600; color: var(--blue-600);
  transition: gap 0.2s;
}
.product-card:hover .product-link { gap: 10px; }
.product-link svg { transition: transform 0.2s; }
.product-card:hover .product-link svg { transform: translateX(3px); }

/* ─── FEATURE CARD ─── */
.feature-card {
  padding: 36px 30px; border-radius: 16px;
  border: 1px solid var(--slate-200); background: white;
  transition: var(--transition); cursor: default; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.feature-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow-blue); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover .icon-wrap { background: var(--blue-100); transform: scale(1.08); }
.feature-card h4 { font-size: 17px; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; margin-top: 20px; }
.feature-card p { font-size: 14px; color: var(--slate-500); line-height: 1.75; }

/* ─── CHIP ─── */
.chip {
  display: flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--slate-200);
  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: var(--slate-700); transition: var(--transition);
}
.chip:hover { border-color: var(--blue-300); color: var(--blue-700); background: var(--blue-50); }

/* ─── FORM ELEMENTS ─── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--slate-700); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--slate-200); font-size: 15px;
  font-family: 'Inter', sans-serif; color: var(--slate-800);
  background: white; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 1024px) {
  :root { --nav-height: 64px; }
  nav.main-nav { height: 64px; padding: 0 24px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; top: 64px; }

  section { padding: 80px 32px; }
  .trust-band { padding: 52px 32px; }
  .cta-section { padding: 80px 32px; }

  .page-hero { padding: 120px 32px 64px; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 24px; }
  .stat-item:nth-child(2) { border-right: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .cta-section h2 { font-size: 36px; }
  .cta-contact { flex-wrap: wrap; gap: 16px; }

  .footer-top { padding: 56px 32px 40px; grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom-inner { padding: 20px 32px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ─── RESPONSIVE — PHONE ─── */
@media (max-width: 640px) {
  :root { --nav-height: 60px; }
  nav.main-nav { height: 60px; padding: 0 16px; }
  .nav-logo img { height: 36px; }
  .mobile-nav { top: 60px; padding: 20px 16px 40px; }

  section { padding: 64px 16px; }
  .trust-band { padding: 44px 16px; }
  .cta-section { padding: 64px 16px; }

  .page-hero { padding: 100px 16px 52px; }
  .page-hero h1 { letter-spacing: -1px; }
  .page-hero p { font-size: 15px; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 22px 16px; border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); border-right: none; }
  .stat-num { font-size: 32px; }

  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-label { font-size: 12px; }

  .section-title { font-size: 28px; letter-spacing: -0.5px; }
  .section-sub { font-size: 15px; }

  .cta-section h2 { font-size: 28px; letter-spacing: -1px; }
  .cta-section p { font-size: 15px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn-white,
  .cta-buttons .btn-outline-white { width: 100%; justify-content: center; padding: 15px 20px; }
  .cta-contact { flex-direction: column; align-items: center; gap: 12px; }

  .footer-top { grid-template-columns: 1fr; padding: 44px 16px 32px; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; padding: 18px 16px; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }

  .eyebrow { font-size: 11px; }
  .breadcrumb { font-size: 12px; }
}

/* ─── SMALL PHONE ─── */
@media (max-width: 390px) {
  nav.main-nav { padding: 0 12px; }
  section { padding: 56px 12px; }
  .trust-band { padding: 40px 12px; }
  .cta-section { padding: 56px 12px; }
  .footer-top { padding: 40px 12px 28px; }
  .footer-bottom-inner { padding: 16px 12px; }
  .page-hero { padding: 96px 12px 48px; }
  .stat-num { font-size: 26px; }
}
