body {
  font-family: var(--font-body);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 212, 0, 0.02) 1px, transparent 1px),
    var(--black);
  background-size: 72px 72px;
  line-height: 1.6;
}

body::selection {
  color: var(--black);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  position: relative;
  padding: var(--space-8) 0;
  overflow: clip;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.2);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(255, 212, 0, 0.18);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 22px rgba(255, 212, 0, 0.16);
}

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

.brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--gray-light);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--yellow);
  box-shadow: var(--glow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.header-cta {
  color: var(--black);
  background: var(--yellow);
}

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

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  box-shadow: 0 0 0 rgba(255, 212, 0, 0), 0 18px 42px rgba(255, 212, 0, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 0 34px rgba(255, 212, 0, 0.34), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 212, 0, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  border-color: var(--yellow);
  box-shadow: var(--glow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 68px) 0 86px;
  background: var(--black);
}

.hero-media,
.hero-media::after,
.technical-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.08);
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.78) 44%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.18) 58%, rgba(5, 5, 5, 0.72) 100%);
}

.technical-grid {
  opacity: 0.44;
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 212, 0, 0.08) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 4.25rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.75rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

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

.hero-actions {
  margin-top: 34px;
}

.hero-badges {
  margin-top: 28px;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-badges svg {
  color: var(--yellow);
}

.trust-strip {
  position: relative;
  padding: 34px 0;
  background: var(--graphite);
  border-block: 1px solid rgba(255, 212, 0, 0.16);
}

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

.trust-card {
  min-height: 158px;
  padding: 20px;
  background: rgba(5, 5, 5, 0.48);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-card svg,
.service-card svg,
.process-step svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--yellow);
  filter: drop-shadow(0 0 12px rgba(255, 212, 0, 0.25));
}

.trust-card h2 {
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.trust-card p,
.section-heading p,
.section-copy p,
.service-card p,
.why-card p,
.process-step p,
.segment-card p,
.contact-copy p,
.faq-list p,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 58px;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-copy {
  max-width: 700px;
}

.section-copy p + p {
  margin-top: 16px;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 800;
}

.mini-list svg {
  color: var(--yellow);
}

.about-section,
.why-section,
.process-section,
.testimonials-section,
.google-reviews-section,
.contact-section {
  background: var(--black-2);
}

.about-image,
.compare-widget {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image::before,
.compare-widget::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 212, 0, 0.22);
  border-radius: var(--radius-sm);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-image figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 14px 16px;
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(255, 212, 0, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.about-image figcaption strong,
.about-image figcaption span {
  display: block;
}

.about-image figcaption span {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.services-section,
.projects-section,
.segments-section,
.instagram-section,
.faq-section {
  background:
    linear-gradient(90deg, rgba(255, 212, 0, 0.03) 1px, transparent 1px),
    var(--black);
  background-size: 96px 96px;
}

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

.service-card,
.why-card,
.process-step,
.testimonial-card,
.quote-form,
.faq-list details {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 270px;
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::after,
.why-card::after {
  content: "";
  position: absolute;
  left: -40%;
  right: -40%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: translateX(-45%);
  transition: transform 420ms ease;
}

.service-card:hover,
.why-card:hover,
.project-card:hover,
.segment-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(255, 212, 0, 0.05), var(--glow), 0 18px 46px rgba(0, 0, 0, 0.32);
}

.service-card:hover::after,
.why-card:hover::after {
  transform: translateX(45%);
}

.service-card h3 {
  min-height: 46px;
}

.service-card a {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: var(--yellow);
  font-weight: 900;
}

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

.why-card {
  min-height: 210px;
  padding: 26px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.why-card strong {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.95rem;
  line-height: 1;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 800;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.filter-btn:hover,
.filter-btn.is-active {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  text-align: left;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.project-card:nth-child(1),
.project-card:nth-child(3) {
  grid-row: span 2;
}

.project-card[hidden] {
  display: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.16) 62%);
}

.project-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.project-card span {
  position: absolute;
  left: 16px;
  right: 54px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
}

.project-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.project-card > svg {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 2;
  color: var(--yellow);
}

.compare-widget {
  height: 520px;
  --compare: 52%;
}

.compare-base,
.compare-after {
  position: absolute;
  inset: 0;
}

.compare-base img,
.compare-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after {
  clip-path: inset(0 calc(100% - var(--compare)) 0 0);
}

.compare-base span,
.compare-after span {
  position: absolute;
  top: 18px;
  padding: 8px 12px;
  z-index: 4;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.compare-base span {
  right: 18px;
}

.compare-after span {
  left: 18px;
}

.compare-widget input {
  position: absolute;
  inset: auto 18px 22px;
  z-index: 6;
  width: calc(100% - 36px);
  accent-color: var(--yellow);
}

.instagram-section {
  isolation: isolate;
}

.instagram-section::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto auto;
  z-index: -1;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.16), transparent 62%);
  filter: blur(6px);
}

.instagram-circuit {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 212, 0, 0.2) 18% 18.16%, transparent 18.16% 100%),
    linear-gradient(0deg, transparent 0 68%, rgba(255, 212, 0, 0.16) 68% 68.18%, transparent 68.18% 100%);
  background-size: 260px 180px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.instagram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.instagram-panel {
  position: relative;
}

.instagram-panel::before,
.instagram-panel::after {
  content: "";
  position: absolute;
  border-radius: var(--radius);
  pointer-events: none;
}

.instagram-panel::before {
  inset: 28px -18px -18px 44px;
  border: 1px solid rgba(255, 212, 0, 0.2);
  box-shadow: var(--glow);
}

.instagram-panel::after {
  width: 180px;
  height: 2px;
  right: 8%;
  top: 10%;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: var(--glow);
}

.instagram-phone {
  position: relative;
  overflow: hidden;
  max-width: 520px;
  margin-left: auto;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    var(--graphite);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  box-shadow: var(--shadow), var(--glow);
}

.instagram-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 32%, rgba(255, 212, 0, 0.12) 42%, transparent 52% 100%);
  transform: translateX(-70%);
  animation: phoneScan 5.5s ease-in-out infinite;
  pointer-events: none;
}

