/* ============================================================
   KELLEY IT SOLUTIONS — Main Stylesheet
   Brand: Purple #930093 | Cyan #1DC5FF
   ============================================================ */

/* --- Custom Properties ------------------------------------ */
:root {
  --purple:       #930093;
  --purple-dark:  #6d006d;
  --purple-light: #b800b8;
  --cyan:         #1DC5FF;
  --cyan-dark:    #00a8e0;
  --cyan-light:   #6edaff;

  --text:         #111111;
  --text-mid:     #4a4a5a;
  --text-soft:    #6b7280;
  --bg:           #ffffff;
  --bg-light:     #f5f7fb;
  --border:       #e5e7eb;
  --border-soft:  #f0f0f5;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);

  --radius:    14px;
  --radius-sm: 8px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;

  --nav-h: 70px;
}

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer { margin-top: auto; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
svg { display: block; }

/* --- Layout Helpers --------------------------------------- */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad { padding: 100px 0; }
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mt-btn { margin-top: 32px; }

/* --- Typography ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--text);
}

/* --- Eyebrow Label --------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow-dark {
  color: var(--purple);
}

/* --- Section Header -------------------------------------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease),
              background 0.2s ease,
              border-color 0.2s ease,
              color 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  box-shadow: 0 6px 24px rgba(147,0,147,0.35);
}

.btn-white {
  background: #fff;
  color: var(--purple);
  border-color: #fff;
}
.btn-white:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.logo-text strong {
  display: block;
  font-weight: 800;
  color: var(--purple);
  font-size: 15px;
}

/* Nav logo image */
.logo-full {
  height: 42px;
  width: auto;
  display: block;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  background: rgba(147,0,147,0.07);
}

/* Phone in mobile menu — hidden on desktop */
.nav-phone-mobile { display: none; }

/* Nav Phone CTA */
.nav-phone {
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  background-color: var(--cyan);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}

/* Photo strip — right 38%, cropped into the hand/tech area */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Canvas for data-drops animation — left (cyan) side only */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Gradient overlay: light tint on the cyan side, transparent on the photo side */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.12) 50%, rgba(0,0,0,0) 65%);
  pointer-events: none;
  z-index: 3;
}

@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 28px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 26px;
  max-width: 700px;
}

.hero h1 .highlight {
  color: rgba(255,255,255,0.9);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Small feature badges row */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 40px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}


/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--purple);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan-light);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 12px;
  opacity: 0.75;
}


/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-highlights {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}
.highlight-item svg {
  width: 18px;
  height: 18px;
  color: var(--purple);
  flex-shrink: 0;
}

/* Stats grid */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease),
              box-shadow 0.28s var(--ease),
              border-color 0.28s ease;
}
/* Accent bar on top */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover::after,
.service-card--featured::after {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card--featured {
  border-color: var(--purple);
  box-shadow: 0 4px 24px rgba(147,0,147,0.10);
}

.featured-badge {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(147,0,147,0.10), rgba(29,197,255,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 26px;
}
.service-link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-link:hover { gap: 10px; }


/* ============================================================
   PROCESS
   ============================================================ */
.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.process-arrow {
  flex-shrink: 0;
  margin-top: 28px;
  color: var(--border);
  display: flex;
  align-items: center;
}
.process-arrow svg { width: 28px; height: 28px; }

.step-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(147,0,147,0.2);
  margin-bottom: 14px;
  transition: color 0.25s ease, -webkit-text-stroke 0.25s ease;
}
.process-step:hover .step-num {
  color: var(--purple);
  -webkit-text-stroke: 0px transparent;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.t-stars {
  font-size: 17px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.t-quote {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.t-author span {
  font-size: 12px;
  color: var(--text-soft);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s ease;
}

.faq-item.open {
  box-shadow: var(--shadow);
  border-color: rgba(147, 0, 147, 0.18);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--purple); }
.faq-item.open .faq-question { color: var(--purple); }

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text-soft);
  transition: transform 0.3s var(--ease), color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

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

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(130deg, var(--purple-dark) 0%, var(--purple) 50%, #5a007a 100%);
  overflow: hidden;
  text-align: center;
}
/* Decorative blobs */
.cta-bg::before,
.cta-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-bg::before {
  width: 480px; height: 480px;
  top: -160px; right: -120px;
  background: rgba(29,197,255,0.10);
}
.cta-bg::after {
  width: 560px; height: 560px;
  bottom: -200px; left: -140px;
  background: rgba(29,197,255,0.06);
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0c0c18;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.footer-logo-full {
  height: 48px;
  width: auto;
  display: block;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.2;
}
.footer-logo-text strong {
  display: block;
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease);
}
.social-links a:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--cyan-light); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cyan);
}
.footer-contact-list a:hover { color: var(--cyan-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}


/* ============================================================
   SCROLL FADE-IN ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease),
              transform 0.55s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .trust-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .about-grid         { grid-template-columns: 1fr; gap: 52px; }
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .process-track      { flex-direction: column; align-items: center; }
  .process-step       { max-width: 340px; padding: 20px 16px; }
  .process-arrow      {
    transform: rotate(90deg);
    margin: 0;
  }
}

@media (max-width: 768px) {
  /* Nav collapse */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    right: 0;
    bottom: 0;
    width: 55%;
    max-width: 210px;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 8px;
    z-index: 850;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.18);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    display: block;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 24px;
    margin: 4px 12px;
    width: calc(100% - 24px);
    text-align: left;
    color: var(--text);
    border-radius: 8px;
    background: transparent;
  }
  .nav-links a:hover {
    background: rgba(147,0,147,0.07);
    color: var(--purple);
  }
  .nav-links a.active {
    background: var(--purple);
    color: #fff;
  }
  .nav-phone { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-phone-mobile {
    display: block;
    border-top: 1px solid var(--border);
    margin: 16px 12px 8px;
    padding-top: 16px;
  }
  .nav-phone-mobile::before {
    content: 'Call or Text';
    display: block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 0 12px;
    margin-bottom: 6px;
  }
  .nav-phone-mobile a {
    display: block;
    color: var(--purple) !important;
    font-weight: 700 !important;
    font-size: 17px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(147,0,147,0.06);
  }

/* Drawer header injected by JS */
.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
  flex-shrink: 0;
}
.nav-drawer-header span {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.nav-drawer-close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--text-mid);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
}
.nav-drawer-close:hover {
  background: var(--border);
  color: var(--text);
}

/* Backdrop behind drawer */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0);
  z-index: 840;
  transition: background 0.28s ease;
}
.nav-backdrop.visible {
  background: rgba(0,0,0,0.45);
}
  .logo-full { height: 34px; }

  /* Hero — hide photo, restore full-width padding, reduce height */
  .hero-photo { display: none; }
  .hero { min-height: 55vh; }
  .hero-content { padding: 52px 24px; }
  .hero h1 { letter-spacing: -1px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .section-pad   { padding: 72px 0; }
}

@media (max-width: 520px) {
  .trust-grid  { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .hero-badges { display: none; } /* too cramped on small phones */
  .cta-btns    { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .logo-full   { height: 30px; }
}
