:root {
  --black: #080808;
  --ink: #151515;
  --muted: #6d6a63;
  --line: #e7e0d3;
  --gold: #c9a24a;
  --gold-2: #f0d286;
  --white: #ffffff;
  --soft: #f7f5f0;
  --shadow: 0 24px 70px rgba(8, 8, 8, 0.16);
  --radius: 8px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}

.site-header.scrolled,
.site-header.open {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.site-header .brand-logo {
  width: 150px;
  height: auto;
  max-height: 64px;
}

.site-footer .brand-logo {
  height: 96px;
}

.site-header .brand-logo-dark {
  display: none;
}

.site-header.scrolled .brand-logo-light,
.site-header.open .brand-logo-light {
  display: none;
}

.site-header.scrolled .brand-logo-dark,
.site-header.open .brand-logo-dark {
  display: block;
}

.brand-mark {
  width: 42px;
  height: 48px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 40px;
  height: 46px;
  fill: rgba(201, 162, 74, 0.17);
  stroke: var(--gold);
  stroke-width: 2;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.06rem;
  font-weight: 800;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.active {
  color: var(--gold-2);
}

.site-header.scrolled .main-nav a.active,
.site-header.open .main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("assets/guarda-hero-glass-city.png") center / cover no-repeat;
  transform: scale(1.04);
  will-change: transform, background-position;
  z-index: -2;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.14) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.56));
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -10vw;
  width: 58vw;
  height: 24vw;
  background: rgba(201, 162, 74, 0.76);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
  opacity: 0.22;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 700px) 320px;
  gap: 44px;
  align-items: center;
  padding-block: 140px 80px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow span,
.kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-stagger .stagger-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.78s ease, transform 0.78s ease;
}

.hero-stagger.in-view .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.hero-stagger.in-view .stagger-item:nth-child(2) {
  transition-delay: 0.1s;
}

.hero-stagger.in-view .stagger-item:nth-child(3) {
  transition-delay: 0.2s;
}

.hero-stagger.in-view .stagger-item:nth-child(4) {
  transition-delay: 0.3s;
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.magnetic {
  will-change: transform;
}

.btn-gold:hover {
  box-shadow: 0 18px 44px rgba(201, 162, 74, 0.42), 0 0 0 1px rgba(240, 210, 134, 0.35);
}

.btn-gold {
  color: #111;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 15px 34px rgba(201, 162, 74, 0.25);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.btn-quiet {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.glass-panel {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.glass-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(240, 210, 134, 0.24), transparent 34%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.glass-panel:hover::after {
  opacity: 1;
}

.float-card {
  animation: luxuryFloat 7s ease-in-out infinite;
}

.panel-line {
  width: 76px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--gold);
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-panel h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1;
  font-weight: 500;
}

.hero-service-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.hero-service-list span {
  color: transparent;
  font-size: 0;
}

.hero-service-list span::before {
  content: "✓";
  color: var(--gold-2);
  font-size: 0.95rem;
}

.hero-panel dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.hero-panel .metric-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel dt {
  color: var(--gold-2);
  font-size: 1.42rem;
  font-weight: 800;
}

.hero-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: right;
}

section {
  position: relative;
}

.section-light {
  background: var(--white);
}

.benefits,
.credibility-section,
.film-finder,
.cost-section,
.installation-section,
.trust-section,
.services,
.process,
.quote-section {
  padding: clamp(76px, 10vw, 130px) 0;
}

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

.section-heading h2,
.cta-inner h2,
.quote-intro h2 {
  margin: 12px 0 14px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.section-heading p,
.quote-intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 192px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(201, 162, 74, 0.2);
  border-top: 1px solid rgba(201, 162, 74, 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.05), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 243, 237, 0.88)),
    rgba(248, 246, 241, 0.88);
  box-shadow: 0 8px 20px rgba(8, 8, 8, 0.028);
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(201, 162, 74, 0.1);
  opacity: 0.72;
  transition: border-color 0.28s ease, opacity 0.28s ease;
}

.benefits .section-heading {
  margin-bottom: 34px;
  max-width: 780px;
}