.phone-top,
.instagram-profile,
.instagram-stats,
.instagram-handle {
  position: relative;
  z-index: 1;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.phone-top span {
  width: 72px;
  height: 6px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.phone-top svg {
  color: var(--yellow);
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(5, 5, 5, 0.48);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.instagram-profile img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255, 212, 0, 0.22);
}

.instagram-profile strong,
.instagram-profile span {
  display: block;
}

.instagram-profile strong {
  font-family: var(--font-display);
}

.instagram-profile span {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.instagram-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.instagram-stats span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.86rem;
}

.instagram-stats strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-display);
}

.instagram-feed {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.instagram-feed img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), filter var(--transition);
}

.instagram-feed img:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  filter: brightness(1.08);
}

.instagram-handle {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--yellow);
  background: rgba(255, 212, 0, 0.08);
  border: 1px solid rgba(255, 212, 0, 0.24);
  border-radius: var(--radius);
  font-weight: 900;
}

.instagram-profile-card {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin-left: auto;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #080d12;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow);
}

.instagram-profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 212, 0, 0.1) 38%, transparent 48% 100%),
    radial-gradient(circle at 22% 12%, rgba(255, 212, 0, 0.18), transparent 24%);
  transform: translateX(-55%);
  animation: phoneScan 6s ease-in-out infinite;
  pointer-events: none;
}

.ig-profile-header,
.ig-profile-actions,
.ig-highlights,
.ig-tabs,
.instagram-profile-card .instagram-feed {
  position: relative;
  z-index: 1;
}

.ig-profile-header {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ig-avatar-wrap {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  padding: 5px;
  background: conic-gradient(from 180deg, #ffd400, #ff7a00, #d900ff, #4f5dff, #ffd400);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.24);
}

.ig-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  border: 4px solid #080d12;
  border-radius: 50%;
}

.ig-profile-info {
  min-width: 0;
}

.ig-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ig-title-row strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.ig-verified {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1d9bf0;
  border-radius: 50%;
}

.ig-verified svg {
  width: 12px;
  height: 12px;
  stroke-width: 4;
}

.ig-profile-info > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.ig-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
}

.ig-metrics strong {
  color: var(--white);
  font-weight: 900;
}

.ig-profile-info p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.45;
}

.ig-profile-info a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 0.9rem;
}

