/* Home Automation Hyderabad landing page */

.lp-page {
  --lp-gold: #c1983d;
  --lp-gold-2: #e2c070;
  --lp-ink: #07070b;
  --lp-panel: #101016;
  --lp-line: rgba(255, 255, 255, 0.1);
  background: var(--lp-ink);
  color: #f3f1ea;
  overflow: hidden;
}

.lp-page a { color: inherit; }

.lp-section { scroll-margin-top: 5.5rem; }

.lp-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lp-gold-2);
}

.lp-kicker::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--lp-gold);
}

.lp-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.lp-lead {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.lp-gold { color: var(--lp-gold-2); }

/* Hero */
.lp-hero {
  position: relative;
  min-height: 100vh;
  padding: 7.5rem 0 4.5rem;
  isolation: isolate;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 42%;
  filter: brightness(0.55) saturate(0.72) contrast(1.08);
}

.lp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 5, 8, 0.88) 0%, rgba(5, 5, 8, 0.62) 34%, rgba(5, 5, 8, 0.28) 58%, rgba(5, 5, 8, 0.4) 100%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.4) 0%, transparent 32%, rgba(5, 5, 8, 0.62) 100%);
}

.lp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1.3fr minmax(260px, 360px);
    gap: 1.75rem;
    align-items: center;
  }
}

.lp-hero-copy { position: relative; }

.lp-hero h1 { margin-bottom: 1.1rem; }

.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0 1.6rem;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(226, 192, 112, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  color: #f6ead0;
}

.lp-chip-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lp-gold);
  box-shadow: 0 0 10px var(--lp-gold);
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.lp-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.85rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.lp-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.lp-hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.lp-hero-note a {
  color: var(--lp-gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Lead card */
.lp-card {
  position: relative;
  z-index: 4;
  background: #fff;
  color: #1a1a1a;
  border-radius: 1.4rem;
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(193, 152, 61, 0.2);
}

@media (min-width: 768px) {
  .lp-card { padding: 1.7rem 1.7rem 1.85rem; }
}

.lp-hero-grid .lp-card {
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 1.1rem;
}

@media (min-width: 768px) {
  .lp-hero-grid .lp-card { padding: 1.05rem 1.15rem 1.2rem; }
}

.lp-hero-grid .lp-card h2 {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.lp-hero-grid .lp-card-sub {
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

.lp-hero-grid .lp-form { gap: 0.5rem; }

.lp-hero-grid .lp-form label {
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}

.lp-hero-grid .lp-input {
  padding: 0.5rem 0.7rem;
  font-size: 0.85rem;
  border-radius: 0.6rem;
}

.lp-hero-grid .lp-form textarea.lp-input { min-height: 2.4rem; }

.lp-hero-grid .lp-submit {
  padding: 0.7rem 0.85rem;
  font-size: 0.75rem;
  border-radius: 0.7rem;
}

.lp-hero-grid .lp-form-foot {
  margin-top: 0.45rem;
  font-size: 0.68rem;
}

@media (min-width: 480px) {
  .lp-hero-grid .lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}

.lp-card h2,
.lp-card h3 {
  color: #111;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.lp-card-sub {
  color: #5f6368;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  line-height: 1.5;
}

.lp-form { display: grid; gap: 0.85rem; }

.lp-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3c4043;
  margin-bottom: 0.35rem;
}

.lp-req { color: #d93025; }

.lp-input {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 1px solid #dadce0;
  border-radius: 0.75rem;
  background: #fff;
  color: #202124;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-input:focus {
  outline: none;
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 3px rgba(193, 152, 61, 0.22);
}

.lp-form textarea.lp-input { resize: none; min-height: 4.6rem; }

.lp-error {
  padding: 0.7rem 0.85rem;
  border-radius: 0.7rem;
  background: #fce8e6;
  border: 1px solid #f5c6c2;
  color: #c5221f;
  font-size: 0.85rem;
}

.lp-error.hidden { display: none; }

.lp-submit {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-form-foot {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: #80868b;
  text-align: center;
}

/* Trust strip */
.lp-trust {
  position: relative;
  z-index: 3;
  margin-top: -1.5rem;
  padding-bottom: 1rem;
}

.lp-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--lp-line);
  border-radius: 1.2rem;
  background: rgba(16, 16, 22, 0.86);
  backdrop-filter: blur(16px);
}

@media (min-width: 900px) {
  .lp-trust-row { grid-template-columns: repeat(4, 1fr); padding: 1.1rem 0.5rem; }
}

.lp-trust-item {
  text-align: center;
  padding: 0.55rem 0.4rem;
}

.lp-trust-item strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.lp-trust-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* 3D stage */
.lp-stage-section {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(193, 152, 61, 0.16), transparent 55%),
    #07070b;
}

.lp-stage-head {
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.lp-stage-head .lp-lead { margin-inline: auto; }

.lp-stage-frame {
  overflow: visible;
  height: min(80vh, 640px);
  margin: 1.5rem 0 2.25rem;
  position: relative;
  z-index: 0;
}

.lp-stage-note {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
}

.lp-stage {
  position: relative;
  height: 100%;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.lp-stage-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  display: grid;
  place-items: center;
  will-change: transform;
}

.lp-stage-glow {
  position: absolute;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 152, 61, 0.32), transparent 68%);
  filter: blur(8px);
  z-index: 0;
}

.lp-stage-phone {
  position: relative;
  z-index: 4;
  width: min(118px, 26vw);
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.45));
}

