* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #05080f;
  color: #e5e7eb;
  overflow-x: hidden;
}

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

.btn {
  background: #38bdf8;
  color: #000;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.btn.outline {
  background: transparent;
  border: 1px solid #38bdf8;
  color: #38bdf8;
}

.btn.small {
  padding: 8px 14px;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(10px);
  z-index: 99;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  text-align: center;
}

.cards, .mockups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #0b1220;
  padding: 30px;
  border-radius: 14px;
}

.card.featured {
  border: 2px solid #38bdf8;
}

.profile img.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #38bdf8;
  margin: 20px auto;
  display: block;
}

.footer {
  padding: 30px;
  text-align: center;
  background: #020617;
}

/* HUMAN CHECK */
#human-check {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.human-box {
  background: #020617;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
}
/* ===== NAVIGATION BAR ===== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1e293b;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

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

.nav-center a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-center a:hover {
  color: #38bdf8;
}

.nav-right {
  display: flex;
  gap: 12px;
}

.nav-login {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 16px;
}

.nav-signup {
  background: #38bdf8;
  color: #020617;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.nav-signup:hover {
  background: #0ea5e9;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 14px;
  }

  .nav-center {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
/* WHAT WE DO SECTION */
.what-we-do {
  background: #0f172a;
  padding: 100px 20px;
  text-align: center;
}

.what-we-do h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #ffffff;
}

.section-subtitle {
  max-width: 780px;
  margin: 0 auto 60px;
  font-size: 17px;
  line-height: 1.7;
  color: #94a3b8;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.what-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 35px 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(56,189,248,0.15);
}

.what-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #e5e7eb;
}

.what-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 18px;
}

.mini-cta {
  font-size: 14px;
  font-weight: 600;
  color: #38bdf8;
  text-decoration: none;
}

.mini-cta:hover {
  text-decoration: underline;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .what-we-do {
    padding: 70px 18px;
  }

  .what-we-do h2 {
    font-size: 30px;
  }
}
/* PRICING SECTION */
.pricing-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #020617, #020617);
  text-align: center;
}

.pricing-section .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.pricing-section .section-subtitle {
  max-width: 600px;
  margin: 15px auto 50px;
  color: #94a3b8;
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.pricing-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 18px;
  padding: 40px 30px;
  color: #e5e7eb;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.15);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: #38bdf8;
}

.price span {
  font-size: 14px;
  color: #94a3b8;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-card ul li {
  margin-bottom: 12px;
  color: #cbd5f5;
  font-size: 15px;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: #38bdf8;
  color: #020617;
  font-weight: 600;
}

