/* ========= RESET & BASE ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #F5A623;
  --orange-dark: #d4891a;
  --cyan: #29C6E0;
  --cyan-dark: #1ea8c0;
  --black: #0D0D0D;
  --dark1: #111111;
  --dark2: #171717;
  --dark3: #1E1E1E;
  --dark4: #2A2A2A;
  --gray1: #888888;
  --gray2: #555555;
  --gray3: #333333;
  --white: #FFFFFF;
  --green: #4ADE80;
  --font-main: 'Nunito', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
}
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
button { font-family: var(--font-main); cursor: pointer; border: none; outline: none; }
input, textarea { font-family: var(--font-main); outline: none; }

/* ========= SCROLLBAR ========= */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark1); }
::-webkit-scrollbar-thumb { background: var(--dark4); border-radius: 3px; }

/* ========= NAVBAR ========= */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark3);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray1);
  background: transparent;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.nav-tab:hover { color: var(--white); background: var(--dark3); }
.nav-tab.active {
  color: var(--orange);
  /* background: rgba(245,166,35,0.08); */
  /* border-color: rgba(245,166,35,0.25); */
}
.nav-tab .tab-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}
.nav-tab.active .tab-dot { opacity: 1; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark3);
  padding: 16px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-tab { width: 100%; justify-content: flex-start; }

/* ========= CLIENT PAGES ========= */
.client-page { display: none; }
.client-page.active { display: block; }

/* ========= HERO ========= */
.hero {
  padding: 60px 40px 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}
.hero-glow-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  top: -150px; left: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,198,224,0.07) 0%, transparent 70%);
  bottom: -200px; right: 0;
  pointer-events: none;
}
.hero-content { flex: 1; z-index: 1; max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,198,224,0.08);
  border: 1px solid rgba(41,198,224,0.25);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-logo {
  width: 72px; height: 72px;
  background: var(--dark2);
  border: 2px dashed rgba(245,166,35,0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--orange);
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
  overflow: hidden;
}
.hero-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-title .highlight { color: var(--orange); }
.hero-subtitle {
  color: var(--gray1);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  background: var(--dark2);
  border: 1px solid var(--dark4);
}
.pill .pill-val { color: var(--orange); }
.pill-green { color: var(--green) !important; }
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 28px rgba(245,166,35,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: var(--font-main);
}
.download-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245,166,35,0.4);
}
.download-btn svg { width: 20px; height: 20px; }
.hero-phones {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  z-index: 1;
  flex-shrink: 0;
}
.phone-mockup {
  width: 148px;
  height: 300px;
  background: var(--dark2);
  border: 2px solid var(--dark4);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gray3);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.phone-mockup:hover { transform: translateY(-6px); }