.lp-orbit {
  position: absolute;
  inset: 8%;
  transform-style: preserve-3d;
}

.lp-orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(52px, 8vw, 88px);
  margin: 0;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r, 200px)) rotate(calc(var(--a) * -1));
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
}

.lp-orbit-item img { width: 100%; height: auto; display: block; }

.lp-orbit-item figcaption {
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-gold-2);
  text-shadow: 0 2px 8px #000;
}

@media (max-width: 767px) {
  .lp-stage-frame { height: 480px; }
  .lp-orbit-item { --r: 132px; width: 64px; }
  .lp-orbit-item figcaption { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-orbit-item { animation: none; }
}

/* Systems */
.lp-systems {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(180deg, #07070b 0%, #0d0d12 100%);
}

.lp-systems-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  perspective: 1200px;
}

@media (min-width: 700px) {
  .lp-systems-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .lp-systems-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-sys {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
  min-height: 280px;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--lp-line);
  transform-style: preserve-3d;
  will-change: transform;
}

.lp-sys img.lp-sys-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.7s ease;
}

.lp-sys::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 11, 0.1) 20%, rgba(7, 7, 11, 0.88) 100%);
}

.lp-sys:hover img.lp-sys-bg { transform: scale(1.12); }

.lp-sys-icon {
  position: absolute;
  top: 1rem;
  right: 0.7rem;
  width: 64px;
  z-index: 2;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  background: transparent;
}

.lp-sys-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.2rem 1.3rem;
}

.lp-sys-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.lp-sys-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin-bottom: 0.7rem;
}

.lp-sys-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-gold-2);
}

/* Steps / why */
.lp-alt {
  padding: 4.5rem 0;
  background: #0b0b10;
  border-top: 1px solid var(--lp-line);
}

.lp-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .lp-steps { grid-template-columns: repeat(3, 1fr); }
}

.lp-step {
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid var(--lp-line);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(193, 152, 61, 0.15);
  border: 1px solid rgba(193, 152, 61, 0.45);
  color: var(--lp-gold-2);
  font-weight: 700;
}

.lp-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.lp-step p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  font-size: 0.95rem;
}

.lp-why-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .lp-why-grid { grid-template-columns: repeat(2, 1fr); }
}

.lp-why {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.3rem;
  border-radius: 1.15rem;
  border: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.03);
}

.lp-why strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.lp-why p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lp-stat {
  min-width: 4.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lp-gold-2);
  line-height: 1;
}

/* Quote / demo split */
.lp-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 980px) {
  .lp-split { grid-template-columns: 1fr 1.05fr; }
  .lp-split--form-left { grid-template-columns: 1.1fr 0.9fr; }
}

.lp-copy-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
}

.lp-copy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.lp-copy-list b { color: var(--lp-gold-2); }

.lp-packages {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

@media (min-width: 800px) {
  .lp-packages { grid-template-columns: repeat(3, 1fr); }
}

.lp-pack {
  padding: 1.2rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.03);
}

.lp-pack p.lp-pack-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lp-gold-2);
  margin-bottom: 0.45rem;
}

.lp-pack h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }

.lp-pack p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lp-media {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--lp-line);
}

.lp-media img,
.lp-media iframe {
  width: 100%;
  display: block;
}

.lp-media img { height: 240px; object-fit: cover; }

.lp-media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.lp-media-row img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.lp-map {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  min-height: 360px;
}

.lp-map iframe { width: 100%; height: 360px; border: 0; }

.lp-inline {
  color: var(--lp-gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
.lp-faq { max-width: 46rem; }

.lp-faq details {
  border: 1px solid var(--lp-line);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.2rem 1.05rem;
  margin-bottom: 0.65rem;
}

.lp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 0;
  font-weight: 650;
  color: #fff;
}

.lp-faq summary::-webkit-details-marker { display: none; }

.lp-faq summary::after {
  content: "+";
  float: right;
  color: var(--lp-gold);
  font-weight: 700;
}

.lp-faq details[open] summary::after { content: "–"; }

.lp-faq p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  padding-bottom: 1rem;
}

/* Close */
.lp-close {
  padding: 5rem 0 7.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(193, 152, 61, 0.18), transparent 50%),
    #07070b;
}

.lp-close .lp-lead { margin: 0.8rem auto 1.5rem; }

.lp-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

/* Sticky mobile CTA */
.lp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(7, 7, 11, 0.92);
  border-top: 1px solid rgba(193, 152, 61, 0.28);
  backdrop-filter: blur(16px);
}

.lp-sticky a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 0.8rem;
  padding: 0.82rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp-sticky-call {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (max-width: 900px) {
  .lp-sticky.is-visible { display: flex; }
  .lp-page { padding-bottom: 4.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-orbit { animation: none; }
  .lp-stage-inner,
  .lp-sys { transform: none !important; }
}
