/* ============================================================
   INDEX-REDESIGN.CSS — Jai Malhar Human Capital Homepage
   Clean, organized stylesheet — no inline CSS needed
   ============================================================ */

/* ── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-light: #fff2e8;
  --primary-lighter: #fffaf5;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #fafbfc;
  --white: #ffffff;
  --danger: #dc2626;
  --danger-light: #fee2e2;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.modal-open {
  overflow: hidden;
}

/* ── MOBILE-SAFE DEFAULTS ───────────────────────────────────── */
img,
video,
svg {
  max-width: 100%;
  height: auto;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--slate);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: #fff7ed;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-weight: 600;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* ── SECTION SHARED ─────────────────────────────────────────── */
.section {
  padding: 64px 0;
  background: var(--white);
}
.section-surface {
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--primary-lighter) 100%
  );
}
.section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
}
main {
  background: var(--white);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 1px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.16;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.75;
}
.section-head {
  margin-bottom: 50px;
  max-width: 780px;
}
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head-center .section-label {
  justify-content: center;
}
.section-head-center .section-desc {
  margin: 0 auto;
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal-section {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 100px;
  color: var(--white);
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04) brightness(0.92);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 19, 36, 0.82) 0%,
    rgba(30, 41, 59, 0.62) 45%,
    rgba(194, 65, 12, 0.32) 100%
  );
  z-index: 1;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 560px;
}
.hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(234, 88, 12, 0.2);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 99px;
  border: 1px solid rgba(252, 211, 77, 0.3);
}
.hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--white);
  letter-spacing: -0.03em;
}
.hero-title span {
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-actions .btn {
  min-width: 150px;
}
.hero-primary {
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.35);
}
.hero-primary:hover {
  background: linear-gradient(135deg, #c2410c, #ea580c);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.4);
  transform: translateY(-2px);
}
.hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
}
.hero-metric-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: var(--white);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(234, 88, 12, 0.3);
}

/* Hero Search Card */
.hero-search-card {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 36px;
  box-shadow:
    0 24px 64px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.hero-search-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-search-form {
  display: grid;
  gap: 14px;
}
.hero-search-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
}
.hero-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-field label {
  font-size: 0.86rem;
  color: var(--slate);
  font-weight: 700;
}
.hero-field input,
.hero-field select {
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink);
  font-family: inherit;
  background: var(--white);
  transition: all 0.2s;
}
.hero-field input:focus,
.hero-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}
.hero-search-btn {
  height: 48px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-search-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID
   ══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.services-grid-3 {
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: linear-gradient(180deg, var(--white) 0%, #fff9f4 100%);
  border: 1px solid #f0ddd3;
  border-radius: 18px;
  padding: 30px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--gold),
    var(--primary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 44px rgba(234, 88, 12, 0.1);
  transform: translateY(-8px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #fff2e8, #ffe4cc);
  border: 1px solid #f0ddd3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}
.service-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════════════
   STATS BAND
   ══════════════════════════════════════════════════════════════ */
.stats-band {
  background: linear-gradient(120deg, #c2410c, #ea580c, #f59e0b);
  background-size: 200% 200%;
  animation: statsGradient 8s ease infinite;
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 10% 30%,
    rgba(255, 255, 255, 0.2),
    transparent 45%
  );
  opacity: 0.6;
  pointer-events: none;
}
.stats-band .container {
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 500;
}
@keyframes statsGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
   ══════════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.08);
  transform: translateY(-6px);
}
.step-num {
  width: 58px;
  height: 58px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.3);
  border: 4px solid var(--white);
  position: relative;
  z-index: 2;
}
.step-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--ink);
}
.step-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   WHY GRID
   ══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  background: linear-gradient(135deg, #fff2e8, #ffe4cc);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-3deg);
}
.why-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--ink);
}
.why-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff2e8, #ffe4cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
  border-color: #f0ddd3;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.05);
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(234, 88, 12, 0.08);
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--primary-lighter) 100%
  );
}
.faq-q {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope", sans-serif;
  line-height: 1.45;
  gap: 16px;
  transition: color 0.2s;
}
.faq-item.open .faq-q {
  color: var(--primary);
}
.faq-arrow {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a {
  max-height: 250px;
}
.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 35%,
    #7c2d12 70%,
    #ea580c 100%
  );
  background-size: 200% 200%;
  animation: ctaGradient 8s ease infinite;
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 18% 22%,
    rgba(255, 255, 255, 0.2),
    transparent 42%
  );
  opacity: 0.7;
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 18px
  );
  opacity: 0.22;
  pointer-events: none;
}
.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.cta-desc {
  opacity: 0.9;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.78;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@keyframes ctaGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ══════════════════════════════════════════════════════════════
   TRUSTED COMPANIES MARQUEE
   ══════════════════════════════════════════════════════════════ */
.section-companies {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.companies-header {
  text-align: center;
  margin-bottom: 40px;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.trusted-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all var(--transition);
}
.trusted-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.08);
  transform: translateY(-4px);
}
.trusted-logo {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
  image-rendering: -webkit-optimize-contrast;
}
.trusted-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════════
   FIRST VISIT CONTACT POPUP
   ══════════════════════════════════════════════════════════════ */
