:root {
  --orange: #EE501B;
  --orange-dark: #c43d0e;
  --ink: #151515;
  --muted: #5f6368;
  --line: rgba(20, 20, 20, 0.08);
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(22, 25, 31, 0.12);
  --soft-shadow: 0 14px 36px rgba(30, 30, 30, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Noto Sans Devanagari", "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(238, 80, 27, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 10%, rgba(255, 182, 145, 0.22), transparent 22rem),
    linear-gradient(180deg, #fbfbfd 0%, #f4f5f7 48%, #ffffff 100%);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.36) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 65%);
}

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

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

#trust,
#buyer-guide,
#daily-help,
#quick-check,
#command-downloads,
#diagnosis-form,
#service-options,
#service-booking,
#cctv-calculator,
#student-corner,
#local-trust,
#whatsapp-channel,
#emi-calculator,
#products,
#contact {
  scroll-margin-top: 112px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1120px, calc(100% - 24px));
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(31, 35, 40, 0.08);
  backdrop-filter: blur(22px);
}

.app-prompt {
  position: fixed;
  left: 50%;
  top: 86px;
  z-index: 35;
  width: min(680px, calc(100% - 24px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 60px rgba(22, 25, 31, 0.16);
  backdrop-filter: blur(22px);
  transform: translate(-50%, -16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.app-prompt.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.app-prompt-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(145deg, var(--orange), #ff8b5d);
  box-shadow: 0 12px 24px rgba(238, 80, 27, 0.24);
}

.app-prompt strong {
  display: block;
  font-size: 0.96rem;
}

.app-prompt p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.app-prompt-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-prompt button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff;
  background: var(--orange);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.app-prompt .prompt-close {
  width: 38px;
  padding: 0;
  color: #1f2328;
  background: rgba(31, 35, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, var(--orange), #ff8b5d);
  box-shadow: 0 10px 24px rgba(238, 80, 27, 0.26);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 1px;
}

.top-nav {
  display: none;
  align-items: center;
  gap: 20px;
  color: #383b40;
  font-size: 0.95rem;
}

.top-nav a {
  transition: color 180ms ease;
}

.top-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 750;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(238, 80, 27, 0.22);
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 74px 0 46px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 10vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.subheadline {
  max-width: 690px;
  margin: 20px 0 0;
  color: #393d43;
  font-size: clamp(1.05rem, 3.9vw, 1.48rem);
  line-height: 1.6;
}

.hero-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-icon-button {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #ff8b5d);
  box-shadow: 0 16px 34px rgba(238, 80, 27, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-icon-button:nth-child(2) {
  background: linear-gradient(145deg, #1877f2, #4b9bff);
  box-shadow: 0 16px 34px rgba(24, 119, 242, 0.2);
}

.social-icon-button:hover {
  transform: translateY(-2px);
}

.social-icon-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-button:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #ff7b47);
  box-shadow: 0 18px 34px rgba(238, 80, 27, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 24px 45px rgba(238, 80, 27, 0.32);
}

.btn-secondary {
  color: #202124;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 20, 20, 0.08);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #3b3f44;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 22px rgba(25, 28, 33, 0.06);
}

.hero-visual {
  min-height: 400px;
}

.device-stage {
  position: relative;
  min-height: 420px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.device-stage::before,
.device-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.device-stage::before {
  width: 220px;
  height: 220px;
  right: -70px;
  top: -64px;
  background: rgba(238, 80, 27, 0.14);
}

.device-stage::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: -54px;
  background: rgba(27, 31, 36, 0.08);
}

.device {
  position: absolute;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(244, 246, 248, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 54px rgba(21, 24, 28, 0.16);
}

.laptop {
  left: 24px;
  right: 24px;
  bottom: 66px;
  height: 218px;
  border-radius: 26px;
  padding: 16px;
  animation: floaty 7s ease-in-out infinite;
}

.screen {
  height: 100%;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(238, 80, 27, 0.12), transparent 45%),
    linear-gradient(160deg, #202124, #575c65);
  color: #fff;
  padding: 24px;
  overflow: hidden;
}

.screen span {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(145deg, var(--orange), #ff9d74);
}

.screen strong,
.screen small {
  display: block;
}

.screen strong {
  font-size: 1.35rem;
}

.screen small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
}

.base {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -16px;
  height: 18px;
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, #d8dadd, #f7f7f8);
  box-shadow: 0 14px 24px rgba(20, 22, 26, 0.12);
}

.phone {
  right: 28px;
  top: 38px;
  width: 140px;
  height: 224px;
  border-radius: 34px;
  padding: 48px 16px 16px;
  text-align: center;
  animation: floaty 6s ease-in-out -1.4s infinite;
}

.phone-top {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 48px;
  height: 7px;
  border-radius: 999px;
  background: #1e2024;
  transform: translateX(-50%);
}

.phone strong,
.phone small {
  display: block;
}

.phone strong {
  margin-top: 32px;
  font-size: 1rem;
}

.phone small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.pulse-dot {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #22c55e;
  transform: translateX(-50%);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.42);
  animation: pulse 1.8s infinite;
}

.floating-chip {
  position: absolute;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: #202124;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
  animation: floaty 8s ease-in-out infinite;
}

.chip-one {
  left: 28px;
  top: 52px;
}

.chip-two {
  left: 42%;
  top: 122px;
  animation-delay: -2s;
}

.chip-three {
  right: 26px;
  bottom: 40px;
  animation-delay: -4s;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 8px 0 54px;
}

.trust-card,
.product-card,
.student-card,
.issue-card,
.contact-card,
.map-card,
.tool-panel,
.tool-result,
.service-note,
.local-trust,
.channel-section,
.conversion-strip {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.trust-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-radius: 8px;
  padding: 18px;
}

.trust-card strong {
  font-size: 1.55rem;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.products,
.buyer-guide,
.daily-help,
.problem-page-section,
.service-booking,
.cctv-calculator,
.student-corner,
.emi-section,
.contact {
  padding: 46px 0 72px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2,
.conversion-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.85rem);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  gap: 14px;
}

.problem-page-hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 62px 0 46px;
}

.problem-page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.45rem, 9vw, 5.25rem);
}

.problem-hero-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 82% 14%, rgba(238, 80, 27, 0.16), transparent 16rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  overflow: hidden;
}

.problem-hero-card::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 24px;
  width: 86px;
  height: 64px;
  border: 5px solid #1f2328;
  border-radius: 10px;
  box-shadow: 0 22px 0 -15px var(--orange);
}

.problem-hero-card::after {
  content: "";
  position: absolute;
  top: 108px;
  left: 58px;
  width: 24px;
  height: 34px;
  border-bottom: 5px solid var(--orange);
  border-left: 5px solid var(--orange);
  border-right: 5px solid var(--orange);
}

.problem-hero-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 6vw, 2.8rem);
  line-height: 1.08;
}

.computer-issue-grid {
  display: grid;
  gap: 14px;
}

.issue-card {
  min-height: 342px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at top right, rgba(238, 80, 27, 0.08), transparent 12rem);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.issue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 80, 27, 0.22);
  box-shadow: 0 22px 48px rgba(21, 24, 28, 0.12);
}