.phone-mockup.featured {
  width: 168px;
  height: 340px;
  border-color: var(--orange);
  margin-bottom: 0;
  box-shadow: 0 0 0 1px rgba(245,166,35,0.2), var(--shadow);
}
.phone-mockup .ph-label {
  background: rgba(41,198,224,0.1);
  border: 1px dashed rgba(41,198,224,0.3);
  color: var(--cyan);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 800;
}
.phone-mockup img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ========= INFO STRIP ========= */
.info-strip {
  background: var(--dark1);
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  padding: 22px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--dark3);
}
.info-card:first-child { padding-left: 0; }
.info-card:last-child { border-right: none; }
.info-icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.info-label { font-size: 11px; color: var(--gray2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.info-value { font-size: 15px; font-weight: 800; color: var(--white); margin-top: 2px; }

/* ========= SECTIONS ========= */
.section { padding: 52px 40px; }
.section-alt { background: var(--dark1); }
.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.section-bar {
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--orange), var(--cyan));
  border-radius: 3px;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.section-badge {
  margin-left: auto;
  background: rgba(41,198,224,0.08);
  border: 1px solid rgba(41,198,224,0.2);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ========= SCREENSHOTS ========= */
.screenshots-wrap {
  position: relative;
}
.screenshots-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-frame {
  width: 168px;
  height: 320px;
  background: var(--dark2);
  border: 2px solid var(--dark3);
  border-radius: 22px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray3);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 14px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.screenshot-frame:hover { border-color: rgba(41,198,224,0.4); transform: translateY(-4px); }
.screenshot-frame.active-frame { border-color: var(--cyan); background: rgba(41,198,224,0.04); }
.screenshot-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.screenshot-frame .frame-label {
  background: rgba(245,166,35,0.08);
  border: 1px dashed rgba(245,166,35,0.3);
  color: var(--orange);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark4);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ========= COUNTER ========= */
.counter-box {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.counter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.04) 0%, rgba(41,198,224,0.04) 100%);
  pointer-events: none;
}
.counter-label { font-size: 12px; color: var(--gray1); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.counter-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-sub { color: var(--gray2); font-size: 13px; margin-top: 6px; }
.counter-stats { display: flex; gap: 40px; }
.mini-stat { text-align: center; }
.mini-stat-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.mini-stat-label { font-size: 12px; color: var(--gray2); font-weight: 700; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ========= RATINGS ========= */
.ratings-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.rating-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.rating-big-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stars-display { color: var(--orange); font-size: 20px; margin: 8px 0; letter-spacing: 3px; }
.rating-count { color: var(--gray2); font-size: 12px; font-weight: 700; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.bar-lbl { font-size: 12px; color: var(--gray1); width: 28px; text-align: right; font-weight: 700; flex-shrink: 0; }
.bar-track { flex: 1; height: 7px; background: var(--dark3); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--cyan)); border-radius: 4px; transition: width 1s ease; }
.bar-count { font-size: 11px; color: var(--gray2); width: 28px; font-weight: 700; flex-shrink: 0; }
.review-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 24px;
}
.review-title { font-weight: 800; color: var(--gray1); font-size: 13px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.star-picker { display: flex; gap: 6px; margin-bottom: 14px; }
.star-btn {
  font-size: 26px;
  color: var(--dark4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
  padding: 0;
}
.star-btn:hover, .star-btn.selected { color: var(--orange); transform: scale(1.15); }
.review-input {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-size: 13px;
  height: 80px;
  resize: none;
  font-family: var(--font-main);
  display: block;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.review-input:focus { border-color: rgba(245,166,35,0.4); }
.review-input::placeholder { color: var(--gray3); }
.submit-btn {
  background: rgba(245,166,35,0.08);
  border: 1.5px solid rgba(245,166,35,0.3);
  color: var(--orange);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.submit-btn:hover { background: rgba(245,166,35,0.14); border-color: var(--orange); }

/* ========= INSTALL STEPS ========= */
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-item {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.2s;
}
.step-item:hover { border-color: rgba(245,166,35,0.2); }
.step-item.warning-step {
  background: rgba(245,166,35,0.03);
  border-color: rgba(245,166,35,0.2);
}
.step-num-circle {
  width: 38px; height: 38px;
  background: var(--orange);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.warning-step .step-num-circle {
  background: rgba(245,166,35,0.15);
  color: var(--orange);
  border: 2px solid rgba(245,166,35,0.4);
}
.step-content { flex: 1; min-width: 0; }
.step-title { font-weight: 800; font-size: 15px; color: var(--white); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.step-title .step-icon { font-size: 18px; }
.step-desc { color: var(--gray1); font-size: 13px; line-height: 1.6; }
.step-warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.step-sub-steps {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step-sub {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--gray1);
}
.step-sub-num {
  width: 18px; height: 18px;
  background: rgba(41,198,224,0.1);
  border: 1px solid rgba(41,198,224,0.2);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
/* Step image upload */
.step-image-area {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.step-img-upload {
  width: 100%;
  height: 100%;
  background: var(--dark3);
  border: 1.5px dashed var(--dark4);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 20px;
  color: var(--gray3);
}
.step-img-upload:hover {
  border-color: rgba(245,166,35,0.4);
  background: rgba(245,166,35,0.05);
  color: var(--orange);
}
.step-img-upload span { font-size: 10px; color: var(--gray2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.step-img-upload input { display: none; }
.step-img-preview {
  display: none;
  width: 100%; height: 100%;
  position: relative;
}
.step-img-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.step-img-remove {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  cursor: pointer;
  border: none;
  line-height: 1;
  font-family: var(--font-main);
}

/* ========= FAQ ========= */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,166,35,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray1);
  transition: color 0.2s;
  user-select: none;
}
.faq-item.open .faq-question { color: var(--orange); }
.faq-arrow {
  font-size: 18px;
  color: var(--gray3);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 13px;
  color: var(--gray1);
  line-height: 1.7;
}
.faq-answer-inner {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(245,166,35,0.1);
  padding-top: 14px;
}

/* ========= OTP MODAL ========= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--dark1);
  border: 1px solid var(--dark3);
  border-radius: 22px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--dark3);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray1);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close:hover { background: var(--dark4); color: var(--white); }
.modal-logo-img { height: 32px; width: auto; display: block; margin: 0 auto 14px; }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.modal-sub { color: var(--gray1); font-size: 13px; line-height: 1.6; margin-bottom: 24px; }
.modal-input {
  width: 100%;
  background: var(--black);
  border: 1.5px solid var(--dark4);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  text-align: center;
  letter-spacing: 1px;
  transition: border-color 0.2s;
  display: block;
  margin-bottom: 14px;
}
.modal-input:focus { border-color: rgba(245,166,35,0.5); }
.modal-input::placeholder { color: var(--gray3); letter-spacing: 0; }
.modal-btn {
  width: 100%;
  background: var(--orange);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-main);
}
.modal-btn:hover { background: var(--orange-dark); }
.otp-boxes {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.otp-box {
  width: 48px; height: 56px;
  background: var(--black);
  border: 1.5px solid var(--dark4);
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  transition: border-color 0.2s;
  font-family: var(--font-display);
}
.otp-box:focus { border-color: rgba(245,166,35,0.6); outline: none; }
.modal-resend { color: var(--gray2); font-size: 12px; margin-top: 12px; }
.modal-resend a { color: var(--cyan); cursor: pointer; font-weight: 700; }
.modal-success { display: none; }
.modal-success.show { display: block; }
.success-icon { font-size: 52px; margin-bottom: 14px; }

/* ========= FOOTER ========= */
footer {
  background: #080808;
  border-top: 1px solid var(--dark3);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo img { height: 32px; width: auto; }
.footer-copy { color: var(--gray2); font-size: 13px; }
.footer-email { color: var(--cyan); font-size: 13px; font-weight: 700; text-decoration: none; }
.footer-email:hover { color: var(--white); }

/* ========= DIVIDER ========= */
.divider { border: none; border-top: 1px solid var(--dark3); }

/* ========= TOAST ========= */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark2);
  border: 1px solid var(--dark3);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .ratings-grid { grid-template-columns: 1fr 1fr; }
  .ratings-grid .review-card { grid-column: 1 / -1; }
  .hero-phones { display: none; }
  .counter-box { flex-direction: column; gap: 24px; text-align: center; }
  .counter-stats { justify-content: center; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-tabs { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 40px 20px; flex-direction: column; min-height: auto; }
  .hero-content { max-width: 100%; }
  .info-strip { grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 20px; }
  .info-card { padding: 12px; border-right: none; border-bottom: 1px solid var(--dark3); }
  .info-card:nth-child(odd) { border-right: 1px solid var(--dark3); }
  .info-card:nth-last-child(-n+2) { border-bottom: none; }
  .section { padding: 36px 20px; }
  .ratings-grid { grid-template-columns: 1fr; }
  .counter-box { padding: 28px 20px; }
  footer { flex-direction: column; text-align: center; padding: 24px 20px; }
  .step-item { gap: 12px; }
  .step-image-area { width: 64px; height: 64px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-pills { gap: 8px; }
  .download-btn { width: 100%; justify-content: center; }
  .hero-phones { display: none; }
  .counter-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .otp-box { width: 40px; height: 50px; font-size: 20px; }
}

/* ========= ANIMATIONS ========= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }