:root {
  --bg: #f7f4ee;
  --bg-strong: #fffdf9;
  --surface: rgba(255, 252, 246, 0.94);
  --surface-strong: #ffffff;
  --surface-muted: #f1e6cf;
  --surface-dark: #14110d;
  --surface-dark-soft: #1d1914;
  --ink: #16120e;
  --ink-soft: #645b50;
  --ink-inverse: #f8f4ec;
  --gold: #c89d48;
  --gold-deep: #a9781f;
  --gold-soft: #ead8ae;
  --champagne: #efe3c5;
  --border: rgba(22, 18, 14, 0.1);
  --border-strong: rgba(22, 18, 14, 0.18);
  --shadow: 0 24px 60px rgba(12, 10, 7, 0.1);
  --shadow-strong: 0 28px 80px rgba(12, 10, 7, 0.18);
  --shadow-card: 0 18px 42px rgba(15, 11, 8, 0.08);
  --shadow-hover: 0 24px 56px rgba(15, 11, 8, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --site-width: min(1200px, calc(100% - 2rem));
  --measure: 62ch;
  --heading-font: "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", sans-serif;
  --body-font: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --ease: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.58;
  background:
    radial-gradient(circle at top left, rgba(200, 157, 72, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(239, 227, 197, 0.85), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ed 35%, #f3ede2 100%);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(200, 157, 72, 0.34);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--ink-inverse);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(22, 18, 14, 0.08);
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 28px rgba(22, 18, 14, 0.04);
}

.nav-shell,
.section-shell,
.footer-shell {
  width: var(--site-width);
  margin: 0 auto;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  margin-left: 0;
}

.brand-mark {
  position: relative;
  width: 122px;
  height: 100px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark.is-fallback img {
  display: none;
}

.brand-mark-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: #fff8e9;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.brand-mark.is-fallback .brand-mark-fallback {
  display: grid;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.brand-title {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--ink-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.site-header .brand-copy {
  display: none;
}

.site-header nav {
  margin-left: auto;
}

.site-footer .brand {
  margin-left: 0;
}

.site-footer .brand-mark {
  width: 132px;
  height: 108px;
}

.site-footer .brand-copy {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 0.95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--ink);
  background: rgba(200, 157, 72, 0.15);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(200, 157, 72, 0.12);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle span {
  margin: 6px auto;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-8px) rotate(-45deg);
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: 4.8rem 0 2.5rem;
}

.hero-premium {
  padding-top: 4.35rem;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: 62vw;
  height: 100%;
  transform: translateX(-8%);
  background:
    radial-gradient(circle at 32% 24%, rgba(200, 157, 72, 0.18), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(22, 18, 14, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: auto auto -9rem -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.hero-layout,
.detail-grid,
.trade-grid,
.contact-grid,
.quote-layout,
.quote-showcase {
  display: grid;
  gap: 1.5rem;
}

.hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 2rem;
}

.detail-grid,
.trade-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.quote-showcase,
.quote-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
  gap: 1.15rem;
}

.section {
  padding: 3.35rem 0;
}

.section-soft {
  position: relative;
  background: linear-gradient(180deg, rgba(239, 227, 197, 0.34), rgba(255, 252, 246, 0.88));
}

.section-soft::before {
  content: "";
  display: block;
  width: min(88%, 1160px);
  height: 1px;
  margin: 0 auto 3.35rem;
  background: linear-gradient(90deg, rgba(200, 157, 72, 0), rgba(200, 157, 72, 0.2), rgba(200, 157, 72, 0));
}

.section-contrast {
  background:
    radial-gradient(circle at top left, rgba(200, 157, 72, 0.18), transparent 32%),
    linear-gradient(180deg, #15110c 0%, #0f0c09 100%);
  color: var(--ink-inverse);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.35rem;
}

.section-head p {
  margin: 0;
  max-width: 38rem;
  color: var(--ink-soft);
}

.section-head-contrast p,
.section-contrast .section-head p {
  color: rgba(248, 244, 236, 0.76);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(200, 157, 72, 0.14);
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 157, 72, 0.14);
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #f2ddb0;
}

.eyebrow-dark::before {
  box-shadow: 0 0 0 5px rgba(200, 157, 72, 0.18);
}

.hero-copy h1,
.section-copy h2,
.page-title,
.card h3,
.info-card h3,
.feature-card h3,
.step-card h3,
.pricing-card h3,
.device-card h3,
.contact-block h3,
.contact-form h3,
.panel h2,
.panel h3,
.service-card h3,
.feature-tile h3 {
  margin: 0.8rem 0 0.9rem;
  font-family: var(--heading-font);
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 5.4vw, 5.55rem);
}

.page-title,
.section-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  max-width: 14ch;
}

.section-contrast .page-title,
.section-contrast h3,
.section-contrast p {
  color: var(--ink-inverse);
}

.hero-copy p,
.intro-text,
.section-copy p,
.card p,
.info-card p,
.detail-copy p,
.step-card p,
.quote-panel p,
.contact-block p,
.contact-form p,
.feature-card p,
.feature-tile p,
.service-card p,
.panel p,
.device-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.hero-copy .intro-text {
  max-width: 56ch;
  font-size: 1.08rem;
}

.hero-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-trustline span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trustline span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d7b160, #b98428);
  box-shadow: 0 0 0 4px rgba(200, 157, 72, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.hero-proof span,
.quote-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(200, 157, 72, 0.18);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(22, 18, 14, 0.05);
}

.hero-proof span::before,
.quote-benefits span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8af5d, #b98428);
}

.section-contrast .feature-card p {
  color: rgba(248, 244, 236, 0.78);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.55rem;
}

.button,
.button-secondary,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

.button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #dfba6d, #b78023 72%);
  color: #20170c;
  box-shadow: inset 0 1px 0 rgba(255, 248, 226, 0.6), 0 16px 30px rgba(185, 132, 40, 0.24);
}

.button::after {
  content: "->";
  font-size: 0.82rem;
  letter-spacing: 0;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(22, 18, 14, 0.14);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle:focus-visible,
.nav-menu a:focus-visible,
.button:focus-visible,
.button-secondary:focus-visible,
.filter-button:focus-visible,
.inline-link:focus-visible {
  outline-color: rgba(200, 157, 72, 0.42);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 20px 36px rgba(185, 132, 40, 0.32);
  filter: saturate(1.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(200, 157, 72, 0.32);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(18, 14, 9, 0.08);
}

.hero-metrics,
.feature-stack,
.grid-3,
.grid-4,
.feature-grid,
.value-grid {
  display: grid;
  gap: 1rem;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
}

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

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

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

.metric-pill,
.panel,
.card,
.info-card,
.feature-card,
.pricing-card,
.step-card,
.device-card,
.contact-form,
.contact-block,
.hero-card,
.visual-card,
.wide-visual,
.service-card,
.feature-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 28%),
    var(--surface);
  box-shadow: var(--shadow-card);
}

.panel,
.card,
.info-card,
.feature-card,
.pricing-card,
.step-card,
.contact-form,
.contact-block,
.hero-card,
.visual-card,
.wide-visual,
.service-card,
.feature-tile {
  padding: 1.4rem;
}

.panel-tight {
  padding-top: 1rem;
}

.panel-emphasis::before,
.metric-pill::before,
.feature-card::before,
.service-card::before,
.device-card::before,
.contact-form::before,
.contact-block::before,
.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 157, 72, 0.58), rgba(200, 157, 72, 0));
}

.metric-pill::after,
.feature-card::after,
.service-card::after,
.device-card::after,
.contact-form::after,
.contact-block::after,
.feature-tile::after,
.panel::after {
  content: "";
  position: absolute;
  inset: auto -3rem -3rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 157, 72, 0.06), rgba(200, 157, 72, 0));
  pointer-events: none;
}

.metric-pill {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.metric-pill strong,
.contact-aside strong,
.footer-contact strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.02rem;
}

.metric-pill span,
.contact-aside span,
.footer-contact span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.hero-visual {
  min-width: 0;
}

.spotlight-stack {
  position: relative;
  min-height: 640px;
}

.showcase-panel {
  position: relative;
  padding: 1.15rem;
  min-height: 470px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 35%),
    radial-gradient(circle at top right, rgba(200, 157, 72, 0.26), transparent 35%),
    linear-gradient(160deg, rgba(24, 18, 11, 0.98), rgba(40, 31, 20, 0.94));
  border: 1px solid rgba(200, 157, 72, 0.22);
  box-shadow: var(--shadow-strong);
}

.showcase-bar {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.showcase-bar span,
.showcase-bar strong {
  color: rgba(248, 244, 236, 0.92);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.showcase-bar strong {
  font-size: 0.78rem;
}

.showcase-panel::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0));
}

.showcase-panel::after {
  content: "";
  position: absolute;
  inset: auto -6% -10% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 157, 72, 0.34) 0%, rgba(200, 157, 72, 0) 68%);
}

.showcase-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 0.2rem;
  width: min(250px, 44%);
  padding: 0.95rem 1rem;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(200, 157, 72, 0.22);
  box-shadow: 0 20px 40px rgba(11, 8, 5, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  line-height: 1.1;
}

.floating-card-top {
  top: 2rem;
  right: -1rem;
  animation: float-soft 6s ease-in-out infinite;
}

.floating-card-bottom {
  left: -1rem;
  bottom: 7rem;
  animation: float-soft 6s ease-in-out infinite 1.4s;
}

.mini-device-cluster {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.mini-device-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 247, 230, 0.12);
}

.mini-device-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.55rem;
}

.mini-device-card strong,
.mini-device-card span {
  display: block;
}

.mini-device-card strong {
  color: var(--ink-inverse);
  font-size: 0.98rem;
}

.mini-device-card span {
  color: rgba(248, 244, 236, 0.76);
  font-size: 0.86rem;
}

.hero-score-card {
  position: absolute;
  right: -0.6rem;
  bottom: 9.2rem;
  width: min(280px, 48%);
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(200, 157, 72, 0.22);
  box-shadow: 0 18px 36px rgba(11, 8, 5, 0.12);
  backdrop-filter: blur(14px);
}

.hero-score-card > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-score-grid strong {
  padding: 0.72rem 0.75rem;
  border-radius: 16px;
  background: rgba(200, 157, 72, 0.08);
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
}

.trust-strip {
  padding: 0.9rem 0;
  background:
    linear-gradient(90deg, rgba(22, 18, 14, 0.98), rgba(36, 29, 20, 0.98));
  color: #f5eddc;
  border-top: 1px solid rgba(200, 157, 72, 0.18);
  border-bottom: 1px solid rgba(200, 157, 72, 0.18);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.trust-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3ddb2, #c89d48);
  flex-shrink: 0;
}

.about-grid {
  align-items: start;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, rgba(200, 157, 72, 0.22), rgba(239, 227, 197, 0.65));
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-grid {
  align-items: stretch;
}

.service-copy,
.feature-card,
.step-card,
.feature-tile,
.contact-block,
.contact-form,
.panel,
.pricing-card,
.device-body {
  display: flex;
  flex-direction: column;
}

.service-copy,
.device-body {
  height: 100%;
  gap: 0.2rem;
}

.service-copy .button-secondary,
.service-copy .button,
.contact-form .button,
.contact-form .button-secondary {
  margin-top: auto;
}

.service-card h3,
.feature-card h3,
.step-card h3,
.feature-tile h3,
.pricing-card h3,
.device-meta h3,
.contact-block h3,
.contact-form h3 {
  font-size: 1.32rem;
}

.service-card,
.device-card,
.feature-card,
.step-card,
.feature-tile,
.info-card,
.card,
.pricing-card {
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover,
.service-card:focus-within,
.device-card:hover,
.device-card:focus-within,
.feature-card:hover,
.step-card:hover,
.feature-tile:hover,
.info-card:hover,
.card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 157, 72, 0.26);
  box-shadow: var(--shadow-hover);
}

.service-visual {
  margin: -1.4rem -1.4rem 1.05rem;
  padding: 1.15rem;
  background: linear-gradient(160deg, rgba(239, 227, 197, 0.34), rgba(200, 157, 72, 0.12));
}

.service-visual img,
.hero-card img,
.visual-card img,
.wide-visual img {
  width: 100%;
  border-radius: 20px;
}

.quote-panel {
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at top right, rgba(200, 157, 72, 0.18), transparent 36%),
    linear-gradient(180deg, #1a140e 0%, #120e0b 100%);
  color: var(--ink-inverse);
  border: 1px solid rgba(200, 157, 72, 0.18);
  box-shadow: var(--shadow-strong);
}

.estimator-panel {
  background:
    radial-gradient(circle at top left, rgba(200, 157, 72, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 24%),
    var(--surface);
}

.quote-form-header {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(22, 18, 14, 0.08);
}

.quote-form-header h3 {
  margin-bottom: 0.2rem;
}

.quote-form-header p {
  max-width: var(--measure);
}

.quote-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.quote-panel .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  color: #f0dba9;
}

.quote-panel .quote-value {
  margin: 1rem 0 0.55rem;
  font-family: var(--heading-font);
  font-size: clamp(2.9rem, 4vw, 4.4rem);
  line-height: 1;
  color: #fff3d1;
}

.quote-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.quote-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.quote-detail-card {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-detail-card span,
.quote-detail-card strong {
  display: block;
}

.quote-detail-card span {
  color: rgba(248, 244, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-detail-card strong {
  margin-top: 0.25rem;
  color: #fff2ce;
  font-size: 0.96rem;
  line-height: 1.25;
}

.quote-stat {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-stat strong,
.quote-stat span {
  display: block;
}

.quote-stat strong {
  font-size: 0.92rem;
  color: #fff1c9;
}

.quote-stat span {
  font-size: 0.82rem;
  color: rgba(248, 244, 236, 0.72);
}

.quote-panel p,
.quote-breakdown {
  color: rgba(248, 244, 236, 0.76);
}

.quote-note {
  color: var(--ink-soft);
}

.quote-breakdown {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.quote-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.76rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-breakdown strong {
  color: #fff2ce;
}

.result-callout {
  margin-top: 1.2rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 244, 236, 0.82);
}

.quote-cta {
  width: 100%;
  margin-top: 1rem;
}

.quote-trust-copy {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: rgba(248, 244, 236, 0.66);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.filter-button {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  border-color: rgba(22, 18, 14, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.filter-button.active {
  background: rgba(200, 157, 72, 0.16);
  color: var(--ink);
  border-color: rgba(200, 157, 72, 0.28);
  box-shadow: 0 10px 20px rgba(185, 132, 40, 0.12);
}

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

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

.device-image {
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(239, 227, 197, 0.54), rgba(200, 157, 72, 0.14));
}

.device-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.8rem;
}

.device-body {
  padding: 1.2rem;
}

.device-overline {
  margin-bottom: 0.45rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.device-meta h3 {
  margin: 0;
  font-size: 1.24rem;
}

.device-price {
  font-weight: 800;
  color: var(--gold-deep);
  white-space: nowrap;
}

.device-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.device-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(200, 157, 72, 0.12);
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 700;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--gold-deep);
  font-weight: 700;
  transition: transform var(--ease), color var(--ease);
}

.inline-link::after {
  content: "->";
}

.device-empty {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--ink-soft);
  border: 1px dashed rgba(22, 18, 14, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, #d9b05f, #b98428);
  color: #24170b;
  font-weight: 800;
}

.steps-grid {
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 157, 72, 0.1), rgba(200, 157, 72, 0.45), rgba(200, 157, 72, 0.1));
  pointer-events: none;
}

.step-card {
  z-index: 1;
}

.step-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feature-card-dark::before {
  background: linear-gradient(90deg, rgba(200, 157, 72, 0.9), rgba(200, 157, 72, 0));
}

.feature-card-dark .icon-chip {
  background: linear-gradient(145deg, rgba(200, 157, 72, 0.32), rgba(255, 255, 255, 0.12));
  color: #f5deb0;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.94rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.98rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(22, 18, 14, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.field textarea {
  min-height: 154px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(200, 157, 72, 0.46);
  box-shadow: 0 0 0 4px rgba(200, 157, 72, 0.14);
  background: var(--surface-strong);
}

.field [aria-invalid="true"] {
  border-color: rgba(178, 66, 43, 0.5);
  box-shadow: 0 0 0 4px rgba(178, 66, 43, 0.12);
}

.field.is-full {
  grid-column: 1 / -1;
}

.quote-note,
.muted {
  font-size: 0.93rem;
}

.pricing-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.pricing-table th,
.pricing-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(22, 18, 14, 0.08);
}

.pricing-table th {
  background: rgba(200, 157, 72, 0.14);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.footer-contact a {
  color: var(--gold-deep);
  font-weight: 700;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(200, 157, 72, 0.12);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
}

.contact-aside {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.3rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(239, 227, 197, 0.48);
}

.status-message {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(15, 11, 8, 0.06);
}

.status-message.is-visible {
  display: block;
}

.status-message.is-success {
  background: rgba(50, 125, 81, 0.13);
  color: #205438;
  border-color: rgba(50, 125, 81, 0.16);
}

.status-message.is-error {
  background: rgba(177, 77, 54, 0.14);
  color: #7c3020;
  border-color: rgba(177, 77, 54, 0.16);
}

.site-footer {
  margin-top: 1rem;
  padding: 1.65rem 0 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(200, 157, 72, 0.14), transparent 28%),
    linear-gradient(180deg, #16120e 0%, #0f0c09 100%);
  color: var(--ink-inverse);
  border-top: 1px solid rgba(200, 157, 72, 0.14);
}

.footer-grid,
.footer-shell.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(220px, 0.8fr);
  gap: 1.35rem;
  align-items: start;
}

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

.footer-shell p {
  margin: 0;
}

.footer-shell nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.brand-footer .brand-title,
.brand-footer .brand-tag,
.footer-brand p,
.footer-links a,
.footer-links span,
.footer-contact span {
  color: rgba(248, 244, 236, 0.78);
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 38rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.7rem;
}

.footer-links span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  transition: color var(--ease), transform var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff4d5;
  transform: translateX(2px);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 0.8s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.08s;
}