.issue-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

.issue-card p {
  margin: 12px 0 4px;
  color: var(--muted);
  line-height: 1.62;
}

.diagnostic-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 92% 14%, rgba(238, 80, 27, 0.11), transparent 18rem);
}

.command-warning {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  border: 1px solid rgba(238, 80, 27, 0.16);
  border-radius: 8px;
  padding: 16px;
  color: #5b3a2f;
  background: rgba(238, 80, 27, 0.08);
}

.command-warning strong {
  color: #2c3035;
}

.command-warning span {
  line-height: 1.55;
}

.mac-open-guide {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(31, 35, 40, 0.08);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at top right, rgba(31, 35, 40, 0.08), transparent 14rem);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.mac-open-guide h3 {
  margin: 0;
  font-size: clamp(1.45rem, 5vw, 2.25rem);
  line-height: 1.08;
}

.mac-open-guide ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #24272c;
  line-height: 1.55;
  font-weight: 700;
}

.mac-open-guide p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.command-panels {
  display: grid;
  gap: 18px;
}

.command-panel {
  min-width: 0;
}

.command-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.command-panel-head > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--orange), #ff8b5d);
  box-shadow: 0 16px 30px rgba(238, 80, 27, 0.2);
  font-weight: 900;
}

.command-panel-mac .command-panel-head > span {
  background: linear-gradient(145deg, #1f2328, #5f6368);
  box-shadow: 0 16px 30px rgba(31, 35, 40, 0.16);
}

.command-panel-head h3 {
  margin: 0;
  font-size: clamp(1.55rem, 5vw, 2.3rem);
  line-height: 1.05;
}

.command-list {
  display: grid;
  gap: 10px;
}

.command-item {
  display: grid;
  gap: 12px;
  align-items: center;
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 100% 0, rgba(238, 80, 27, 0.07), transparent 10rem);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.command-item strong,
.command-item small {
  display: block;
}

.command-item strong {
  font-size: 1rem;
  line-height: 1.22;
}

.command-item small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.download-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(238, 80, 27, 0.2);
  font-weight: 850;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.download-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.seo-hub-hero,
.seo-article {
  padding: 64px 0 54px;
}

.seo-hub-hero h1,
.seo-article h1 {
  max-width: 940px;
  font-size: clamp(2.5rem, 9vw, 5.3rem);
}

.seo-lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: #393d43;
  font-size: clamp(1.04rem, 3.6vw, 1.34rem);
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.seo-actions {
  margin-bottom: 30px;
}

.seo-card,
.seo-related {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
}

.seo-card h2,
.seo-related h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  line-height: 1.1;
}

