/* LGI Calloyer — Light theme, Canvas Chrome structure */
:root {
  --primary: #00a3e0;
  --primary-dark: #0088bd;
  --text: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --soft: #f5f7fb;
  --border: #e8ecf2;
  --radius: 16px;
  --font: 'Inter', system-ui, sans-serif;
  --display: 'Space Grotesk', Inter, sans-serif;
  --shadow: 0 10px 40px rgba(15,23,42,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: .25s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.text-accent { color: var(--primary); }
.section { padding: 100px 0; }
.bg-soft { background: var(--soft); }
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.heading {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.lead-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .25s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0,163,224,0.25);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--border);
}
.btn-outline-dark:hover {
 background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: .3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(15,23,42,0.06);
}
.navbar { padding: 14px 0; }

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.brand-logo-sm {
  height: 40px;
  max-width: 180px;
}
.brand-logo-footer {
  height: 52px;
  max-width: 240px;
  filter: brightness(1.05);
}
.about-logo {
  position: relative;
  z-index: 2;
  max-width: 280px;
  width: 80%;
  height: auto;
  object-fit: contain;
}
.about-badge {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  box-shadow: var(--shadow);
  white-space: nowrap;
  z-index: 3;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text) !important;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0066aa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted) !important;
  padding: 8px 14px !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--text) !important; }
.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(0,163,224,0.3);
  padding: 8px 16px;
  border-radius: 50px;
}
.btn-wa-header:hover { background: rgba(0,163,224,0.08); color: var(--primary); }
.toggler-lines { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.toggler-lines span { height: 2px; background: var(--text); border-radius: 2px; }
.offcanvas .nav-link {
  font-size: 16px;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--border);
  color: var(--text) !important;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,163,224,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(0,100,180,0.05) 0%, transparent 40%),
    #fff;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-row {
  min-height: calc(100vh - 80px);
}
@media (max-width: 991.98px) {
  .hero-row {
    min-height: auto;
  }
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(36px, 6.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.orbit-btn {
  position: relative;
  width: 140px;
  height: 140px;
  display: block;
}
.orbit-svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
.orbit-txt { fill: var(--muted); font-size: 9px; letter-spacing: 2px; font-weight: 600; }
.orbit-core {
  position: absolute;
  inset: 28%;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 30px rgba(0,163,224,0.35);
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-phone {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  white-space: nowrap;
}
.hero-phone a:hover { color: var(--primary); }
.hero-scroll {
  position: absolute;
  left: 28px;
  bottom: 36px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--muted);
}
.hero-scroll .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

/* STATS */
.stats-bar {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--soft);
}
.stats-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.stat .n {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text);
}
.stat .p {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}
.stat .d { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ABOUT */
.about-box {
   position: relative;
    height: 380px;
    border-radius: 24px;
    background: url('https://lgicalloyer.in/images/about-us.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-glow {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,163,224,0.35), transparent 70%);
  filter: blur(10px);
}
.founder-chip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  min-width: 240px;
  border: 1px solid var(--border);
}
.founder-chip .av {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,163,224,0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.founder-chip strong { display: block; font-size: 14px; }
.founder-chip span { font-size: 12px; color: var(--muted); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pills span {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: #fff;
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.marquee-inner {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: mq 30s linear infinite;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
}
.marquee-inner span:nth-child(odd) { color: var(--text); }
@keyframes mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SERVICES */
.svc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: .3s ease;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0,163,224,0.3);
}
.svc-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,163,224,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.svc h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.svc ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0 6px 14px;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}
.svc ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

/* WORKS — Featured + desktop */
.work-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: .3s ease;
}
.work-feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.work-media {
  height: 280px;
  overflow: hidden;
  background: #eef2f7;
}
.work-media.tall { height: 200px; }
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 8s ease;
}
.work-feature:hover .work-media img {
  transform: translateY(-30%);
}
.work-meta { padding: 24px; }
.work-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}
.work-meta h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin: 8px 0 10px;
}
.work-meta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.work-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.work-link:hover { gap: 10px; }