.pricing-card.featured {
  border: 2px solid #38bdf8;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #38bdf8;
  color: #020617;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
/* ============================= */
/* 🔥 MEGA FOOTER */
/* ============================= */

.mega-footer {
  background: linear-gradient(180deg, #020617, #020617);
  padding: 80px 20px 40px;
  color: #cbd5f5;
  border-top: 1px solid #1e293b;
}

.footer-top {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-cta {
  display: inline-block;
  padding: 14px 26px;
  background: #38bdf8;
  color: #020617;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-cta:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
}

.footer-links h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-email {
  margin-top: 10px;
  font-size: 14px;
  color: #94a3b8;
}

.footer-divider {
  height: 1px;
  background: #1e293b;
  margin: 40px auto;
  max-width: 1200px;
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #64748b;
}

/* ===== MOBILE FOOTER ===== */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* =========================
   STEP 7 – CTA STACK
========================= */

.cta-stack {
  background: linear-gradient(180deg, #020617, #020617);
  padding: 100px 20px;
  text-align: center;
}

.cta-main {
  max-width: 850px;
  margin: 0 auto 70px;
}

.cta-main h2 {
  font-size: 44px;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 15px;
}

.cta-main p {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 35px;
}

.cta-btn {
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 50px;
}

.cta-note {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #64748b;
}

.cta-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.cta-box {
  background: #020617;
  border: 1px solid rgba(148,163,184,0.12);
  padding: 35px 30px;
  border-radius: 18px;
  text-align: left;
  transition: all 0.3s ease;
}

.cta-box:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
}

.cta-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 15px;
}

.cta-box a {
  color: #38bdf8;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.cta-box a:hover {
  text-decoration: underline;
}
/* ===== STEP 8 TRUST SECTIONS ===== */

.deliver-section,
.testimonials-section,
.proof-section {
  padding: 90px 20px;
  text-align: center;
}

.section-sub {
  max-width: 720px;
  margin: 12px auto 40px;
  color: #cbd5f5;
  font-size: 17px;
}

/* DELIVER */
.deliver-boxes {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.deliver-box {
  background: #1e293b;
  padding: 28px;
  border-radius: 14px;
  width: 300px;
  border: 1px solid #1e293b;
  transition: 0.3s ease;
}

.deliver-box:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
}

/* TESTIMONIALS */
.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.testimonial-card {
  background: #020617;
  padding: 26px;
  border-radius: 14px;
  width: 320px;
  border: 1px solid #1e293b;
  font-style: italic;
}

.testimonial-card span {
  display: block;
  margin-top: 14px;
  color: #38bdf8;
  font-weight: 600;
}

/* PROOF */
.proof-section {
  background: radial-gradient(circle at top, #1e3a8a, #020617);
}

.proof-boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.proof-box {
  background: #020617;
  padding: 30px;
  border-radius: 16px;
  width: 220px;
  border: 1px solid #1e293b;
}

.proof-box h3 {
  font-size: 34px;
  color: #38bdf8;
}

/* MOBILE */
@media (max-width: 768px) {
  .deliver-box,
  .testimonial-card,
  .proof-box {
    width: 100%;
    max-width: 340px;
  }
}
/* ========================= */
/* TRUST / AUTHORITY SECTION */
/* ========================= */

.trust-authority {
  padding: 90px 20px;
  background: linear-gradient(180deg, #020617, #0f172a);
  text-align: center;
}

.trust-authority h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #ffffff;
}

.trust-sub {
  max-width: 720px;
  margin: 0 auto 50px;
  color: #cbd5f5;
  font-size: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-box {
  background: #1e293b;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #1e293b;
  transition: 0.3s ease;
}

.trust-box:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
}

.trust-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.trust-box p {
  color: #cbd5f5;
  font-size: 15px;
  line-height: 1.6;
}

.trust-cta {
  margin-top: 50px;
}

.trust-cta p {
  font-size: 18px;
  color: #cbd5f5;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .trust-authority h2 {
    font-size: 28px;
  }

  .trust-sub {
    font-size: 16px;
  }
}
/* CTA BLOCK */
.cta-block {
  max-width: 1100px;
  margin: 80px auto;
  padding: 60px 25px;
  text-align: center;
  background: linear-gradient(135deg, #020617, #020617);
  border-radius: 18px;
  border: 1px solid rgba(56,189,248,0.25);
}

.cta-block h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #f8fafc;
}

.cta-block p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  color: #020617;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(56,189,248,0.35);
}

.cta-note {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-block h2 {
    font-size: 26px;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  position: sticky;
  top: 0;
  background: rgba(5,10,25,0.9);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.nav a {
  color: #e5e7eb;
  margin-right: 22px;
  font-weight: 500;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 55px;
  left: 0;
  background: #0b1020;
  border-radius: 14px;
  padding: 28px;
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  width: 720px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .dropdown-menu {
  display: grid;
}

.dropdown-column h4 {
  margin-bottom: 10px;
  color: #38bdf8;
  font-size: 15px;
}

.dropdown-column a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #cbd5f5;
}

.dropdown-column a:hover {
  color: #38bdf8;
}

.dropdown-cta {
  background: linear-gradient(135deg,#0ea5e9,#6366f1);
  padding: 18px;
  border-radius: 12px;
  color: white;
}

.dropdown-cta p {
  font-size: 14px;
  margin-bottom: 10px;
}

.btn.small {
  padding: 8px 14px;
  font-size: 13px;
}
/* ===== COOKIE CONSENT ===== */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
}

.cookie-box {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cookie-box p {
  color: #cbd5f5;
  font-size: 14px;
  max-width: 750px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons button {
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

#acceptCookies {
  background: #38bdf8;
  color: #020617;
}

#declineCookies {
  background: transparent;
  border: 1px solid #475569;
  color: #cbd5f5;
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-box {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, #050b1a, #030814);
  padding: 14px 40px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-link {
  color: #cfd8ff;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  transition: color .2s;
}

.nav-link:hover {
  color: #4fc3ff;
}

/* Buttons */
.btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

.btn.primary {
  background: #4fc3ff;
  color: #000;
}

.btn.ghost {
  border: 1px solid #4fc3ff;
  color: #4fc3ff;
}

/* ===== DROPDOWN ===== */
.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 130%;
  left: 0;
  width: 720px;
  background: #060f2a;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
}

/* IMPORTANT PART — STABLE OPEN */
.nav-item:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-col h4 {
  color: #4fc3ff;
  margin-bottom: 12px;
}

.menu-col a {
  display: block;
  margin-bottom: 8px;
  color: #dbe4ff;
  text-decoration: none;
  font-size: 14px;
}

.menu-col a:hover {
  color: #4fc3ff;
}

.menu-cta {
  background: #08163d;
  border-radius: 12px;
  padding: 20px;
  width: 220px;
}

.menu-cta p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

.cta-btn {
  display: inline-block;
  background: #4fc3ff;
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
/* ===============================
   MOBILE RESPONSIVE FIXES ONLY
   (SAFE – DESKTOP UI NOT TOUCHED)
================================ */

@media (max-width: 768px) {

  /* ===== NAVIGATION FIX ===== */
  .nav,
  .navbar {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-left,
  .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-left a {
    font-size: 14px;
  }

  .nav-right .btn {
    padding: 6px 10px;
    font-size: 13px;
  }

  /* Dropdown ko mobile pe simple rakho */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  /* ===== HERO SECTION FIX ===== */
  .hero,
  .hero-video {
    min-height: 90vh;
    padding: 60px 16px;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  /* ===== MOCKUPS SECTION FIX ===== */
  .mockups,
  .mockup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 16px;
  }

  .mockups img,
  .mockup-grid img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .mockup-description,
  .mockups p {
    font-size: 14px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
  }

}
/* =============================
   MOBILE HERO + NAV FIX
   ============================= */
@media (max-width: 768px) {

  /* NAVIGATION */
  .nav {
    padding: 12px 16px;
  }

  .nav-left a:not(.logo) {
    display: none; /* desktop links hide */
  }

  .nav-right {
    display: flex;
    gap: 10px;
  }

  .nav-right .btn {
    padding: 6px 12px;
    font-size: 13px;
  }

  /* HERO SECTION */
  .hero {
    min-height: 100vh;
    padding: 120px 16px 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}
/* =============================
   MOBILE MOCKUPS FIX
   ============================= */
@media (max-width: 768px) {

  .mockups {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mockups img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    height: auto;
    border-radius: 12px;
  }

  .mockups p,
  .mockups h3 {
    text-align: center;
    font-size: 14px;
    max-width: 320px;
    margin: 10px auto 0;
  }
}
/* =taking risk*/

/* =========================
   MOBILE FIX: NAV + HERO
   ========================= */

@media (max-width: 768px) {

  /* NAV BAR */
  .nav {
    padding: 14px 16px;
  }

  .nav-left {
    gap: 12px;
  }

  .nav-left a {
    font-size: 14px;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-right .btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* HERO SECTION */
  .hero,
  .hero-video {
    min-height: 90vh;
    padding: 0 16px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
/* =========================
   MOBILE FIX: MOCKUPS
   ========================= */

@media (max-width: 768px) {

  .mockups,
  .mockups-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mockups img,
  .mockup-card img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .mockup-card {
    padding: 0 16px;
    text-align: center;
  }

  .mockup-card h3 {
    font-size: 17px;
    margin-top: 12px;
  }

  .mockup-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ===============================
   MOBILE FIX — HERO & NAV
================================ */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .nav-left a {
    font-size: 14px;
    margin-right: 10px;
  }

  .nav-right {
    display: none; /* mobile par login/signup hide */
  }

  /* HERO SECTION */
  .hero,
  .hero-video {
    min-height: 100vh;
    padding: 0 16px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}
/* ===============================
   MOBILE FIX — AUTOMATION MOCKUPS
================================ */
.automation-mockups {
  padding: 60px 20px;
}

.mockups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mockup-box {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.mockup-box img {
  width: 100%;
  max-width: 220px;   /* 🔥 image control */
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .mockups-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .mockup-box img {
    max-width: 180px; /* 🔥 image chhoti */
  }

  .mockup-box h3 {
    font-size: 18px;
  }

  .mockup-box p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ============================= */
/* GLOBAL MOBILE FIX (SAFE) */
/* ============================= */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Container safety */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* ============================= */
/* HERO FIX (Mobile) */
/* ============================= */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 16px 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ============================= */
/* NAVBAR FIX (Mobile) */
/* ============================= */
@media (max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 12px 16px;
  }

  .navbar ul {
    gap: 12px;
  }
}

/* ============================= */
/* MOCKUPS FIX (IMPORTANT) */
/* ============================= */
.mockups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.mockup-box {
  width: 100%;
  max-width: 100%;
}

.mockup-box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* ============================= */
/* EXTRA SAFETY (Right gap killer) */
/* ============================= */
section,
img,
video {
  max-width: 100%;
}
.nav .btn.ghost {
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.4);
}

.nav .btn.ghost:hover {
  background: rgba(255,255,255,0.08);
}






.stats-section .btn,
.stats-section a.btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2dd4ff, #3b82f6);
  border: none;
}

.stats-section .btn:hover {
  opacity: 0.9;
}
section button,
section .btn {
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
/* ============================= */
/* EXTRA HY NEW CHAT WALA CODE HERO MY JO   PROBBLEM  THI BOOK A FREE CAL WALA BUTTON FUNCTIONAL NAHI THA */
/* ============================= */

/* FIX: Hero overlay click issue */
.hero-overlay {
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-video {
  position: absolute;
  z-index: 0;
}
/* FIX: Login button text visibility in navbar */
.navbar .login-btn,
.navbar a.login,
.navbar button.login {
  color: #000 !important;   /* black text */
}
/* FIX: Navbar Login button text visibility */
.navbar a[href*="login"],
.navbar .login,
.navbar .login-btn {
  color: #000 !important;   /* force black text */
}
/* FIX: Proof section CTA ghost button visibility */
.proof-section .btn.ghost {
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 174, 255, 0.15);
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 10px;
  opacity: 1;
}

/* Hover effect for CTA */
.proof-section .btn.ghost:hover {
  background: #00aeff;
  color: #000000 !important;
}
.locked {
  overflow: hidden;
}
