/* ══════════════════════════════════════════════════════════
   PRONTO CLONE — style.css
   Light theme, exact withpronto.com aesthetic
   ══════════════════════════════════════════════════════════ */

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

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --green: #1B8A4C;
  --green-dark: #156638;
  --green-hover: #22A85E;
  --green-light: #E8F5EE;
  --green-bg: #1a5c35;
  --green-showcase: linear-gradient(160deg, #1a5c35 0%, #0f3d22 100%);

  --bg: #F0F2F5;
  --bg-alt: #EAEDF0;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;

  --text-dark: #111111;
  --text-mid: #444444;
  --text-light: #888888;
  --text-xlight: #AAAAAA;
  --border: #E2E5E9;

  --font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);

  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

::selection {
  background: #c8f0da;
}


/* ══════════════════════════════════════════════════════════
   HEADER & NAVBAR PILL
   ══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 18px 24px;
  pointer-events: none;
}

.navbar-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 850px;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 8px 12px 8px 24px;
  pointer-events: all;
  transition: box-shadow 0.3s ease;
}

.navbar-pill:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.nav-links-center {
  display: flex;
  gap: 4px;
}

.navbar-pill .nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}

.navbar-pill .nav-link:hover {
  color: var(--green);
  background: var(--green-light);
}

.nav-get-app {
  background: #c19734;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}

.nav-get-app:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: #af2424;
  letter-spacing: -0.03em;
}

.logo-img {
  height: 40px;
  /* Aap apne layout ke hisaab se height kam ya zyada kar sakte hain */
  width: auto;
  /* Isse logo ka ratio kharab nahi hoga */
  display: block;
}

/* Mobile header (hidden on desktop) */
.mobile-header {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  pointer-events: all;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 20px;
  gap: 4px;
  box-shadow: var(--shadow-md);
  pointer-events: all;
}

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

.mobile-link {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
}

.mobile-link:hover {
  background: var(--green-light);
  color: var(--green);
}


/* ══════════════════════════════════════════════════════════
   APP STORE BUTTONS
   ══════════════════════════════════════════════════════════ */
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}

.app-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.app-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-btn-text small {
  font-size: 0.65rem;
  opacity: 0.8;
  font-weight: 400;
}

.app-btn-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.app-btn-sm {
  padding: 9px 14px;
}

.app-btn-sm .app-btn-text strong {
  font-size: 0.85rem;
}


/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 120px 0 0px;
  position: relative;
  overflow: hidden;
  background: #F8F9FB;
  color: #1a1a1a;
  display: flex;
  align-items: center;
}

/* Hero Imagery Containers */
.hero-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  /* animation: float-hero 6s ease-in-out infinite; */
}

.hero-mosaic-img {
  width: 100%;
  /* max-width: 380px; */
  height: auto;
  border-radius: var(--radius-xl);
  /* transform: rotate(-2deg); */
}

.hero-phones-img {
  width: 100%;
  height: auto;
  /* transform: rotate(2deg); */
}

@keyframes float-hero {

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

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

/* Specific offsets for the mosaic side */
/* .left-mosaic {
  animation-delay: -1s;
} */

.right-phones {
  animation: float-hero 6s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero-image-container {
    margin: 40px 0;
    animation: none;
    /* Disable floating on mobile to save CPU/battery */
  }

  .hero-mosaic-img,
  .hero-phones-img {
    max-width: 280px;
    transform: none;
  }
}


/* CSS worker fallback */
.worker-uniform {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20%;
  height: 100%;
}

.worker-face {
  width: 70px;
  height: 70px;
  background: #f5c9a0;
  border-radius: 50%;
  margin-bottom: 10px;
}

.worker-body {
  width: 120px;
  height: 140px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worker-badge {
  font-size: 1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.02em;
}

.worker-gloves {
  font-size: 1.5rem;
  margin-top: 8px;
}

/* Hero center content */
.hero-content {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  color: #1a1a1a;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #c19734;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(27, 138, 76, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 138, 76, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(27, 138, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(27, 138, 76, 0);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #1a1a1a;
  margin-bottom: 12px;
  text-align: center;
}

.hero-tagline {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 30px;
  text-align: center;
}

.hero-sub {
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.9);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: center;
}

.hero-app-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.app-btn-black {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.app-btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-trusted {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trusted-avatars {
  display: flex;
}

.t-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e8f0fe;
  margin-left: -10px;
}

.t-av:first-child {
  margin-left: 0;
}

.auth-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

.auth-text strong {
  color: var(--text-dark);
}

/* Phone peek at bottom */
.hero-phone-peek {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-peek-mock {
  width: 220px;
  background: white;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  border-bottom: none;
}

.phone-notch {
  width: 60px;
  height: 6px;
  background: #111;
  border-radius: 3px;
  margin: 10px auto 8px;
}

.phone-screen-preview {
  padding: 8px 14px 16px;
}

.pscreen-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pscreen-bundle {
  background: var(--green-light);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.7rem;
}

.pscreen-bundle strong {
  font-size: 0.75rem;
  color: var(--green);
  display: block;
  margin-bottom: 2px;
}

.pscreen-bundle p {
  color: var(--text-mid);
}


/* Removed phone-showcase wrapper */

/* Three phones layout */
.phones-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -10px;
  position: relative;
  z-index: 2;
  padding: 0 60px;
}




/* ══════════════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 80px 24px;
  background: var(--bg);
}

.stats-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stats-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.stats-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #ddd 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.25;
}

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

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  position: relative;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}


/* ══════════════════════════════════════════════════════════
   SHARED SECTION HEADERS
   ══════════════════════════════════════════════════════════ */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════
   SERVICES STRIP (Horizontal Scroll)
   ══════════════════════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--bg);
}

