:root {
  --red: #c90020;
  --red-dark: #8f0018;
  --yellow: #ffc400;
  --black: #0b0f19;
  --dark: #151925;
  --text: #334155;
  --muted: #667085;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.top-bar {
  background: var(--red-dark);
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
}
.top-bar .container,
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  transition: 0.25s ease;
}
.navbar.scrolled {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.09);
  padding: 11px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.04em;
  font-size: 20px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--red), #ff3757, var(--red));
  position: relative;
  box-shadow: 0 10px 25px rgba(201, 0, 32, 0.28);
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  left: 6px;
  top: 6px;
}
.logo img {
  width: 200px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}
.mobile-toggle {
  display: none;
  border: 0;
  background: var(--light);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 16px 36px rgba(201, 0, 32, 0.3);
}
.btn-red:hover,
.btn-yellow:hover,
.btn-outline:hover {
  transform: translateY(-3px);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 16px 35px rgba(255, 196, 0, 0.3);
}
.btn-outline {
  background: #fff;
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 72px;
  color: #fff;
  background: linear-gradient(
      135deg,
      rgba(94, 0, 15, 0.94),
      rgba(156, 0, 26, 0.9)
    ),
    url("https://images.unsplash.com/photo-1558655146-9f40138edfeb?auto=format&fit=crop&w=1600&q=80")
      center/cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(255, 196, 0, 0.22),
      transparent 22%
    ),
    radial-gradient(
      circle at 84% 18%,
      rgba(255, 255, 255, 0.13),
      transparent 22%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 94%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 58px;
}
.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
h1,
h2,
h3 {
  color: var(--black);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
h1 {
  color: #fff;
  font-size: clamp(44px, 5vw, 60px);
  margin-bottom: 20px;
}
/* h1 { color: #fff; font-size: clamp(44px, 5vw, 76px); margin-bottom: 20px; } */
.yellow {
  color: var(--yellow);
}
.red {
  color: var(--red);
}
.hero-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  margin-bottom: 22px;
}
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 16px;
}
.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0 30px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}
.check {
  width: 21px;
  height: 21px;
  min-width: 21px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.18);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 680px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 15px;
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}
.hero-stat:hover {
  transform: translateY(-5px);
}
.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 25px;
  line-height: 1;
}
.hero-stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.quote-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  animation: floatCard 5s ease-in-out infinite;
  margin: 20px 0;
}
.quote-head {
  background: var(--yellow);
  color: var(--black);
  padding: 24px 28px;
  text-align: center;
  position: relative;
}
.quote-head small {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 9px;
}
.quote-head h2 {
  font-size: 30px;
}
.quote-body {
  padding: 28px;
}
.form-grid {
  display: grid;
  gap: 12px;
}
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}
textarea {
  min-height: 105px;
  resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 0, 32, 0.09);
}
.secure-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 13px;
}
.form-success {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 900;
  text-align: center;
  font-size: 14px;
}

section {
  padding: 82px 0;
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}
.section-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
}