.benefits .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.benefit-card::after,
.service-card::after,
.finder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(240, 210, 134, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(201, 162, 74, 0.08), transparent 38%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.benefit-card:hover,
.benefit-card.is-spotlit,
.service-card:hover,
.finder-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 74, 0.58);
  box-shadow: 0 16px 38px rgba(8, 8, 8, 0.09), 0 0 28px rgba(201, 162, 74, 0.12);
}

.benefit-card:hover::before,
.benefit-card.is-spotlit::before {
  border-color: rgba(201, 162, 74, 0.34);
  opacity: 1;
}

.benefit-card:hover::after,
.benefit-card.is-spotlit::after,
.service-card:hover::after,
.finder-card:hover::after {
  opacity: 1;
}

.cost-section {
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.06), transparent 38%),
    var(--soft);
}

.cost-section .section-heading {
  border-top: 2px solid var(--gold);
  padding-top: 28px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cost-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(8, 8, 8, 0.05);
}

.cost-icon {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 162, 74, 0.7);
  border-radius: 50%;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 14px 1px no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) center / 1px 14px no-repeat,
    rgba(201, 162, 74, 0.08);
}

.cost-card span {
  color: var(--ink);
  font-weight: 800;
}

.cost-card strong {
  margin-top: 16px;
  color: var(--black);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.72;
}

.security-helps {
  margin-top: 22px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.security-helps h3 {
  display: none;
}

.security-helps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-helps li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.security-helps li:nth-child(n+5) {
  display: none;
}

.security-helps span {
  width: auto;
  height: auto;
  border: 0;
  color: transparent;
  font-size: 0;
  flex: 0 0 auto;
}

.security-helps span::before {
  content: "✓";
  color: var(--gold);
  font-size: 0.9rem;
}

.cost-close {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.cost-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.cost-story {
  border-top: 2px solid var(--gold);
  padding-top: 28px;
}

.cost-story h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.cost-story p {
  max-width: 650px;
  color: var(--muted);
}

.cost-story .cost-lede {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 700;
}

.cost-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cost-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.cost-checks span {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(201, 162, 74, 0.55);
  border-radius: 50%;
  background: rgba(201, 162, 74, 0.08);
}

.cost-checks span::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cost-stack {
  display: grid;
  gap: 12px;
}

.cost-stack .cost-card {
  min-height: 0;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border-color: rgba(201, 162, 74, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(8, 8, 8, 0.035);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.cost-stack .cost-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 74, 0.48);
  box-shadow: 0 18px 38px rgba(8, 8, 8, 0.08);
}

.cost-index {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cost-stack .cost-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.cost-stack .cost-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cost-layout .security-helps,
.cost-layout .cost-close {
  display: none;
}

.featured-spotlight-section {
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.045), transparent 36%),
    var(--white);
}

.featured-spotlight {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.18), transparent 34%),
    #0b0b0b;
  box-shadow: 0 26px 70px rgba(8, 8, 8, 0.16);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.featured-spotlight::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(201, 162, 74, 0.18);
  opacity: 0.9;
}

.featured-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--x, 58%) var(--y, 44%), rgba(240, 210, 134, 0.24), transparent 34%),
    linear-gradient(120deg, transparent, rgba(201, 162, 74, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.34s ease;
}

.featured-spotlight:hover,
.featured-spotlight.is-spotlit {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 74, 0.52);
  box-shadow: 0 34px 86px rgba(8, 8, 8, 0.22), 0 0 34px rgba(201, 162, 74, 0.12);
}

.featured-spotlight:hover::after,
.featured-spotlight.is-spotlit::after {
  opacity: 1;
}

.featured-spotlight-media {
  position: relative;
  z-index: 0;
  min-height: 520px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  background: #111;
}

.featured-spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 46%);
}

.featured-spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.featured-spotlight:hover .featured-spotlight-media img,
.featured-spotlight.is-spotlit .featured-spotlight-media img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.07);
}

.featured-spotlight-content {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: clamp(34px, 4.2vw, 58px);
  color: var(--white);
}

.featured-spotlight-content .kicker {
  color: var(--gold-2);
}

