* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #222; font-size: 16px; line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
}
/* ===========================================
   LOGO IMAGE TAG
   Apna logo URL yahan lagaein:
   src="https://films-app.com/images/logo.png"
   =========================================== */
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 6px;
  color: #444;
  transition: all 0.18s;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover { background: #f3f4f6; color: #222; }
.nav-link.active { background: #c0392b; color: #fff; }

/* CONTAINER */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* HERO */
.hero {
  background: #fff;
  padding: 52px 20px 44px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}
.hero h1 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-sub {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 500;
  color: #555;
  margin-bottom: 28px;
  font-style: italic;
}
.btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #c0392b;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 18px;
}
.btn-dl:hover { background: #a93226; }
.btn-dl svg { width: 20px; height: 20px; flex-shrink: 0; }
.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.security-badge svg { width: 17px; height: 17px; color: #27ae60; flex-shrink: 0; }

/* HERO BANNER IMAGE SLOT */
.hero-img-wrap {
  max-width: 700px;
  margin: 0 auto 22px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.32) 0%, transparent 65%);
  pointer-events: none;
}
.hero-img-wrap img.real-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-placeholder {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}
.hero-placeholder-title { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hero-placeholder-sub { font-size: 14px; color: rgba(255,255,255,0.62); margin-bottom: 20px; }
.hero-placeholder-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #c0392b;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.hero-placeholder-btn svg { width: 17px; height: 17px; }

.app-info-row {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.app-info-item { font-size: 13px; color: #888; display: flex; align-items: center; gap: 4px; }
.app-info-item strong { color: #333; }

/* CONTENT WRAP */
.content-wrap { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* SECTION */
.section { padding: 44px 0; border-bottom: 1px solid #f0f0f0; }
.section:last-child { border-bottom: none; }

/* H2 — Red label box like competitor */
.section h2 {
  display: inline-block;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 700;
  color: #fff;
  background: #c0392b;
  padding: 8px 20px;
  border-radius: 4px;
  margin-bottom: 22px;
  line-height: 1.3;
}

.section p {
  color: #444;
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 14px;
}
.section p:last-child { margin-bottom: 0; }

/* FEATURE BLOCKS */
.feature-block {
  margin-bottom: 42px;
  padding-bottom: 38px;
  border-bottom: 1px dashed #e5e7eb;
}
.feature-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

/* H3 — Dark navy box with red left border */
.feature-block h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #1a1a2e;
  padding: 7px 18px;
  border-radius: 4px;
  margin-bottom: 14px;
  line-height: 1.3;
  border-left: 4px solid #c0392b;
}

.feature-block p {
  color: #444;
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 12px;
}
.feature-block p:last-child { margin-bottom: 0; }

/* Feature image slot */
.feat-img-slot {
  width: 100%;
  max-width: 620px;
  margin: 18px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-img-slot img.feat-real {
  width: 100%;
  height: auto;
  display: block;
}
.feat-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 13px;
}
.feat-placeholder svg { width: 36px; height: 36px; opacity: 0.45; }

/* STEPS (numbered) */
.steps-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: #444;
  line-height: 1.65;
}
.step-num {
  min-width: 28px;
  height: 28px;
  background: #c0392b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* DOT LIST */
.dot-list {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dot-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #444;
  line-height: 1.65;
}
.dot-list li::before {
  content: '•';
  color: #c0392b;
  font-size: 20px;
  line-height: 1.2;
  flex-shrink: 0;
}

/* HOW TO USE — device sub-sections */
.device-section {
  margin-bottom: 28px;
  padding: 22px 20px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fafafa;
}
.device-section:last-child { margin-bottom: 0; }
/* H3 inside device section — same style */
.device-section h3 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #1a1a2e;
  padding: 7px 18px;
  border-radius: 4px;
  margin-bottom: 14px;
  border-left: 4px solid #c0392b;
}

/* ALTERNATIVES */
.alt-list { display: flex; flex-direction: column; gap: 0; margin: 18px 0; }
.alt-item { padding: 18px 0; border-bottom: 1px solid #f0f0f0; }
.alt-item:last-child { border-bottom: none; }
.alt-item h4 { font-size: 17px; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; }
.alt-item p { font-size: 15px; color: #555; margin: 0; line-height: 1.65; }

/* PROS CONS */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
@media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pc-box { border-radius: 10px; padding: 22px; }
.pc-box.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.pc-box.cons { background: #fff7f7; border: 1px solid #fecaca; }
.pc-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.pc-box.pros h4 { color: #15803d; }
.pc-box.cons h4 { color: #b91c1c; }
.pc-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 10px; font-size: 14px; color: #444; line-height: 1.6; }
.pc-item:last-child { margin-bottom: 0; }
.pc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.pros .pc-dot { background: #22c55e; }
.cons .pc-dot { background: #ef4444; }

/* FAQ */
.faq-wrap { margin-top: 20px; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 15px 0;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { color: #c0392b; }
.faq-q svg { width: 17px; height: 17px; flex-shrink: 0; color: #999; transition: transform 0.22s; }
.faq-q.open svg { transform: rotate(180deg); color: #c0392b; }
.faq-a { display: none; padding: 0 0 15px; font-size: 15px; color: #555; line-height: 1.72; }
.faq-a.open { display: block; }

/* FOOTER */
footer {
  background: #111;
  color: rgba(255,255,255,0.45);
  padding: 38px 20px;
  text-align: center;
  font-size: 13px;
}
.footer-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 14px;
  font-weight: 700; font-size: 18px; color: #fff;
}
/* ===========================================
   FOOTER LOGO IMAGE — same URL as navbar logo
   =========================================== */
.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: contain;
}
footer p { margin-bottom: 8px; line-height: 1.7; color: rgba(255,255,255,0.4); }
footer a { color: rgba(255,255,255,0.55); margin: 0 8px; transition: color 0.18s; }
footer a:hover { color: #c0392b; }

@media (max-width: 640px) {
  .hero { padding: 32px 16px 28px; }
  .section { padding: 32px 0; }
  .hero-img-wrap { min-height: 200px; }
  .device-section { padding: 16px 14px 14px; }
}
.custom-link {
  color: #eb0909;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #1e1597;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.custom-link:hover {
  color: #1417be;
  border-bottom-color: #0b18ce;
}
.faq-q h2 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  display: inline;
}