.proof-strip {
  padding: 30px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.proof-card {
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}
.proof-card strong {
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.proof-card span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.services {
  background: var(--light);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: 0.28s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 0, 32, 0.24);
}
.icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(201, 0, 32, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.filter-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--black);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.portfolio-card {
  overflow: hidden;
  padding: 0;
}
.portfolio-shot {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  background-image: url("images/1.webp");
  background-size: cover;
  /* background: linear-gradient(135deg, #111827, var(--red)); */
  position: relative;
}
.portfolio-shot::before {
  opacity: 0;
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 55px 0 rgba(255, 255, 255, 0.14),
    0 112px 0 rgba(255, 255, 255, 0.18), 0 168px 0 rgba(255, 255, 255, 0.1);
}
.portfolio-shot span {
  position: relative;
  z-index: 1;
}
.portfolio-card:nth-child(2) .portfolio-shot {
  background-image: url("images/2.webp");
  background-size: cover;
  /* background: linear-gradient(135deg, #111827, #f97316); */
}
.portfolio-card:nth-child(3) .portfolio-shot {
  background-image: url("images/3.webp");
  background-size: cover;
  /* background: linear-gradient(135deg, #1e1b4b, #db2777); */
}
.portfolio-card:nth-child(4) .portfolio-shot {
  background-image: url("images/4.webp");
  background-size: cover;
  /* background: linear-gradient(135deg, #064e3b, #06b6d4); */
}
.portfolio-card:nth-child(5) .portfolio-shot {
  background-image: url("images/5.webp");
  background-size: cover;
  /* background: linear-gradient(135deg, #312e81, #f59e0b); */
}
.portfolio-card:nth-child(6) .portfolio-shot {
  background-image: url("images/6.webp");
  background-size: cover;
  /* background: linear-gradient(135deg, #18181b, #7c3aed); */
}
.portfolio-body {
  padding: 18px;
}
.portfolio-body span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.red-band {
  padding: 54px 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.red-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.15);
  right: -120px;
  top: -160px;
}
.band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}
.band-grid h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
}
.band-grid p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
}
.band-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.pricing {
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, #fff, #fff9db);
  border: 1px solid #f2d355;
}
.price-card.featured {
  transform: translateY(-14px);
  border: 2px solid var(--red);
  box-shadow: 0 30px 80px rgba(201, 0, 32, 0.18);
}
.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 900;
}
.price {
  color: var(--red);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin: 16px 0;
}
.price small {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0;
}
.price-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin: 22px 0 28px;
}
.price-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.combo {
  background: linear-gradient(135deg, #111827, #3b0764 52%, var(--red));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.combo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(255, 196, 0, 0.16),
      transparent 20%
    ),
    radial-gradient(
      circle at 78% 34%,
      rgba(255, 255, 255, 0.1),
      transparent 18%
    );
}
.combo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.combo h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  text-transform: uppercase;
}
.combo h2 span {
  color: var(--yellow);
  display: block;
}
.combo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 24px 0 28px;
  list-style: none;
}
.combo-list li {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.combo-price {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 34px;
  backdrop-filter: blur(12px);
  text-align: center;
}
.combo-price strong {
  color: #fff;
  font-size: 76px;
  line-height: 1;
  letter-spacing: -0.08em;
}
.combo-price del {
  color: rgba(255, 255, 255, 0.55);
  font-size: 28px;
  display: block;
}
.combo-price p {
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 12px;
}

.testimonials {
  background: var(--red);
  color: #fff;
}
.testimonials .section-head h2,
.testimonials .eyebrow {
  color: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.testimonial p {
  color: rgba(255, 255, 255, 0.9);
}
.stars {
  color: var(--yellow);
  margin-bottom: 12px;
}
.person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #fff);
}

.faq {
  background: var(--light);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font: inherit;
  font-weight: 900;
  color: var(--black);
  cursor: pointer;
}
.faq-question span {
  transition: 0.25s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
  padding: 0 20px;
  font-size: 14px;
}
.faq-item.active .faq-answer {
  max-height: 180px;
  padding-bottom: 18px;
}
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}
.mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  min-height: 360px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.browser {
  border: 10px solid var(--black);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.browser-top {
  height: 36px;
  background: var(--black);
}
.browser-body {
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(135deg, #fff, #fff4f4);
}
.browser-body h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.final-cta {
  background: #fff;
}
.final-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.call-box {
  border-radius: 28px;
  background: linear-gradient(
      135deg,
      rgba(201, 0, 32, 0.9),
      rgba(143, 0, 24, 0.9)
    ),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=80")
      center/cover;
  color: #fff;
  padding: 42px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.call-box h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 16px;
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0;
  font-weight: 800;
}
.form-panel h2 {
  font-size: 44px;
  margin-bottom: 12px;
}
.form-panel p {
  color: var(--muted);
  margin-bottom: 22px;
}

footer {
  background: #05070d;
  color: #d1d5db;
  padding: 42px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 30px;
}
footer .logo {
  color: #fff;
  margin-bottom: 14px;
}
footer h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
}
footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: #9ca3af;
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 99;
  box-shadow: 0 18px 45px rgba(201, 0, 32, 0.38);
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-slider-only {
  display: none !important;
}

/* .swiper-button-next,
.swiper-button-prev {
  display:  none !important;
} */

/* Popup styles */
.popup-overlay {
  display: none; /* Hide by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: transparent;
  border-radius: 8px;
  padding: 20px;
  width: 600px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  z-index: 1;
}

.popup-content form {
  display: flex;
  flex-direction: column;
}

.popup-content input,
.popup-content select,
.popup-content textarea {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.popup-content button {
  background-color: #c90020;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #8f0018;
}

.popup-container {
  background: #fff;
  border-radius: 28px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.4s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.popup-header {
  background: var(--red, #c90020);
  color: white;
  padding: 25px 25px 15px;
  text-align: center;
  border-radius: 28px 28px 0 0;
  position: relative;
}
.popup-header h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 8px;
}
.popup-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}
.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: white;
  transition: 0.2s;
  line-height: 1;
}
.close-popup:hover {
  opacity: 0.7;
}
.popup-body {
  padding: 30px 25px;
}
/* Step 1 Styles */
.step-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.option-btn {
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.option-btn:hover {
  border-color: var(--red, #c90020);
  background: #fff;
  transform: translateX(5px);
}
.option-title {
  font-weight: 800;
  font-size: 18px;
  color: #0b0f19;
}
.option-price {
  font-weight: 900;
  color: var(--red, #c90020);
  font-size: 20px;
}
.option-desc {
  font-size: 13px;
  color: #667085;
  margin-top: 5px;
}
.popup-step {
  display: none;
}
.popup-step h4, 
.popup-step p {
  text-align: center;
}
.popup-step.active-step {
  display: block;
}
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}
.step-badge {
  font-size: 13px;
  font-weight: 700;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 30px;
  color: #334155;
}
.back-btn {
  background: none;
  border: none;
  color: #667085;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.back-btn:hover {
  color: var(--red);
}
.popup-body input,
.popup-body textarea,
.popup-body select {
  width: 100%;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  font-family: inherit;
  transition: 0.2s;
}
.popup-body input:focus,
.popup-body textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 0, 32, 0.1);
}
.popup-body .btn-red {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 16px;
}
.secure-note {
  text-align: center;
  font-size: 12px;
  color: #667085;
  margin-top: 15px;
}

::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

::-webkit-scrollbar {
  height: 8px;
  width: 6px;
  background: #c0100f;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #ffffff;
  border-radius: 10px;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(201, 0, 32, 0.3);
  }
  50% {
    box-shadow: 0 22px 56px rgba(201, 0, 32, 0.5);
  }
}
.btn-red {
  animation: pulse 2.8s ease-in-out infinite;
}

@media (max-width: 980px) {
  .hero-grid,
  .band-grid,
  .combo-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .proof-grid,
  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.featured {
    transform: none;
  }
  .band-actions {
    justify-content: flex-start;
  }
  .top-bar {
    display: none;
  }
  .call-box {
    order: 1;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 140px;
  }
  .top-bar .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  section {
    padding: 30px 0;
  }
  .hero {
    padding: 30px 0;
  }
  .hero-stats,
  .proof-grid,
  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonials-grid,
  .footer-grid,
  .combo-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
  }
  .sticky-mobile-cta {
    display: flex;
  }
  .eyebrow {
    font-size: 16px;
    line-height: 1.2;
  }
  .combo-list {
    gap: 10px;
  }
  .combo-list li {
    font-size: 14px;
  }
  #headerdesktopstats,
  #servicesDesktopGrid,
  #portfolioDesktopGrid,
  #pricingDesktopGrid,
  #testimonialDesktopGrid {
    display: none;
  }
  .mobile-slider-only {
    display: block !important;
  }
}
@media (max-width: 480px) {
  .popup-container { width: 95%; }
  .option-btn { padding: 14px 16px; }
}