.reveal.delay-2 {
  animation-delay: 0.16s;
}

.reveal.delay-3 {
  animation-delay: 0.24s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .detail-grid,
  .trade-grid,
  .contact-grid,
  .quote-showcase,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .feature-grid,
  .value-grid,
  .device-grid,
  .featured-grid,
  .hero-metrics,
  .feature-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .steps-grid::before {
    display: none;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .page-title,
  .section-copy h2,
  .hero-copy h1 {
    max-width: none;
  }

  .hero-premium::before {
    width: 100%;
    transform: translateX(-50%);
  }

  .hero-score-card {
    right: 0;
    width: min(320px, 52%);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.98);
    border: 1px solid rgba(22, 18, 14, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu li,
  .nav-menu a {
    width: 100%;
  }

  .nav-menu a {
    justify-content: center;
  }

  .spotlight-stack {
    min-height: auto;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 0.85rem;
  }

  .mini-device-cluster {
    position: static;
    margin-top: 0.85rem;
  }

  .hero-score-card {
    position: static;
    width: 100%;
    margin-top: 0.85rem;
  }

  .form-grid,
  .hero-metrics,
  .feature-stack,
  .grid-3,
  .feature-grid,
  .value-grid,
  .device-grid,
  .featured-grid,
  .trust-list,
  .quote-stat-row,
  .quote-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 1.35rem;
  }

  .device-meta {
    flex-direction: column;
    align-items: start;
  }

  .quote-breakdown li {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-top: 3rem;
  }

  .nav-shell {
    min-height: 84px;
  }

  .brand-mark {
    width: 96px;
    height: 78px;
    border-radius: 0;
  }

  .brand-tag {
    white-space: normal;
  }

  .section {
    padding: 2.65rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.45rem);
  }

  .page-title,
  .section-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero-proof {
    gap: 0.55rem;
  }

  .hero-actions,
  .button-row,
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary,
  .filter-button {
    width: 100%;
  }

  .panel,
  .card,
  .info-card,
  .feature-card,
  .pricing-card,
  .step-card,
  .device-card,
  .contact-form,
  .contact-block,
  .service-card,
  .feature-tile,
  .quote-panel {
    border-radius: 24px;
  }

  .showcase-panel {
    min-height: auto;
  }

  .showcase-bar {
    position: static;
    margin-bottom: 0.85rem;
    flex-direction: column;
    align-items: start;
  }

  .mini-device-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .mini-device-card img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-trustline,
  .contact-meta {
    gap: 0.45rem;
  }

  .section-soft::before {
    margin-bottom: 2.65rem;
  }

  .quote-form-header,
  .quote-panel,
  .contact-form,
  .contact-block {
    padding-inline: 1.1rem;
  }
}