.featured-spotlight-content h2 {
  max-width: 620px;
  margin: 18px 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 3.75vw, 3.85rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.featured-spotlight-content p {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
}

.benefit-strip {
  display: none;
}

.benefit-card:hover .benefit-strip {
  transform: none;
}

.benefit-list {
  display: none;
}

.benefit-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.45;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.benefit-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-security::before {
  inset: 2px 7px 3px;
  border: 1.5px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 86% 82%, 50% 100%, 14% 82%, 0 18%);
}

.icon-security::after {
  left: 16px;
  top: 9px;
  width: 1.5px;
  height: 14px;
  background: currentColor;
  box-shadow: -5px 5px 0 -0.5px currentColor, 5px 5px 0 -0.5px currentColor;
}

.icon-shatter::before {
  inset: 5px 8px;
  border: 1.5px solid currentColor;
}

.icon-shatter::after {
  left: 17px;
  top: 7px;
  width: 1.5px;
  height: 20px;
  background: currentColor;
  transform: rotate(23deg);
  box-shadow: -6px 4px 0 -0.5px currentColor, 6px -3px 0 -0.5px currentColor;
}

.icon-uv::before {
  left: 9px;
  top: 9px;
  width: 16px;
  height: 16px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon-uv::after {
  inset: 2px;
  background:
    linear-gradient(currentColor, currentColor) center top / 1.5px 5px no-repeat,
    linear-gradient(currentColor, currentColor) center bottom / 1.5px 5px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) left center / 5px 1.5px no-repeat,
    linear-gradient(90deg, currentColor, currentColor) right center / 5px 1.5px no-repeat;
}

.icon-privacy::before {
  left: 5px;
  top: 10px;
  width: 24px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 14px / 10px;
}