.seo-card p,
.seo-card li {
  color: #393d43;
  line-height: 1.68;
}

.seo-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.seo-warning-card {
  border-color: rgba(238, 80, 27, 0.16);
  background: rgba(238, 80, 27, 0.08);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
}

.faq-list summary {
  cursor: pointer;
  color: #24272c;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
}

.seo-hub-section {
  padding: 18px 0 54px;
}

.seo-link-grid {
  display: grid;
  gap: 12px;
}

.seo-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 116px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at top right, rgba(238, 80, 27, 0.07), transparent 12rem);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(22px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.seo-link-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 80, 27, 0.22);
}

.seo-link-grid strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.seo-link-grid span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.prompt-language {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.prompt-language select {
  min-height: 38px;
  border: 1px solid rgba(20, 20, 20, 0.09);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

.prompt-tool-page {
  display: grid;
  gap: 18px;
  align-items: start;
  padding: 62px 0 34px;
}

.prompt-tool-copy {
  align-self: center;
}

.prompt-tool-panel,
.prompt-output-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at top right, rgba(238, 80, 27, 0.1), transparent 18rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.prompt-options {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.54);
}

.prompt-options legend {
  color: #2c3035;
  font-weight: 850;
  padding-inline: 6px;
}

.prompt-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #343943;
  line-height: 1.4;
}

.prompt-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.prompt-submit {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.prompt-output-section {
  padding: 18px 0 42px;
}

#aiPromptOutput {
  width: 100%;
  min-height: 340px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font: inherit;
  line-height: 1.55;
  resize: vertical;
  outline: none;
}

.prompt-download-actions,
.prompt-history-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.prompt-download-actions button,
.prompt-history-search button,
.prompt-history-card button {
  min-height: 44px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  padding: 11px 14px;
  color: #202124;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.prompt-history-search input {
  flex: 1 1 240px;
  min-height: 44px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  outline: none;
}

.prompt-history-card {
  gap: 8px;
}

.prompt-history-card button {
  width: fit-content;
}

.prompt-toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 60;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: #111318;
  box-shadow: var(--shadow);
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.prompt-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tool-panel {
  display: grid;
  gap: 16px;
  border-radius: 8px;
  padding: 14px;
}

.problem-panel,
.booking-panel,
.cctv-panel,
.emi-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at top right, rgba(238, 80, 27, 0.1), transparent 16rem);
}

.problem-list {
  display: grid;
  gap: 10px;
}