.ig-profile-info a svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.ig-profile-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr 44px;
  gap: 8px;
  margin: 22px 0 26px;
}

.ig-profile-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.ig-profile-actions a:first-child {
  color: var(--white);
  background: #4b5cff;
  border-color: #4b5cff;
}

.ig-profile-actions a:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  box-shadow: var(--glow);
}

.ig-highlights {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.ig-highlights span {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.ig-highlights span > svg {
  width: 62px;
  height: 62px;
  padding: 14px;
  color: var(--black);
  background: var(--yellow);
  border: 4px solid #151b22;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 212, 0, 0.58), 0 0 18px rgba(255, 212, 0, 0.18);
}

.ig-highlights small {
  max-width: 76px;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 800;
}

.ig-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ig-tabs svg {
  justify-self: center;
  color: rgba(255, 255, 255, 0.7);
}

.ig-tabs svg:first-child {
  color: var(--yellow);
  filter: drop-shadow(0 0 10px rgba(255, 212, 0, 0.38));
}

.instagram-profile-card .instagram-feed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
}

.instagram-profile-card .instagram-feed a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 140px;
  color: var(--white);
  background: var(--graphite);
}

.instagram-profile-card .instagram-feed img {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.instagram-profile-card .instagram-feed a > svg {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 18px;
  height: 18px;
  color: var(--white);
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.75));
}

.ig-text-post {
  display: grid !important;
  align-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.12), transparent 42%),
    #dbe0e8 !important;
}

.ig-text-post strong {
  color: #222;
  font-family: var(--font-display);
  line-height: 1.18;
}

.ig-text-post span {
  color: #333;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: var(--glow);
}

.process-step {
  min-height: 244px;
  padding: 22px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

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

.segment-card {
  overflow: hidden;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.segment-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.segment-card div {
  padding: 24px;
}

.segment-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--yellow);
  font-weight: 900;
}

.testimonial-slider {
  position: relative;
  max-width: 860px;
}

.testimonial-card {
  display: none;
  min-height: 300px;
  padding: 34px;
}

.testimonial-card.is-active {
  display: block;
}

.testimonial-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.testimonial-card div {
  margin-bottom: 18px;
  color: var(--yellow);
}

.testimonial-card p {
  max-width: 660px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.35rem;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card small {
  color: var(--gray);
}

.google-reviews-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 212, 0, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(255, 212, 0, 0.03) 1px, transparent 1px),
    var(--black-2);
  background-size: auto, 96px 96px, auto;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.google-rating-panel,
.google-source-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.google-rating-panel::before,
.google-source-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: var(--glow);
}

.google-rating-panel {
  border-color: var(--border-strong);
  box-shadow: var(--shadow), var(--glow);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-weight: 900;
}

.rating-number {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 6.5rem);
  line-height: 0.9;
}

.rating-stars {
  margin: 12px 0 22px;
  color: var(--yellow);
  font-size: 1.35rem;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(255, 212, 0, 0.36);
}

.google-rating-panel p,
.google-source-card p,
.google-source-card span {
  color: rgba(255, 255, 255, 0.72);
}

.google-rating-panel .btn {
  margin-top: 24px;
}

.google-source-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--yellow);
  filter: drop-shadow(0 0 12px rgba(255, 212, 0, 0.25));
}

.google-source-card span {
  display: block;
  margin-top: 18px;
  font-size: 0.92rem;
}

.google-source-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--yellow);
  font-weight: 900;
}

.slider-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 10px;
}

.slider-controls button,
.lightbox-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  color: var(--yellow);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 20px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-info a,
.contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-info svg {
  color: var(--yellow);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

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

.form-row-full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: var(--glow);
}

select option {
  color: var(--black);
}

.form-note {
  color: var(--gray);
  font-size: 0.88rem;
}

.site-footer {
  position: relative;
  padding: 64px 0 24px;
  overflow: hidden;
  background: #030303;
  border-top: 1px solid rgba(255, 212, 0, 0.22);
}

.footer-energy {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: var(--glow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.9fr 1.2fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--yellow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-float);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.34), 0 18px 42px rgba(0, 0, 0, 0.35);
  font-weight: 900;
}

.whatsapp-float::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  width: min(100%, 1000px);
  max-height: 78vh;
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #000;
}

.lightbox p {
  margin-top: 16px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
}