.icon-privacy::after {
  left: 14px;
  top: 13px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.icon-energy::before {
  left: 9px;
  top: 4px;
  width: 15px;
  height: 24px;
  border: 1.5px solid currentColor;
  transform: skewX(-12deg);
}

.icon-energy::after {
  left: 12px;
  top: 13px;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.icon-value::before {
  left: 5px;
  top: 9px;
  width: 24px;
  height: 16px;
  border: 1.5px solid currentColor;
}

.icon-value::after {
  left: 12px;
  top: 13px;
  width: 10px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.benefit-card h3,
.service-card h3,
.timeline-step h3 {
  margin: 20px 0 10px;
  color: inherit;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.benefit-card p,
.service-card p,
.timeline-step p {
  margin-bottom: 0;
  color: inherit;
  opacity: 0.74;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 30ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  opacity: 1;
  line-height: 1.45;
}

.credibility-section {
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.035), transparent 34%),
    var(--soft);
}

.credibility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.credibility-copy {
  border-top: 2px solid var(--gold);
  padding-top: 28px;
}

.credibility-copy h2 {
  max-width: 700px;
  margin: 12px 0 16px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.05rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.credibility-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.7;
}

.credibility-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(201, 162, 74, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.07), transparent 46%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(8, 8, 8, 0.07);
}

.credibility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(240, 210, 134, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.credibility-card:hover::after,
.credibility-card.is-spotlit::after {
  opacity: 1;
}

.partner-mark,
.experience-mark,
.credibility-points,
.credibility-card > p {
  position: relative;
  z-index: 1;
}

.partner-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.partner-mark span {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-mark small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.solar-gard-mark span {
  letter-spacing: 0.04em;
}

.armorcoat-mark span {
  color: rgba(10, 10, 10, 0.76);
}

.experience-mark {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.experience-mark strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 0.9;
}

.experience-mark span {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.credibility-points {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.credibility-points li {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.55;
}

.credibility-card > p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.credibility-section .container {
  display: block;
}

.credibility-section .credibility-copy {
  max-width: 840px;
}

.credibility-section .credibility-copy h2 {
  max-width: 780px;
}

.partner-logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.partner-logo {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(8, 8, 8, 0.05);
}

.partner-logo img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(0.2) saturate(0.86);
}

.solar-gard-mark img {
  max-width: 174px;
}

.armorcoat-mark img {
  max-height: 92px;
}

.partner-logo figcaption {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.partner-logo::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.partner-logo span {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.partner-logo small {
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.armorcoat-mark span {
  color: rgba(10, 10, 10, 0.78);
}

.credibility-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.credibility-card-grid .credibility-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(201, 162, 74, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(201, 162, 74, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(8, 8, 8, 0.045);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.credibility-card-grid .credibility-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 26px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.credibility-card-grid .credibility-card:hover,
.credibility-card-grid .credibility-card.is-spotlit {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 74, 0.48);
  box-shadow: 0 24px 58px rgba(8, 8, 8, 0.085), 0 0 24px rgba(201, 162, 74, 0.08);
}

.credibility-card-grid .credibility-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.credibility-card-grid .credibility-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.58;
  text-transform: none;
}

.credential-logo-card {
  justify-content: space-between;
}

.credential-logo-frame {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 24px;
  padding: 0;
}

.credential-logo-frame img {
  display: block;
  width: auto;
  max-width: 136px;
  max-height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(0.12) saturate(0.9) contrast(0.98);
}

.credential-logo-frame.solar-gard-mark img {
  max-width: 148px;
}

.credential-logo-frame.armorcoat-mark img {
  max-height: 78px;
}

.credential-stat {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 18px 0 auto;
  border: 1px solid rgba(201, 162, 74, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  background: rgba(250, 248, 242, 0.58);
}

.credibility-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(201, 162, 74, 0.36);
}

.credibility-trust-bar span {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.credibility-trust-bar span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 7px;
  height: 12px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.icon,
.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 162, 74, 0.5);
  border-radius: 6px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 18px 2px no-repeat,
    linear-gradient(90deg, var(--gold), var(--gold)) center / 2px 18px no-repeat,
    rgba(201, 162, 74, 0.1);
  clip-path: polygon(50% 0, 92% 18%, 85% 86%, 50% 100%, 15% 86%, 8% 18%);
}

.icon.sun,
.service-icon.sun {
  border-radius: 50%;
  clip-path: none;
  background: radial-gradient(circle, transparent 28%, var(--gold) 30% 36%, transparent 38%), rgba(201, 162, 74, 0.1);
}

.icon.privacy,
.service-icon.privacy {
  clip-path: none;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(201, 162, 74, 0.45) 28% 32%, transparent 32% 64%, rgba(201, 162, 74, 0.45) 64% 68%, transparent 68%),
    rgba(201, 162, 74, 0.1);
}

.icon.energy,
.icon.value,
.icon.crack,
.service-icon.diamond {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.film-finder {
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.08), transparent 42%),
    var(--white);
}

.installation-section {
  background: var(--white);
}

.installation-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.installation-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.installation-image img {
  display: block;
  width: 100%;
  height: min(620px, 62vw);
  object-fit: cover;
  object-position: center;
}

.finder-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.finder-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: stretch;
}

.finder-options {
  display: grid;
  gap: 10px;
}

.finder-option {
  min-height: 54px;
  border: 1px solid rgba(8, 8, 8, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  padding: 0 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.finder-option:hover,
.finder-option.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(240, 210, 134, 0.3), rgba(255, 255, 255, 0.88));
  box-shadow: 0 14px 36px rgba(201, 162, 74, 0.13);
  transform: translateX(4px);
}

.finder-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(8, 8, 8, 0.22);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(201, 162, 74, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.72));
  box-shadow: var(--shadow);
  transition: opacity 0.28s ease, transform 0.28s ease, background-position 0.35s ease;
}

.finder-card.switching {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
}

.finder-label {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-card h3 {
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0;
}

.finder-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.finder-link {
  width: max-content;
  margin-top: 22px;
  color: var(--gold-2);
  font-weight: 850;
  border-bottom: 1px solid var(--gold);
}

.section-angled {
  color: var(--white);
  background: var(--black);
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
}

.services .section-heading h2,
.services .section-heading p {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 74, 0.7);
}

.service-card:hover .service-image {
  transform: scale(1.055);
}

.service-image {
  height: 230px;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
  transition: transform 0.55s ease;
}

.image-security { background-image: url("assets/service-security-film.png"); }
.image-solar { background-image: url("assets/service-solar-control.png"); }
.image-privacy { background-image: url("assets/service-privacy-film.png"); }
.image-decorative { background-image: url("assets/service-decorative-film.png"); }

.service-body {
  padding: 24px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 162, 74, 0.2);
}