.desk-mockup {
  max-width: 340px;
  margin: 0 auto 8px;
  cursor: pointer;
}
.desk-bezel {
  background: linear-gradient(165deg, #2d3748, #1a202c);
  border-radius: 12px 12px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 20px 40px rgba(15,23,42,0.15);
}
.desk-screen {
  height: 230px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  background: #111;
  position: relative;
}
.desk-scroll-content {
  position: absolute;
  top: 0; left: 0; width: 100%;
  transition: transform 6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.desk-mockup:hover .desk-scroll-content {
  transform: translateY(calc(-100% + 230px));
}
.desk-shot {
  width: 100%;
  height: auto;
  min-height: 230px;
  object-fit: cover;
  object-position: top center;
}
.desk-stand {
  width: 26%; height: 14px;
  margin: 0 auto;
  background: linear-gradient(180deg, #4a5568, #2d3748);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}
.desk-base {
  width: 40%; height: 6px;
  margin: 0 auto;
  background: #1a202c;
  border-radius: 0 0 4px 4px;
}
.desk-info { text-align: center; margin-top: 16px; }
.desk-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.desk-info span { font-size: 12px; color: var(--primary); }

/* PROCESS */
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: .3s ease;
}
.step:hover { border-color: rgba(0,163,224,0.35); box-shadow: var(--shadow); }
.step-no {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  color: rgba(0,163,224,0.2);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

/* PRICING */
.price {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: .3s ease;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(0,163,224,0.12);
}
.badge-pop {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.price h4 { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.price > p { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.amt {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
.amt span { font-size: 22px; }
.old { font-size: 13px; color: var(--muted); text-decoration: line-through; margin: 4px 0 18px; }
.per { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.price ul { margin-bottom: 22px; }
.price ul li {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}
.price ul li::before { content: '✓ '; color: var(--primary); font-weight: 700; }

/* TESTIMONIALS */
.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 8px;
  height: 100%;
}
.testi p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi strong { display: block; font-size: 14px; }
.testi span { font-size: 12px; color: var(--muted); }
.swiper-pagination-bullet { background: #cbd5e1; opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary); width: 24px; border-radius: 4px; }

/* CONTACT */
.cinfo { margin-top: 24px; }
.cinfo li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--muted);
}
.cinfo li i { color: var(--primary); width: 18px; }
.cinfo a:hover { color: var(--primary); }
.cform .form-control {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  background: var(--soft);
}
.cform .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,163,224,0.12);
  background: #fff;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 70px 0 0;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.footer p { font-size: 14px; max-width: 280px; line-height: 1.7; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}
.social a:hover { background: var(--primary); color: #fff; }
.footer h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; font-size: 13px; }
.footer ul a { color: #94a3b8; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 12px; max-width: none; }

.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.back-top {
  position: fixed;
  bottom: 100px; right: 36px;
  width: 42px; height: 42px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--primary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 998;
  box-shadow: var(--shadow);
}
.back-top.visible { opacity: 1; visibility: visible; }


/* ========== RESPONSIVE ========== */
@media (max-width: 1199.98px) {
  .hero-phone,
  .hero-scroll {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 64px 0;
  }
  .btn-wa-header {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 48px;
  }
  .hero-row {
  min-height: calc(100vh - 80px);
}
@media (max-width: 991.98px) {
  .hero-row {
    min-height: auto;
  }
}
.hero-title {
    font-size: clamp(30px, 7.5vw, 44px);
    letter-spacing: -0.8px;
    word-break: break-word;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-btns {
    gap: 10px;
  }
  .heading {
    font-size: clamp(24px, 5vw, 34px);
  }
  .work-media {
    height: 200px;
  }
  .work-media.tall {
    height: 180px;
  }
  .about-box {
    height: 280px;
    margin-bottom: 8px;
  }
  .navbar {
    padding: 10px 0;
  }
  .container-fluid.px-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 70px;
  }
  .section {
    padding: 52px 0;
  }
  .hero {
    padding: 88px 0 40px;
  }
  .hero-row {
  min-height: calc(100vh - 80px);
}
@media (max-width: 991.98px) {
  .hero-row {
    min-height: auto;
  }
}
.hero-title {
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.65;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .btn-lg {
    padding: 13px 24px;
    font-size: 14px;
  }
  .stats-bar {
    padding: 36px 0;
  }
  .stat .n {
    font-size: 28px;
  }
  .stat .p {
    font-size: 20px;
  }
  .stat .d {
    font-size: 11px;
  }
  .stats-label {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .svc {
    padding: 24px 20px;
  }
  .svc h3 {
    font-size: 16px;
  }
  .work-meta {
    padding: 18px;
  }
  .work-meta h3 {
    font-size: 17px;
  }
  .price {
    padding: 28px 22px;
  }
  .amt {
    font-size: 36px;
  }
  .testi {
    padding: 24px;
    margin: 4px;
  }
  .footer {
    padding: 48px 0 0;
  }
  .footer-bottom {
    margin-top: 32px;
    padding: 18px 0;
  }
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 16px;
    font-size: 24px;
  }
  .back-top {
    bottom: 80px;
    right: 22px;
    width: 38px;
    height: 38px;
  }
  .desk-mockup {
    max-width: 100%;
  }
  .desk-screen {
    height: 200px;
  }
  .desk-mockup:hover .desk-scroll-content {
    transform: translateY(calc(-100% + 200px));
  }
  .marquee-inner {
    font-size: 14px;
    gap: 18px;
  }
  .step {
    padding: 22px 18px;
  }
  .step-no {
    font-size: 32px;
  }
  .cform .form-control {
    padding: 12px 14px;
  }
  .founder-chip {
    min-width: 200px;
    padding: 12px 14px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    height: 36px;
    max-width: 160px;
  }
  .about-logo {
    max-width: 200px;
  }
  .about-badge {
    font-size: 10px;
    padding: 6px 12px;
    bottom: 16px;
  }

  .hero-row {
  min-height: calc(100vh - 80px);
}
@media (max-width: 991.98px) {
  .hero-row {
    min-height: auto;
  }
}
.hero-title {
    font-size: 28px;
  }
  .heading {
    font-size: 24px;
  }
  .lead-text {
    font-size: 14px;
  }
  .about-box {
    height: 240px;
  }
  .pills span {
    font-size: 11px;
    padding: 5px 10px;
  }
  .work-media {
    height: 180px;
  }
  .desk-screen {
    height: 180px;
  }
  .desk-mockup:hover .desk-scroll-content {
    transform: translateY(calc(-100% + 180px));
  }
  .desk-bezel {
    padding: 8px 8px 0;
  }
  .brand-text {
    font-size: 15px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .section {
    padding: 44px 0;
  }
  .tag {
    font-size: 11px;
  }
  .price-card,
  .price {
    max-width: 100%;
  }
  .col-6.col-md-3 .stat .n {
    font-size: 26px;
  }
}

/* Prevent horizontal scroll on all devices */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
.row > [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 576px) {
  .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Touch-friendly mockups: auto-scroll hint on mobile via max height */
@media (hover: none) {
  .desk-mockup .desk-scroll-content {
    animation: none;
  }
  .work-feature:hover .work-media img {
    transform: none;
  }
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }

  .popup-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 32px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
  }

  .close-btn:hover {
    background: #ff4444;
  }