.problem-chip {
  min-height: 54px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  padding: 12px 14px;
  color: #25282d;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 24px rgba(31, 35, 40, 0.06);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.problem-chip:hover,
.problem-chip.is-active {
  color: var(--orange);
  border-color: rgba(238, 80, 27, 0.28);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
}

.tool-result,
.service-note {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.tool-result h3,
.service-note h3,
.student-card h3,
.local-trust h2,
.channel-section h2 {
  margin: 0;
  line-height: 1.08;
}

.tool-result h3,
.service-note h3 {
  font-size: clamp(1.55rem, 5vw, 2.55rem);
}

.tool-result p,
.service-note p,
.student-card p,
.local-trust p,
.channel-section p {
  color: var(--muted);
  line-height: 1.65;
}

.compact-form {
  grid-template-columns: 1fr;
}

.compact-form input {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  outline: none;
}

.compact-form input:focus {
  border-color: rgba(238, 80, 27, 0.42);
  box-shadow: 0 0 0 4px rgba(238, 80, 27, 0.1);
}

.wide-field {
  grid-column: 1 / -1;
}

.student-grid {
  display: grid;
  gap: 14px;
}

.student-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 22px;
  overflow: hidden;
}

.student-card::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(145deg, var(--orange), #ff9c72);
  box-shadow: 0 16px 30px rgba(238, 80, 27, 0.2);
}

.student-card h3 {
  font-size: 1.45rem;
}

.student-card > span {
  display: inline-flex;
  width: fit-content;
  margin: 2px 0 20px;
  border-radius: 999px;
  padding: 8px 11px;
  color: #5b3a2f;
  background: rgba(238, 80, 27, 0.09);
  font-weight: 850;
  font-size: 0.9rem;
}

.local-trust,
.channel-section {
  display: grid;
  gap: 22px;
  align-items: center;
  border-radius: 8px;
  padding: 26px;
  margin-block: 14px 72px;
}

.local-trust h2,
.channel-section h2 {
  font-size: clamp(2rem, 6vw, 3.45rem);
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-proof-grid div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 20, 0.07);
}

.trust-proof-grid strong {
  font-size: 1.55rem;
}

.trust-proof-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.channel-section {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 92% 18%, rgba(34, 197, 94, 0.18), transparent 18rem);
}

.channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-social-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.guide-panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.guide-form,
.guide-result {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--soft-shadow);
}

.guide-form {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.guide-form label {
  display: grid;
  gap: 8px;
}

.guide-form label span {
  color: #2c3035;
  font-weight: 800;
  font-size: 0.94rem;
}

.guide-form select,
.guide-form input,
.guide-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-helper {
  margin: 0;
  padding: 13px;
  border-radius: 8px;
  color: #5b3a2f;
  background: rgba(238, 80, 27, 0.08);
  border: 1px solid rgba(238, 80, 27, 0.16);
  line-height: 1.55;
  font-size: 0.94rem;
}

.guide-form textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.55;
}

.guide-form select:focus,
.guide-form input:focus,
.guide-form textarea:focus {
  border-color: rgba(238, 80, 27, 0.42);
  box-shadow: 0 0 0 4px rgba(238, 80, 27, 0.1);
}

.quick-use {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-use button {
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 999px;
  padding: 9px 12px;
  color: #25282d;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.quick-use button:hover {
  color: var(--orange);
  border-color: rgba(238, 80, 27, 0.26);
  transform: translateY(-1px);
}

.guide-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.guide-result {
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
}

.result-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-result h3 {
  margin: 0;
  font-size: clamp(1.55rem, 6vw, 2.45rem);
  line-height: 1.08;
}

.guide-result p {
  color: var(--muted);
  line-height: 1.65;
}

.result-specs {
  display: grid;
  gap: 9px;
  margin: 16px 0;
}

.result-specs span {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 10px 12px;
  color: #24272c;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 20, 20, 0.07);
}

.estimate-note {
  margin-top: auto;
  padding: 13px;
  border-radius: 8px;
  color: #5b3a2f;
  background: rgba(238, 80, 27, 0.08);
  border: 1px solid rgba(238, 80, 27, 0.16);
  font-size: 0.94rem;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.54fr;
  gap: 9px;
  margin-top: auto;
}

.contact-actions.result-actions {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.product-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 22px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 122px;
  height: 122px;
  border-radius: 999px;
  background: rgba(238, 80, 27, 0.08);
  transition: transform 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 80, 27, 0.22);
  box-shadow: 0 22px 48px rgba(21, 24, 28, 0.12);
}

.product-card:hover::after {
  transform: scale(1.18);
}

.product-card h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
}

.product-card p {
  margin: 12px 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.product-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #eef0f3);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 28px rgba(31, 35, 40, 0.1);
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
}

.laptop-icon::before {
  inset: 19px 13px 28px;
  border: 4px solid #22252a;
  border-radius: 5px;
}

.laptop-icon::after {
  left: 11px;
  right: 11px;
  bottom: 18px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}

.desktop-icon::before {
  inset: 16px 18px 24px;
  border: 4px solid #22252a;
  border-radius: 4px;
}

.desktop-icon::after {
  left: 25px;
  right: 25px;
  bottom: 15px;
  height: 12px;
  border-bottom: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
}

.printer-icon::before {
  left: 15px;
  right: 15px;
  top: 26px;
  height: 25px;
  border: 4px solid #22252a;
  border-radius: 8px;
}