.service-links a {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-links a:hover {
  color: var(--white);
}

.service-areas {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 248, 242, 0.78), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.gta-coverage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.gta-coverage::before {
  content: "";
  position: absolute;
  right: min(3vw, 42px);
  top: 50%;
  width: min(44vw, 520px);
  height: min(30vw, 340px);
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
  transform: translateY(-50%) rotate(-8deg);
  opacity: 0.34;
  pointer-events: none;
}

.gta-copy {
  position: relative;
  z-index: 1;
}

.gta-copy h2 {
  max-width: 660px;
}

.gta-copy p {
  max-width: 660px;
  color: var(--muted);
}

.location-panel {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(201, 162, 74, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 74, 0.11), transparent 34%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(8, 8, 8, 0.04);
  backdrop-filter: blur(12px);
}

.gta-map-line {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 162, 74, 0.12);
  border-radius: 52% 48% 44% 56% / 42% 54% 46% 58%;
  opacity: 0.55;
  pointer-events: none;
}

.location-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-badges span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(201, 162, 74, 0.34);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.location-badges span:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 74, 0.62);
  box-shadow: 0 12px 26px rgba(8, 8, 8, 0.07);
}

.coverage-trust-bar {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 162, 74, 0.34);
}

.coverage-trust-bar span {
  position: relative;
  padding-left: 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-trust-bar span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.timeline {
  --timeline-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.timeline::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 35px;
  width: var(--timeline-progress);
  max-width: 84%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(201, 162, 74, 0.38);
  transition: width 0.35s ease;
}

.timeline-step {
  position: relative;
  padding: 74px 22px 0;
  transition: transform 0.24s ease;
  z-index: 2;
}

.timeline-step:hover {
  transform: translateY(-6px);
}

.timeline-step span {
  position: absolute;
  top: 0;
  left: 22px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 0 0 10px var(--white);
  transition: transform 0.24s ease, color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.timeline-step:hover span {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 0 10px var(--white), 0 16px 30px rgba(201, 162, 74, 0.2);
  transform: scale(1.06);
}

.step-detail {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.92rem;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.32s ease, margin-top 0.32s ease;
}

.timeline-step:hover .step-detail,
.timeline-step.in-view .step-detail:focus-within {
  max-height: 120px;
  margin-top: 14px;
  opacity: 1;
}

.cta-bar {
  padding: 62px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.16), transparent 42%),
    var(--black);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
}

.cta-inner p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.trust-section {
  background:
    linear-gradient(135deg, var(--black), #161616);
  color: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.trust-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.trust-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.trust-section .section-heading {
  margin-bottom: 0;
}

.trust-section .section-heading h2 {
  color: var(--white);
}

.projects-section .trust-layout {
  grid-template-columns: 0.72fr 1.28fr;
}

.projects-section .trust-content {
  display: none;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 74, 0.58);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28), 0 0 24px rgba(201, 162, 74, 0.12);
}

.project-image {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.55s ease;
}

.project-card:hover .project-image {
  transform: scale(1.035);
}

.project-retail .project-image { background-image: url("assets/project-retail-storefront.png"); }
.project-office .project-image { background-image: url("assets/project-office-building.png"); }
.project-school .project-image { background-image: url("assets/project-school-institution.png"); }
.project-interior .project-image { background-image: url("assets/project-interior-glass.png"); }

.project-card h3 {
  margin: 0;
  padding: 18px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-grid div {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.2s ease, background 0.2s ease;
}

.trust-layout.in-view .trust-grid div {
  opacity: 1;
  transform: translateY(0);
}

.trust-layout.in-view .trust-grid div:nth-child(2) { transition-delay: 0.06s; }
.trust-layout.in-view .trust-grid div:nth-child(3) { transition-delay: 0.12s; }
.trust-layout.in-view .trust-grid div:nth-child(4) { transition-delay: 0.18s; }
.trust-layout.in-view .trust-grid div:nth-child(5) { transition-delay: 0.24s; }
.trust-layout.in-view .trust-grid div:nth-child(6) { transition-delay: 0.3s; }

.trust-grid div:hover {
  border-color: rgba(201, 162, 74, 0.58);
  background: rgba(201, 162, 74, 0.1);
}

.trust-grid span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  flex: 0 0 auto;
}

