:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #faf9ff;
  --ink: #0f0f14;
  --ink-soft: #4a4a5e;
  --line: #e9e5f7;
  --brand-50: #f5efff;
  --brand-100: #e8dcff;
  --brand-300: #b791ff;
  --brand-500: #7c3aed;
  --brand-700: #5b21b6;
  --radius-lg: 2rem;
  --radius-md: 1.2rem;
  --shadow-panel: 0 16px 40px rgba(18, 14, 34, 0.08);
  --shadow-glow: 0 18px 50px rgba(124, 58, 237, 0.25);
  --container: min(1180px, 92vw);
  --mx: 0;
  --my: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.bg-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
}

.orb-a {
  width: 22rem;
  height: 22rem;
  left: -5rem;
  top: -6rem;
  background: rgba(124, 58, 237, 0.3);
  transform: translate(calc(var(--mx) * 18px), calc(var(--my) * 15px));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.orb-b {
  width: 19rem;
  height: 19rem;
  right: -3rem;
  top: 8rem;
  background: rgba(91, 33, 182, 0.22);
  transform: translate(calc(var(--mx) * -14px), calc(var(--my) * -16px));
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(124, 58, 237, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at center, black 34%, transparent 80%);
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 220, 255, 0.75);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(8px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 145, 255, 0.66);
  background: var(--brand-50);
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-700);
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand-700);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.brand-text {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4.9vw, 4rem);
  line-height: 1.08;
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  max-width: 25ch;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 2.85rem;
  padding: 0 1.25rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease,
    border-color 220ms ease;
}

.button:hover {
  transform: translateY(-1.5px);
}

.button-brand {
  color: #fff;
  background: linear-gradient(130deg, var(--brand-500), var(--brand-700));
  box-shadow: var(--shadow-glow);
}

.button-dark {
  color: #fff;
  background: #0f0f14;
}

.button-dark:hover {
  background: var(--brand-700);
}

.button-ghost {
  border: 1px solid var(--brand-100);
  color: #11121b;
  background: #fff;
}

.button-ghost:hover {
  border-color: var(--brand-300);
}

.button-light {
  color: #0f0f14;
  background: #fff;
}

.button:focus-visible,
.button-link:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(232, 220, 255, 0.7);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo {
  width: auto;
  height: 3.65rem;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #474759;
}

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

.main-nav a:hover {
  color: var(--brand-700);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  min-height: 2.4rem;
  min-width: 4.1rem;
  font-family: inherit;
  font-weight: 700;
  color: #222230;
  cursor: pointer;
}

.start-showcase {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 2.8rem;
  padding-top: 2.5rem;
  padding-bottom: 2.6rem;
}

.start-copy {
  display: grid;
  gap: 1.2rem;
}

.start-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  max-width: 13ch;
}

.start-copy > p {
  max-width: 53ch;
  font-size: 1.03rem;
}