.services-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 3.5rem;
}

.services-strip-wrapper {
  position: relative;
}

.strip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-dark);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
  border: 1px solid var(--border);
}

.strip-arrow:hover {
  background: var(--green);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.strip-prev {
  left: 16px;
}

.strip-next {
  right: 16px;
}

.services-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 40px 30px;
  scrollbar-width: none;
}

.services-strip::-webkit-scrollbar {
  display: none;
}

.svc-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.svc-photo {
  width: 240px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.svc-item:hover .svc-photo {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-item:hover .svc-photo img {
  transform: scale(1.05);
}

.svc-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}


/* ══════════════════════════════════════════════════════════
   HOW IT WORKS (3 Green Cards)
   ══════════════════════════════════════════════════════════ */
.hiw-section {
  padding: 40px 24px;
  background: var(--bg-alt);
}

.hiw-container {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
  align-items: end;
}

/* #6CBAC4, #EBD6A7, #B1A7C9 */

.hiw-card {
  background: #6CBAC4;
  border-radius: var(--radius-xl);
  padding: 32px 28px 0;
  text-align: left;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  box-shadow: 0 4px 30px rgba(27, 138, 76, 0.25);
  max-height: 500px;
  display: flex;
  flex-direction: column;
}

.hiw-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 50px rgba(27, 138, 76, 0.35);
}

.hiw-card-mid {
  min-height: 500px;
}

.hiw-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  flex: 0 0 auto;
}

.hiw-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  flex: 0 0 auto;
}

.hiw-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  color: white;
  backdrop-filter: blur(4px);
}

.hiw-icon-box svg {
  width: 24px;
  height: 24px;
}

.hiw-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  color: #111;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.hiw-phone-wrap {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  margin-top: auto;
}

.hiw-image {
  width: 100%;
  max-width: 210px;
  height: auto;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s var(--ease-spring);
  transform: translateY(10px);
}

.hiw-card:hover .hiw-image {
  transform: translateY(0px) scale(1.03);
}



/* ══════════════════════════════════════════════════════════
   TESTIMONIALS (Staggered 2-Row Grid)
   ══════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 24px;
  background: var(--bg);
  overflow: hidden;
  /* Prevent horizontal scrolling of the page from the wide marquee track */
}

.testi-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testi-grid {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 12px 4px 40px;
  margin-top: 3.5rem;
  text-align: left;
  animation: slideMarquee 45s linear infinite;
}

.testi-grid:hover {
  animation-play-state: paused;
}

@keyframes slideMarquee {
  0% {
    transform: translateX(0);
  }

  /* Since there are 16 items exactly duplicated (8+8), we transform exactly 50% plus half the gap width (12px) to perfectly seamless frame wrap */
  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  min-width: 320px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

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

.testi-quote-mark {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 2.5rem;
  color: #e0e0e0;
  line-height: 1;
  font-family: Georgia, serif;
}

.testi-author-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.av-green {
  background: #1B8A4C;
}

.av-pink {
  background: #e91e8c;
}

.av-purple {
  background: #7c3aed;
}

.av-brown {
  background: #92400e;
}

.av-blue {
  background: #1d4ed8;
}

.av-red {
  background: #dc2626;
}

.av-orange {
  background: #ea580c;
}

.testi-author-top>div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-author-top strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-author-top span {
  font-size: 0.75rem;
  color: var(--text-xlight);
}

.testi-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.testi-text strong {
  color: var(--text-dark);
}


/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 24px;
  background: var(--bg-alt);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2.5rem;
  text-align: left;
}

.faq-item {
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--bg);
  transition: background 0.2s;
}

.faq-item.open {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.faq-question:hover {
  color: var(--green);
}

.faq-toggle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--text-dark);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease-spring), background 0.2s;
  line-height: 0px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-smooth), padding 0.3s;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



/* .footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
} */

.footer-logo-img {
   width: auto;
  display: block;
 
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 260px;
}



.footer-app-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-xlight);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-light);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

.footer-social a:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}


/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
.hero-inner {
  gap: 12px;
}

.hero-content {
  min-width: unset;
}
@media (min-width: 900px) {

    .footer-logo-img { 
    max-width: 200px;
}

}

@media (max-width: 900px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hiw-card-mid {
    min-height: 460px;
  }

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

  .phones-wrapper {
    gap: 10px;
    padding: 0 20px;
  }

  .phone-frame-center {
    width: 200px;
  }

  .phone-frame {
    width: 170px;
  }
}

@media (max-width: 768px) {
  .navbar-pill {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .header {
    padding: 0;
    display: block;
    background: var(--white);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 24px 60px;
    gap: 40px;
    background: #F8F9FB;
  }

  .hero-woman-left {
    display: none;
  }

  .hero-phones-right {
    height: auto;
    padding: 0;
  }

  .phones-wrapper.hero-phones {
    transform: scale(0.65);
    transform-origin: center center;
  }

  .hero-content {
    padding: 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .phones-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .phone-side {
    display: none;
  }

  .phone-frame-center {
    width: 220px;
  }

  @media (max-width: 480px) {
    .hero-app-btns {
      flex-direction: column;
      align-items: center;
    }

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

    .services-strip {
      padding: 8px 16px 20px;
    }

    .svc-item {
      flex: 0 0 200px;
    }

    .svc-photo {
      width: 200px;
      height: 200px;
    }

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

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

    .hiw-grid {
      grid-template-columns: 1fr;
      gap: 32px;
      max-width: 100%;
    }
    .nav-logo.footer-logo{
        padding: 0px;
    }

  }