.trust-grid span::before {
  content: "✓";
  color: var(--gold-2);
  font-size: 0.9rem;
}

.trust-grid div:last-child {
  font-size: 0;
}

.trust-grid div:last-child::after {
  content: "High-Value Properties";
  font-size: 1rem;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.06), transparent 38%),
    rgba(250, 248, 242, 0.64);
  box-shadow: 0 12px 34px rgba(8, 8, 8, 0.04);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.accordion-item:hover,
.accordion-item.is-open {
  border-color: rgba(201, 162, 74, 0.42);
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.09), transparent 40%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(8, 8, 8, 0.06);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
  list-style: none;
}

.accordion-trigger:focus-visible {
  outline: 2px solid rgba(201, 162, 74, 0.65);
  outline-offset: -4px;
}

.accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 162, 74, 0.48);
  border-radius: 50%;
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-icon {
  background: rgba(201, 162, 74, 0.1);
  border-color: rgba(201, 162, 74, 0.72);
  transform: rotate(180deg);
}

.accordion-item.is-open .accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease, opacity 0.24s ease;
  opacity: 0;
}

.accordion-item.is-open .accordion-panel {
  opacity: 1;
}

.accordion-panel p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding: 22px;
  border: 1px solid rgba(201, 162, 74, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.03), transparent 52%),
    rgba(255, 255, 255, 0.72);
}

.faq-cta h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.faq-cta p {
  margin: 0;
  color: var(--muted);
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.quote-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201, 162, 74, 0.1), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(8, 8, 8, 0.06), transparent 30%),
    var(--white);
}

.quote-note {
  margin-top: 30px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(8, 8, 8, 0.08);
  backdrop-filter: blur(14px);
}

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

.quote-note span {
  margin-top: 4px;
  color: var(--muted);
}

.quote-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.quote-trust-list span {
  margin-top: 0;
  color: var(--ink);
  font-size: 0;
  font-weight: 800;
}

.quote-trust-list span::before {
  font-size: 0.9rem;
}

.quote-trust-list span:nth-child(1)::before {
  content: "✓ No obligation";
}

.quote-trust-list span:nth-child(2)::before {
  content: "✓ Commercial projects welcome";
}

.quote-trust-list span:nth-child(3)::before {
  content: "✓ Response within 1 business day";
}

.quote-form {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 108px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--black);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(8, 8, 8, 0.18);
  backdrop-filter: blur(18px);
}

.quote-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.quote-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 162, 74, 0.36);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(240, 210, 134, 0.16);
  font-size: 0.78rem;
  font-weight: 850;
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 38px;
}

.form-progress span {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: #d8d3c8;
}

.form-progress span.active {
  background: var(--gold);
  animation: progressGlow 0.42s ease both;
}

.form-progress b {
  position: absolute;
  top: 11px;
  left: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d3c8;
  border-radius: 50%;
  color: var(--muted);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.form-progress span.active b {
  border-color: var(--gold);
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: block;
  animation: stepIn 0.32s ease both;
}

legend {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--black);
}

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

.option-grid label,
.field-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.option-grid label {
  min-height: 62px;
  grid-template-columns: 18px 1fr;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(8, 8, 8, 0.28);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(8, 8, 8, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.option-grid label:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.08);
}

.option-grid label:has(input:checked) {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(240, 210, 134, 0.32), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(201, 162, 74, 0.35), 0 14px 34px rgba(201, 162, 74, 0.14);
}

.option-grid input[type="radio"],
.option-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.13);
}

.form-actions {
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(8, 8, 8, 0.16);
}