.ftv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}
.ftv-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
  animation: ftvSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
}
.ftv-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  color: #6b7280;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.ftv-modal-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}
.ftv-modal-header {
  margin-bottom: 20px;
  text-align: center;
}
.ftv-modal-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.ftv-modal-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.ftv-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ftv-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ftv-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
}
.ftv-form-input {
  padding: 10px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: #f9fafb;
  transition: all 0.2s ease;
  outline: none;
}
.ftv-form-input::placeholder {
  color: #999;
}
.ftv-form-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}
.ftv-form-input:hover:not(:focus) {
  border-color: #ccc;
}
.ftv-submit-btn {
  padding: 12px 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}
.ftv-submit-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}
.ftv-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@keyframes ftvSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ══════════════════════════════════════════════════════════════
   TOAST NOTIFICATIONS
   ══════════════════════════════════════════════════════════════ */
.toast-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastSlideIn 0.3s ease;
  min-width: 260px;
  transition: all 0.3s ease;
}
.toast-success {
  background: #15803d;
}
.toast-error {
  background: var(--danger);
}
@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
@keyframes photoReveal {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .container,
  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Hero */
  .hero {
    padding: 80px 0 64px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-kicker {
    font-size: 0.74rem;
  }
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.14;
  }
  .hero-desc {
    font-size: 0.95rem;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .btn {
    min-width: 0;
    flex: 1 1 auto;
  }
  .hero-search-card {
    display: none;
  }

  /* Sections */
  .section {
    padding: 52px 0;
  }
  .section-head {
    margin-bottom: 36px;
  }
  .section-desc {
    font-size: 0.93rem;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Stats */
  .stats-band {
    padding: 56px 0;
  }
  .stat-num {
    font-size: 2.2rem;
  }

  /* Cards */
  .service-card,
  .why-card {
    padding: 20px;
    border-radius: 14px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  }

  /* FAQ */
  .faq-q {
    font-size: 0.93rem;
    padding: 18px 20px;
  }
  .faq-a p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
  }

  /* Companies */
  .trusted-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
  }
  .trusted-card {
    min-height: 110px;
    padding: 20px 12px;
  }
  .trusted-logo {
    width: 100px;
    height: 50px;
  }

  /* Popup */
  .ftv-modal {
    max-width: 90vw;
    padding: 24px;
  }
  .ftv-modal-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .container,
  .hero-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Hero */
  .hero {
    padding: 72px 0 52px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-title {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
  }
  .hero-desc {
    font-size: 0.88rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }
  .hero-metrics {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .hero-search-card {
    display: none;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }
  .section-head {
    margin-bottom: 26px;
  }
  .section-title {
    font-size: 1.65rem;
  }

  /* Grids */
  .stats-grid,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stats-band {
    padding: 44px 0;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .t-text {
    font-size: 1.06rem;
    line-height: 1.34;
  }
  .t-text::before {
    display: none;
  }

  /* Companies */
  .trusted-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
  }
  .trusted-card {
    min-height: 100px;
    padding: 16px 10px;
  }
  .trusted-logo {
    width: 80px;
    height: 42px;
    margin-bottom: 8px;
  }
  .trusted-name {
    font-size: 0.72rem;
  }
  .section-companies {
    padding: 40px 0;
  }

  /* CTA */
  .cta-band {
    padding: 72px 0;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 80%;
  }

  /* Popup */
  .ftv-modal {
    max-width: 95vw;
    padding: 20px;
    border-radius: 16px;
    max-height: 85vh;
  }
  .ftv-modal-title {
    font-size: 1.1rem;
  }
  .ftv-modal-subtitle {
    font-size: 0.8rem;
  }
  .ftv-form-input {
    font-size: 0.85rem;
    padding: 9px 10px;
  }
  .ftv-submit-btn {
    padding: 11px 16px;
    font-size: 0.9rem;
  }
  .ftv-modal-close {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    top: 12px;
    right: 12px;
  }

  /* Toast */
  .toast-root {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .toast {
    min-width: auto;
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .stats-band,
  .cta-band {
    animation: none;
  }

  .service-card:hover,
  .why-card:hover,
  .process-step:hover,
  .trusted-card:hover {
    transform: none;
  }
}