.device-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.device-card {
  border: 1px solid #d9d6e8;
  border-radius: 0.5rem;
  background: #fff;
  min-height: 7.2rem;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.42rem;
  padding: 0.45rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.device-card:hover {
  transform: translateY(-2px);
  border-color: #b9a4eb;
  box-shadow: 0 8px 22px rgba(17, 13, 32, 0.08);
}

.device-card img {
  width: 3.4rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 0.35rem;
}

.device-card span {
  font-size: 0.84rem;
  font-weight: 600;
  color: #181826;
}

.start-note {
  font-size: 0.95rem;
  color: #202031;
}

.start-note a {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.start-visual {
  border-radius: 0.55rem;
  overflow: hidden;
}

.start-visual img {
  width: 100%;
  height: clamp(17.5rem, 38vw, 24rem);
  object-fit: cover;
  border-radius: 0.55rem;
}

.about-section {
  padding-top: 2.2rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-headings {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.about-headings > p {
  max-width: 56ch;
}

.about-visual {
  overflow: hidden;
  padding: 0.7rem;
}

.about-visual img {
  width: 100%;
  height: clamp(16.5rem, 33vw, 21.5rem);
  object-fit: cover;
  border-radius: 1.25rem;
}

.about-story {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.68rem;
  max-width: 84ch;
}

.about-story h3,
.about-values h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.about-excellence {
  margin-top: 1.8rem;
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.excellence-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.5rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.excellence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(17, 13, 32, 0.12);
}

.excellence-card h3 {
  font-size: 1.14rem;
}

.about-values {
  margin-top: 1.5rem;
  padding: 1.45rem;
  display: grid;
  gap: 0.72rem;
  background: linear-gradient(140deg, rgba(245, 239, 255, 0.62), rgba(255, 255, 255, 0.94));
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2.8rem;
  align-items: center;
  padding-top: 3.6rem;
  padding-bottom: 4.3rem;
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
}

.hero-text {
  max-width: 56ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badges {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-badges li {
  border: 1px solid #e8e8ee;
  border-radius: 999px;
  background: #fff;
  padding: 0.3rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #5e5e72;
}

.visual-panel {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
}

.visual-panel img {
  width: 100%;
  height: 26.4rem;
  object-fit: cover;
  border-radius: 1.25rem;
}

.visual-overlay {
  position: absolute;
  inset: 1.2rem;
  border-radius: 1.25rem;
  background: linear-gradient(to top, rgba(15, 15, 20, 0.35), transparent 55%);
  pointer-events: none;
}

.floating-card {
  position: absolute;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(184, 145, 255, 0.45);
  box-shadow: var(--shadow-panel);
  padding: 0.72rem 0.9rem;
  min-width: 9.4rem;
}

.floating-card p {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #66677c;
  font-weight: 700;
}

.floating-card strong {
  display: block;
  margin-top: 0.1rem;
  font-size: 1.04rem;
  color: #181925;
}

.floating-top {
  left: 0.75rem;
  top: 1rem;
  animation: float-up 4s ease-in-out infinite;
}

.floating-bottom {
  right: 0.9rem;
  bottom: 0.85rem;
  animation: float-down 5.2s ease-in-out infinite;
}

@keyframes float-up {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes float-down {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2rem;
  display: grid;
  gap: 0.8rem;
}

.section-head.split {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.4rem;
}

.aside-text {
  max-width: 20rem;
  font-size: 0.9rem;
}

.why-grid,
.steps-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-card,
.step-card,
.review-card {
  padding: 1.45rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.why-card:hover,
.step-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(17, 13, 32, 0.12);
}

.icon-wrap {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.8rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: var(--brand-700);
  background: var(--brand-100);
}

.icon-wrap svg {
  width: 1.28rem;
  height: 1.28rem;
}

.why-card h3,
.step-card h3 {
  margin-bottom: 0.5rem;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  background: #0f0f14;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(17, 13, 32, 0.12);
}

.product-image-wrap {
  position: relative;
  height: 13.2rem;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #2f3042;
}

.product-copy {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
}

.product-copy p {
  font-size: 0.94rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.product-meta strong {
  color: var(--brand-700);
  font-size: 0.94rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.button-link {
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  background: #fff;
  color: #262738;
  padding: 0.4rem 0.75rem;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, transform 180ms ease;
}

.button-link:hover {
  transform: translateY(-1px);
  border-color: var(--brand-500);
  color: var(--brand-700);
}

.estimator-section {
  padding-top: 4.4rem;
}

.estimator-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-section {
  padding-top: 2.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 0.9rem;
}

.contact-card {
  padding: 1.25rem;
  display: grid;
  gap: 0.48rem;
}

.contact-label {
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-700);
}

.contact-address {
  color: #1e2032;
  font-weight: 700;
  line-height: 1.45;
}

.contact-link {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.45rem;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.location-section {
  padding-top: 4.2rem;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.location-copy {
  display: grid;
  gap: 0.95rem;
}

.location-copy > p {
  max-width: 50ch;
}

.location-card {
  padding: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.location-label {
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-700);
}

.location-address {
  color: #1e2032;
  font-weight: 700;
  line-height: 1.45;
}

.location-link {
  margin-top: 0.2rem;
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.location-map {
  padding: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.map-canvas {
  width: 100%;
  min-height: 22rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: linear-gradient(140deg, #f4efff, #ffffff);
  border: 1px solid rgba(184, 145, 255, 0.35);
}

.map-canvas iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.map-fallback {
  min-height: 22rem;
  padding: 1.2rem;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.7rem;
}

.map-fallback-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  color: #151626;
}

.map-fallback p {
  max-width: 48ch;
}

.estimator-copy {
  display: grid;
  gap: 0.95rem;
}

.estimator-copy > p {
  max-width: 48ch;
}

.benefits-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: #5d5e72;
}

.benefits-list li {
  position: relative;
  padding-left: 1rem;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53rem;
  width: 0.37rem;
  height: 0.37rem;
  border-radius: 999px;
  background: var(--brand-500);
}

.estimator-form {
  display: grid;
  gap: 1rem;
  padding: 1.45rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #2d2e42;
}

select {
  min-height: 2.95rem;
  border-radius: 0.95rem;
  border: 1px solid var(--brand-100);
  background: #fff;
  padding: 0 0.8rem;
  font: inherit;
  color: #131421;
}

input:not([type="checkbox"]),
textarea {
  width: 100%;
  border-radius: 0.95rem;
  border: 1px solid var(--brand-100);
  background: #fff;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: #131421;
}

textarea {
  resize: vertical;
  min-height: 8.2rem;
}

input:not([type="checkbox"])::placeholder,
textarea::placeholder {
  color: #8b84a2;
}

select:disabled {
  background: var(--brand-50);
  color: #88819f;
  cursor: not-allowed;
}

.estimate-box {
  border-radius: 1rem;
  border: 1px solid var(--brand-100);
  background: rgba(245, 239, 255, 0.65);
  padding: 0.95rem;
}

.estimate-range {
  color: #171826;
  font-size: 1.2rem;
  line-height: 1.25;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
}

.estimate-meta {
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: #62627a;
}

.estimate-box.pulse {
  animation: pulse-border 300ms ease;
}

@keyframes pulse-border {
  0% {
    border-color: var(--brand-300);
    transform: scale(1);
  }

  50% {
    border-color: var(--brand-500);
    transform: scale(1.01);
  }

  100% {
    border-color: var(--brand-100);
    transform: scale(1);
  }
}

#estimate-action:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#estimate-action:disabled:hover {
  transform: none;
  background: #0f0f14;
}

.review-card {
  display: grid;
}

.quote-mark {
  color: var(--brand-500);
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.review-text {
  min-height: 7.6rem;
}

.review-avatar {
  width: 3.2rem;
  height: 3.2rem;
  margin-top: 0.95rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(184, 145, 255, 0.45);
  box-shadow: 0 10px 26px rgba(21, 14, 35, 0.15);
}

.review-name {
  margin-top: 0.65rem;
  font-size: 1.08rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #151626;
}

.review-role {
  font-size: 0.88rem;
}

.contact-note {
  font-size: 0.85rem;
}

.form-feedback {
  min-height: 1.2rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-feedback.is-info {
  color: #5c5d73;
}

.form-feedback.is-success {
  color: #17623e;
}

.form-feedback.is-error {
  color: #9f1f39;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2f3042;
}

.consent-check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  border: 1px solid var(--brand-100);
  border-radius: 0.25rem;
  padding: 0;
  accent-color: var(--brand-700);
  cursor: pointer;
}

.consent-check span {
  line-height: 1.5;
}

.consent-check a {
  color: var(--brand-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.privacy-policy-page {
  padding-top: 2.2rem;
}

.privacy-policy-content {
  display: grid;
  gap: 1.2rem;
  padding: 1.6rem;
}

.privacy-policy-content > p {
  max-width: 76ch;
  line-height: 1.7;
}

.legal-block {
  display: grid;
  gap: 0.55rem;
}

.privacy-policy-content h2 {
  max-width: 100%;
  font-size: clamp(1.12rem, 2.1vw, 1.38rem);
  line-height: 1.35;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.34rem;
  color: var(--ink-soft);
}

.legal-contact {
  display: grid;
  gap: 0.3rem;
}

.legal-contact a {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cta-section {
  padding-top: 2.2rem;
  padding-bottom: 5.2rem;
}

.cta-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(183, 145, 255, 0.6);
  background: linear-gradient(140deg, var(--brand-700), var(--brand-500));
  color: #fff;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-glow);
}

.cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
}

.cta-glow-a {
  width: 9.5rem;
  height: 9.5rem;
  right: -2.6rem;
  top: -2.6rem;
  background: rgba(255, 255, 255, 0.24);
}

.cta-glow-b {
  width: 8rem;
  height: 8rem;
  left: 4.8rem;
  bottom: -2.4rem;
  background: rgba(183, 145, 255, 0.45);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.4rem;
}

.cta-content > div {
  display: grid;
  gap: 0.75rem;
  max-width: 45rem;
}

.cta-content h2 {
  color: #fff;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.86);
}

.cta-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  border-top: 1px solid rgba(232, 220, 255, 0.9);
  background: rgba(255, 255, 255, 0.95);
  padding: 2.4rem 0;
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-logo {
  width: auto;
  height: 2.75rem;
  object-fit: contain;
}

.footer-sub,
.footer-copy {
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5c5d73;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--brand-700);
}

.cookie-banner {
  --cookie-shift-x: 0;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--cookie-shift-x), 14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(var(--cookie-shift-x), 0);
}

.cookie-banner.is-hiding {
  opacity: 0;
  pointer-events: none;
  transform: translate(var(--cookie-shift-x), 14px);
}

.cookie-banner-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #272838;
}

.cookie-banner-link {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner-button {
  flex: 0 0 auto;
  min-height: 2.5rem;
  padding-inline: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

@media (max-width: 1040px) {
  .desktop-only {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.5rem 0;
  }

  .brand-logo {
    height: 3.3rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-items: start;
    gap: 0.65rem;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-top: 1px solid transparent;
    transition: max-height 260ms ease, padding 260ms ease, border-color 260ms ease;
  }

  .main-nav.is-open {
    max-height: 18rem;
    padding: 0.8rem 0 0.35rem;
    border-color: var(--line);
  }

  .hero,
  .start-showcase,
  .contact-layout,
  .estimator-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .hero,
  .start-showcase {
    gap: 2rem;
    padding-top: 2.4rem;
  }

  .start-showcase {
    padding-bottom: 1.3rem;
  }

  .section-head.split {
    grid-template-columns: 1fr;
  }

  .aside-text {
    max-width: 100%;
  }

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

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

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

  .field-grid {
    grid-template-columns: 1fr;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  .location-section {
    padding-top: 3.4rem;
  }

  .map-canvas,
  .map-canvas iframe {
    min-height: 19.5rem;
  }

  .cta-content {
    flex-direction: column;
    align-items: start;
  }
}

@media (min-width: 761px) {
  .cookie-banner {
    --cookie-shift-x: -50%;
    left: 50%;
    right: auto;
    width: min(52rem, calc(100vw - 2.4rem));
  }
}

@media (max-width: 760px) {
  .brand-logo {
    height: 2.9rem;
  }

  .footer-logo {
    height: 2.4rem;
  }

  h1 {
    max-width: 17ch;
  }

  .section {
    padding: 3.15rem 0;
  }

  .why-grid,
  .steps-grid,
  .shop-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding-top: 1.5rem;
  }

  .about-story,
  .about-excellence,
  .about-values {
    margin-top: 1.05rem;
  }

  .excellence-grid {
    grid-template-columns: 1fr;
  }

  .start-showcase {
    padding-top: 1.4rem;
    padding-bottom: 0.8rem;
    gap: 1.25rem;
  }

  .start-copy {
    gap: 0.9rem;
  }

  .start-copy h2 {
    max-width: 16ch;
  }

  .device-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .start-visual img {
    height: 15.5rem;
  }

  .product-image-wrap {
    height: 12.6rem;
  }

  .visual-panel {
    padding: 0.8rem;
  }

  .visual-panel img {
    height: 21rem;
  }

  .visual-overlay {
    inset: 0.8rem;
  }

  .floating-top {
    left: 0.4rem;
    top: 1.2rem;
  }

  .floating-bottom {
    right: 0.8rem;
    bottom: 0.2rem;
  }

  .cta-wrap {
    padding: 1.7rem 1.3rem;
  }

  .privacy-policy-content {
    padding: 1.2rem;
    gap: 1rem;
  }

  .privacy-policy-content > p,
  .legal-list,
  .consent-check {
    font-size: 0.92rem;
  }

  .footer-shell {
    align-items: start;
    flex-direction: column;
  }

  .map-canvas,
  .map-canvas iframe {
    min-height: 16.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0.85rem 0.85rem 0.8rem;
  }

  .cookie-banner-button {
    width: 100%;
  }
}