.submit-btn {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.success {
  color: #49612c;
}

.form-status.error {
  color: #8a2f2f;
}

.quote-form.submitted::after {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 54px;
  height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, var(--gold) 48% 54%, transparent 55%),
    linear-gradient(45deg, transparent 40%, var(--gold) 41% 47%, transparent 48%),
    rgba(240, 210, 134, 0.18);
  box-shadow: 0 14px 34px rgba(201, 162, 74, 0.22);
  animation: successPop 0.55s ease both;
}

.site-footer {
  padding: clamp(56px, 8vw, 86px) 0 28px;
  color: var(--white);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.footer-brand h2 {
  max-width: 360px;
  margin: 28px 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 500;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold-2);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 162, 74, 0.55);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-bottom span:first-child {
  font-size: 0;
}

.footer-bottom span:first-child::before {
  content: "© 2026 Guarda Film";
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes progressGlow {
  from {
    box-shadow: 0 0 0 rgba(201, 162, 74, 0);
  }
  to {
    box-shadow: 0 0 22px rgba(201, 162, 74, 0.4);
  }
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.78);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .finder-layout,
  .installation-layout,
  .credibility-layout,
  .trust-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .projects-section .trust-layout {
    grid-template-columns: 1fr;
  }

  .featured-spotlight {
    grid-template-columns: 1fr;
  }

  .featured-spotlight-media {
    min-height: 420px;
    clip-path: none;
  }

  .featured-spotlight-media img {
    min-height: 0;
  }

  .trust-content {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .bento-grid,
  .project-grid,
  .credibility-card-grid,
  .service-grid,
  .cost-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cost-layout {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .timeline::before {
    left: 36px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
  }

  .timeline::after {
    left: 35px;
    top: 0;
    bottom: auto;
    width: 3px;
    max-width: none;
    height: var(--timeline-progress);
    max-height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-2));
  }

  .timeline-step {
    padding: 0 0 0 96px;
    min-height: 82px;
  }

  .timeline-step span {
    left: 0;
  }

  .cta-inner,
  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .finder-shell {
    grid-template-columns: 1fr;
  }

  .gta-coverage {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .finder-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .finder-option {
    text-align: center;
    padding-inline: 10px;
  }

  .partner-logo-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-header.open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero-grid {
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.46));
  }

  .bento-grid,
  .project-grid,
  .credibility-card-grid,
  .service-grid,
  .trust-grid,
  .option-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .finder-options {
    grid-template-columns: 1fr;
  }

  .finder-option {
    text-align: left;
    padding-inline: 18px;
  }

  .gta-coverage {
    grid-template-columns: 1fr;
  }

  .location-panel {
    padding: 20px;
  }

  .location-badges {
    gap: 10px;
  }

  .location-badges span {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 0.78rem;
  }

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

  .faq-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .finder-card,
  .cost-card {
    min-height: 430px;
  }

  .cost-stack .cost-card {
    min-height: 0;
  }

  .cost-checks {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 192px;
  }

  .partner-logo {
    align-items: center;
    flex-direction: column;
    gap: 18px;
    min-height: 124px;
    padding: 24px;
  }

  .partner-logo img {
    max-width: 156px;
    max-height: 78px;
  }

  .credibility-card-grid .credibility-card {
    min-height: 216px;
  }

  .credential-logo-frame {
    min-height: 76px;
    margin: 14px 0 20px;
  }

  .credential-logo-frame img {
    max-width: 124px;
    max-height: 64px;
  }

  .credential-logo-frame.solar-gard-mark img {
    max-width: 136px;
  }

  .credential-logo-frame.armorcoat-mark img {
    max-height: 68px;
  }

  .credential-stat {
    width: 72px;
    height: 72px;
    font-size: 2rem;
  }

  .credibility-trust-bar {
    display: grid;
    gap: 12px;
  }

  .service-image {
    height: 210px;
  }

  .section-angled {
    clip-path: polygon(0 2vw, 100% 0, 100% calc(100% - 2vw), 0 100%);
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .quote-badges {
    flex-direction: column;
  }

  .quote-badges span {
    width: 100%;
  }

  .cost-grid,
  .security-helps ul {
    grid-template-columns: 1fr;
  }

  .cost-card {
    min-height: 150px;
  }

  .cost-stack .cost-card {
    min-height: 0;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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