.printer-icon::after {
  left: 20px;
  right: 20px;
  top: 15px;
  height: 18px;
  border-radius: 4px;
  background: var(--orange);
}

.cctv-icon::before {
  left: 16px;
  top: 20px;
  width: 34px;
  height: 22px;
  border-radius: 9px;
  background: #22252a;
  transform: rotate(-12deg);
}

.cctv-icon::after {
  right: 13px;
  top: 31px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: -20px 13px 0 -3px var(--orange);
}

.gps-icon::before {
  left: 19px;
  top: 12px;
  width: 34px;
  height: 44px;
  border-radius: 19px 19px 19px 4px;
  background: #22252a;
  transform: rotate(-45deg);
}

.gps-icon::after {
  left: 30px;
  top: 23px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
}

.accessories-icon::before {
  left: 18px;
  top: 18px;
  width: 36px;
  height: 25px;
  border-radius: 10px;
  border: 4px solid #22252a;
}

.accessories-icon::after {
  left: 24px;
  right: 24px;
  bottom: 17px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: -9px -4px 0 -2px #22252a, 9px -4px 0 -2px #22252a;
}

.product-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(238, 80, 27, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.product-cta:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
}

.product-call {
  background: #1f2328;
  box-shadow: 0 14px 28px rgba(31, 35, 40, 0.18);
  line-height: 1.15;
}

.product-call:hover {
  background: #111318;
}

.conversion-strip {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-block: 20px 42px;
  border-radius: 8px;
  padding: 28px;
}

.conversion-strip h2 {
  font-size: clamp(1.9rem, 7vw, 3.2rem);
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-card,
.map-card {
  border-radius: 8px;
  overflow: hidden;
}

.contact-card {
  padding: 24px;
}

.contact-card h3 {
  margin: 0 0 18px;
  font-size: 1.35rem;
}

.contact-card > a {
  display: block;
  padding: 15px 0;
  color: #25282d;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.map-card {
  position: relative;
  min-height: 360px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-open-link {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(238, 80, 27, 0.24);
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 92px;
  padding: 24px 0;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.sticky-contact {
  position: fixed;
  z-index: 30;
  bottom: 18px;
  min-width: 128px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 14px 20px;
  color: #fff;
  font-weight: 850;
  box-shadow: 0 18px 36px rgba(20, 22, 26, 0.18);
}

.sticky-call {
  left: 16px;
  background: #1f2328;
}

.sticky-whatsapp {
  right: 16px;
  background: var(--orange);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 760px) {
  .top-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.82fr);
    padding-top: 86px;
  }

  .prompt-tool-page {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    padding-top: 78px;
  }

  .problem-page-hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.82fr);
    padding-top: 78px;
  }

  .trust-band {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .computer-issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-panel,
  .guide-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 18px;
  }

  .compact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .student-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .local-trust,
  .channel-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    padding: 34px;
  }

  .conversion-strip {
    grid-template-columns: 1fr auto;
    padding: 34px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .computer-issue-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card {
    min-height: 344px;
  }
}

@media (max-width: 430px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    border-radius: 22px;
    top: 8px;
    gap: 8px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    padding-inline: 13px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
    line-height: 1.02;
  }

  .section-heading h2,
  .conversion-strip h2,
  .local-trust h2,
  .channel-section h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions .btn,
  .channel-actions .btn,
  .social-actions .btn {
    width: 100%;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .device-stage {
    min-height: 360px;
  }

  .laptop {
    left: 16px;
    right: 16px;
    bottom: 50px;
    height: 190px;
  }

  .phone {
    right: 18px;
    top: 26px;
    width: 116px;
    height: 192px;
    padding-top: 40px;
  }

  .chip-two {
    left: 28px;
    top: 96px;
  }

  .sticky-contact {
    min-width: 104px;
    min-height: 50px;
    padding-inline: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    font-size: 0.92rem;
  }

  .app-prompt {
    top: auto;
    bottom: calc(78px + env(safe-area-inset-bottom));
    grid-template-columns: auto 1fr;
    border-radius: 16px;
  }

  .app-prompt-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 42px;
  }

  .app-prompt button {
    width: 100%;
  }

  .social-icon-button {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .download-cta {
    width: 100%;
  }

  .prompt-language span {
    display: none;
  }

  .prompt-language select {
    max-width: 142px;
  }

  .prompt-download-actions button,
  .prompt-history-search button,
  .prompt-history-card button {
    width: 100%;
  }
}
