:root {
  --bg: #11131d;
  --bg-soft: #171a27;
  --surface: #1c2030;
  --surface-strong: #252a3b;
  --text: #f7f4ec;
  --muted: #b7bbc9;
  --muted-strong: #d7d8df;
  --line: rgba(247, 244, 236, 0.12);
  --cyan: #49d9f2;
  --coral: #ff8068;
  --lime: #b7ff5c;
  --warning: #f2b66d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --glow-cyan: 0 0 34px rgba(73, 217, 242, 0.24);
  --glow-coral: 0 0 34px rgba(255, 128, 104, 0.2);
  --radius: 8px;
  --container: 1180px;
  --header-height: 76px;
  --font-sans: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  max-width: 100%;
}

body {
  min-width: 320px;
  max-width: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(73, 217, 242, 0.11), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(255, 128, 104, 0.1), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 28, 41, 0.98), rgba(17, 19, 29, 1) 48%),
    var(--bg);
  background-size: auto, auto, 52px 52px, 52px 52px, auto, auto;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #071014;
  background: var(--lime);
}

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

.section {
  padding: 100px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #071014;
  background: var(--lime);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: var(--header-height);
  background: rgba(17, 19, 29, 0.84);
  border-bottom: 1px solid rgba(247, 244, 236, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 19, 29, 0.96);
  border-color: rgba(73, 217, 242, 0.18);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  line-height: 1.1;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 0 14px rgba(73, 217, 242, 0.14);
}

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

.main-nav a,
.footer-nav a {
  position: relative;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.main-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--coral));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  background: rgba(73, 217, 242, 0.1);
  border-color: rgba(73, 217, 242, 0.42);
  box-shadow: 0 0 22px rgba(73, 217, 242, 0.15);
}

.btn:hover,
.btn:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(183, 255, 92, 0.6);
  box-shadow: var(--glow-cyan);
}

.btn-primary {
  color: #071014;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(73, 217, 242, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow:
    0 18px 46px rgba(183, 255, 92, 0.24),
    0 0 28px rgba(73, 217, 242, 0.26);
}

.btn-secondary {
  background: rgba(255, 128, 104, 0.1);
  border-color: rgba(255, 128, 104, 0.34);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--text);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 16%, rgba(73, 217, 242, 0.18), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(255, 128, 104, 0.16), transparent 34%),
    linear-gradient(115deg, rgba(73, 217, 242, 0.09), transparent 34%),
    linear-gradient(235deg, rgba(255, 128, 104, 0.08), transparent 36%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 128, 104, 0.34);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  font-weight: 900;
}

h3 {
  font-size: 1.3rem;
  font-weight: 900;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: var(--muted-strong);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-stats dt {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 18px;
}

.hero-content,
.about-copy,
.about-panel,
.contact-copy,
.contact-form,
.price-card,
.project-card,
.comparison-card,
.maintenance-banner {
  min-width: 0;
}

.logo-stage {
  display: grid;
  min-height: 248px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 22%, rgba(73, 217, 242, 0.18), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(73, 217, 242, 0.09), rgba(255, 128, 104, 0.075)),
    rgba(15, 18, 28, 0.92);
  background-size: auto, 28px 28px, 28px 28px, auto, auto;
  border: 1px solid rgba(73, 217, 242, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo-stage img {
  border-radius: 22px;
  filter: drop-shadow(0 0 24px rgba(73, 217, 242, 0.28));
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comparison-card,
.price-card,
.project-card,
.testimonial-shell,
.about-panel,
.contact-form {
  background: rgba(28, 32, 48, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.comparison-card {
  padding: 20px;
}

.comparison-card h2 {
  margin-bottom: 16px;
  font-size: 1.12rem;
  line-height: 1.28;
}

.comparison-card ul,
.feature-list,
.about-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-card li,
.feature-list li,
.about-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
}

.comparison-card li::before,
.feature-list li::before,
.about-panel li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(73, 217, 242, 0.5);
}

.generic-card li::before {
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 128, 104, 0.48);
}

.comparison-label,
.plan-name,
.project-category,
.maintenance-kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.generic-card .comparison-label {
  color: var(--coral);
}

.trade-marquee {
  padding: 44px 0 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(73, 217, 242, 0.08), rgba(255, 128, 104, 0.075)),
    rgba(255, 255, 255, 0.018);
  border-block: 1px solid rgba(247, 244, 236, 0.08);
}

.marquee-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 22px;
}

.marquee-heading .eyebrow {
  margin-bottom: 0;
}

.marquee-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.marquee-shell {
  position: relative;
  display: flex;
  gap: 14px;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-shell::before,
.marquee-shell::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  content: "";
  pointer-events: none;
}

.marquee-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  min-width: max-content;
  padding-block: 4px;
  animation: marqueeMove 58s linear infinite;
}

.marquee-shell:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--muted-strong);
  background: rgba(28, 32, 48, 0.72);
  border: 1px solid rgba(247, 244, 236, 0.11);
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(73, 217, 242, 0.1);
  font-weight: 850;
  white-space: nowrap;
}

.marquee-track span:nth-child(3n + 1) {
  border-color: rgba(73, 217, 242, 0.24);
}

.marquee-track span:nth-child(3n + 2) {
  border-color: rgba(183, 255, 92, 0.2);
}

.marquee-track span:nth-child(3n) {
  border-color: rgba(255, 128, 104, 0.22);
}

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

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-8px);
  background: rgba(30, 34, 50, 0.96);
  border-color: rgba(73, 217, 242, 0.48);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(73, 217, 242, 0.28);
}

.price-card.featured {
  border-color: rgba(183, 255, 92, 0.5);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(183, 255, 92, 0.16);
}

.price-card.featured:hover,
.price-card.featured:focus-within {
  border-color: rgba(255, 128, 104, 0.62);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(255, 128, 104, 0.28),
    0 0 30px rgba(183, 255, 92, 0.18);
}

.badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: #10140b;
  background: var(--lime);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.price-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.price {
  margin: 0;
  color: var(--text);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.plan-intro {
  margin-bottom: 24px;
  color: var(--muted-strong);
}

.feature-list {
  margin-bottom: 28px;
}

.feature-list li::before {
  background: var(--lime);
  box-shadow: 0 0 12px rgba(183, 255, 92, 0.5);
}

.btn-card {
  width: 100%;
  margin-top: auto;
}

.maintenance-banner {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(73, 217, 242, 0.13), rgba(183, 255, 92, 0.1), rgba(255, 128, 104, 0.13)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(183, 255, 92, 0.24);
  border-radius: var(--radius);
}

.maintenance-banner h3,
.maintenance-banner p {
  margin-bottom: 0;
}

.maintenance-banner > p {
  color: var(--muted-strong);
}

.seo-hub {
  padding-top: 86px;
  background:
    linear-gradient(135deg, rgba(73, 217, 242, 0.04), transparent 34%);
}

.seo-hub-compact {
  padding-top: 68px;
}

.seo-hub-compact .section-heading {
  margin-bottom: 28px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seo-link-grid a {
  display: grid;
  min-height: 136px;
  align-content: space-between;
  gap: 18px;
  padding: 20px;
  background: rgba(28, 32, 48, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.seo-link-grid a:hover,
.seo-link-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(73, 217, 242, 0.5);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.2),
    0 0 22px rgba(73, 217, 242, 0.16);
}

.seo-link-grid span {
  width: fit-content;
  padding: 5px 8px;
  color: #071014;
  background: var(--lime);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-link-grid strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.seo-hub-compact .seo-link-grid a {
  min-height: 112px;
  gap: 12px;
  padding: 17px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.seo-hub-compact .seo-link-grid a:hover,
.seo-hub-compact .seo-link-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(73, 217, 242, 0.42);
  box-shadow:
    0 13px 28px rgba(0, 0, 0, 0.16),
    0 0 20px rgba(73, 217, 242, 0.14);
}

.seo-hub-compact .seo-link-grid strong {
  font-size: 1rem;
}

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

.portfolio-disclaimer {
  max-width: 920px;
  margin: -16px 0 28px;
  padding: 18px 20px;
  color: var(--muted-strong);
  background:
    linear-gradient(90deg, rgba(255, 128, 104, 0.08), rgba(73, 217, 242, 0.045)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 128, 104, 0.24);
  border-radius: var(--radius);
  box-shadow: none;
}

.portfolio-disclaimer strong {
  color: var(--coral);
}

.filter-btn {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.is-active {
  color: #071014;
  background: var(--cyan);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(73, 217, 242, 0.2);
}

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

.project-card {
  overflow: hidden;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(73, 217, 242, 0.48);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.32),
    var(--glow-cyan);
}

.project-card.is-hidden {
  display: none;
}

.project-media {
  display: grid;
  min-height: 158px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(73, 217, 242, 0.16), rgba(183, 255, 92, 0.1)),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.project-media span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #071014;
  background: var(--cyan);
  border-radius: 8px;
  font-size: 1.32rem;
  font-weight: 950;
  box-shadow: 0 0 28px rgba(73, 217, 242, 0.28);
}

.project-media.electricity {
  background:
    linear-gradient(135deg, rgba(73, 217, 242, 0.18), rgba(255, 128, 104, 0.12)),
    var(--surface);
}

.project-media.garden,
.project-media.landscape {
  background:
    linear-gradient(135deg, rgba(183, 255, 92, 0.18), rgba(73, 217, 242, 0.1)),
    var(--surface);
}

.project-media.renovation {
  background:
    linear-gradient(135deg, rgba(255, 128, 104, 0.16), rgba(242, 182, 109, 0.12)),
    var(--surface);
}

.project-media.voltage {
  background:
    linear-gradient(135deg, rgba(73, 217, 242, 0.2), rgba(183, 255, 92, 0.12)),
    var(--surface);
}

.project-media.building span,
.project-media.renovation span {
  background: var(--coral);
}

.project-media.garden span,
.project-media.landscape span {
  background: var(--lime);
}

.project-body {
  padding: 22px;
}

.project-body h3 {
  margin-bottom: 10px;
}

.project-body p:not(.project-category) {
  margin-bottom: 18px;
  color: var(--muted-strong);
}

.project-body strong {
  color: var(--lime);
}

.showcase-lab {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.showcase-screen {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  align-self: start;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.022)),
    rgba(28, 32, 48, 0.86);
  border: 1px solid rgba(73, 217, 242, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.showcase-screen::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 16%, rgba(73, 217, 242, 0.14), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.screen-topline,
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.screen-topline span,
.signal-row span,
.project-mini {
  width: fit-content;
  padding: 6px 9px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.browser-preview {
  position: relative;
  overflow: hidden;
  min-height: 266px;
  background: rgba(14, 17, 27, 0.72);
  border: 1px solid rgba(73, 217, 242, 0.2);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.browser-preview[data-preview-theme="lime"] {
  border-color: rgba(183, 255, 92, 0.25);
}

.browser-preview[data-preview-theme="coral"] {
  border-color: rgba(255, 128, 104, 0.28);
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border-radius: 50%;
}

.browser-bar span:nth-child(2) {
  background: var(--warning);
}

.browser-bar span:nth-child(3) {
  background: var(--lime);
}

.browser-canvas {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 18px;
  min-height: 228px;
  padding: 22px;
}

.preview-sidebar,
.preview-content {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-sidebar::before,
.preview-sidebar::after {
  position: absolute;
  right: 18px;
  left: 18px;
  height: 12px;
  content: "";
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.preview-sidebar::before {
  top: 24px;
}

.preview-sidebar::after {
  top: 54px;
  width: 54%;
}

.preview-content {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 20px;
}

.preview-line {
  display: block;
  height: 11px;
  width: 78%;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.preview-line.line-strong {
  width: 66%;
  height: 18px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  box-shadow: 0 0 24px rgba(73, 217, 242, 0.22);
}

.browser-preview[data-preview-theme="lime"] .preview-line.line-strong {
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.browser-preview[data-preview-theme="coral"] .preview-line.line-strong {
  background: linear-gradient(90deg, var(--coral), var(--warning));
}

.preview-line.short {
  width: 46%;
}

.preview-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.preview-tiles span {
  min-height: 52px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.scan-line {
  position: absolute;
  inset: auto 0 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, rgba(73, 217, 242, 0.14), transparent);
  opacity: 0.7;
  transform: translateY(-220px);
  animation: scanLine 4.8s linear infinite;
  pointer-events: none;
}

.showcase-copy {
  display: grid;
  gap: 10px;
}

.showcase-copy h3 {
  margin-bottom: 0;
  font-size: 1.8rem;
}

.showcase-copy p:not(.project-category) {
  margin-bottom: 0;
  color: var(--muted-strong);
}

.signal-row {
  justify-content: flex-start;
}

.signal-row span {
  color: #071014;
  background: var(--lime);
  border-color: transparent;
}

.showcase-link {
  width: fit-content;
}

.showcase-stack {
  display: grid;
  gap: 14px;
}

.showcase-card {
  perspective: 900px;
}

.showcase-card.is-hidden {
  display: none;
}

.showcase-trigger {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 152px;
  gap: 10px;
  padding: 22px 22px 22px 86px;
  color: var(--text);
  text-align: left;
  background:
    radial-gradient(circle at var(--mx, 20%) var(--my, 20%), rgba(73, 217, 242, 0.08), transparent 32%),
    rgba(28, 32, 48, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.showcase-trigger::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--coral));
  border-radius: 999px;
  opacity: 0.55;
  transition:
    width 180ms ease,
    opacity 180ms ease;
}

.showcase-card:nth-child(2) .showcase-trigger,
.showcase-card:nth-child(4) .showcase-trigger {
  background:
    radial-gradient(circle at var(--mx, 20%) var(--my, 20%), rgba(183, 255, 92, 0.08), transparent 32%),
    rgba(28, 32, 48, 0.82);
}

.showcase-card:nth-child(3) .showcase-trigger {
  background:
    radial-gradient(circle at var(--mx, 20%) var(--my, 20%), rgba(255, 128, 104, 0.08), transparent 32%),
    rgba(28, 32, 48, 0.82);
}

.showcase-card.is-active .showcase-trigger,
.showcase-trigger:hover,
.showcase-trigger:focus-visible {
  border-color: rgba(73, 217, 242, 0.48);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(73, 217, 242, 0.24);
}

.showcase-card.is-active .showcase-trigger::after,
.showcase-trigger:hover::after,
.showcase-trigger:focus-visible::after {
  width: 76px;
  opacity: 1;
}

.project-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #071014;
  background: var(--cyan);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(73, 217, 242, 0.3);
}

.showcase-card:nth-child(2) .project-number,
.showcase-card:nth-child(4) .project-number {
  background: var(--lime);
}

.showcase-card:nth-child(3) .project-number {
  background: var(--coral);
}

.showcase-trigger strong {
  font-size: 1.25rem;
  line-height: 1.15;
}

.showcase-trigger > span:last-child {
  color: var(--muted-strong);
}

.portfolio-note {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-shell {
  max-width: 900px;
  padding: 28px;
  overflow: hidden;
  border-color: rgba(73, 217, 242, 0.2);
}

.testimonial-track {
  position: relative;
  min-height: 246px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 24px;
  margin: 0;
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  pointer-events: none;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.35;
}

.testimonial figcaption {
  display: grid;
  gap: 4px;
}

.testimonial figcaption span {
  color: var(--muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.icon-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.icon-btn span {
  font-size: 1.75rem;
  line-height: 1;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(183, 255, 92, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: rgba(255, 255, 255, 0.26);
  border: 0;
  border-radius: 50%;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.dot.is-active {
  background: var(--lime);
  box-shadow: none;
  transform: scale(1.18);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 42px;
  align-items: center;
}

.about-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.about-panel {
  padding: 28px;
  border-color: rgba(183, 255, 92, 0.2);
}

.about-panel img {
  margin-bottom: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.contact-direct {
  display: grid;
  gap: 4px;
  max-width: 420px;
  margin-top: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-direct span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-direct a {
  color: var(--cyan);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted-strong);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(73, 217, 242, 0.72);
  box-shadow: 0 0 0 3px rgba(73, 217, 242, 0.1);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 36px 0;
  background: #0f111a;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.footer-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: right;
}

.footer-meta a {
  color: var(--cyan);
  font-weight: 800;
}

.footer-meta p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #071014;
  background: var(--lime);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.back-to-top span {
  font-size: 1.25rem;
  font-weight: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(183, 255, 92, 0.24);
}

.legal-main {
  background:
    linear-gradient(135deg, rgba(73, 217, 242, 0.04), transparent 32%),
    linear-gradient(215deg, rgba(255, 128, 104, 0.035), transparent 34%);
}

.legal-hero {
  padding-top: 86px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.legal-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-right: 18px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.legal-intro h1 {
  margin-bottom: 18px;
  font-size: 3.3rem;
}

.legal-intro p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.legal-update {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-card {
  grid-column: 2;
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 24px;
  background: rgba(28, 32, 48, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-size: 1.42rem;
}

.legal-card p {
  color: var(--muted-strong);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(73, 217, 242, 0.4);
  text-underline-offset: 4px;
}

.legal-card code {
  color: var(--lime);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2px 5px;
}

.thanks-header {
  grid-template-columns: auto 1fr auto;
}

.thanks-header .header-cta {
  grid-column: 3;
}

.thanks-main {
  min-height: calc(100svh - var(--header-height));
}

.thanks-hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 96px 0;
}

.thanks-layout {
  display: grid;
  gap: 34px;
  max-width: 940px;
}

.thanks-copy {
  max-width: 840px;
}

.thanks-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.thanks-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

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

.thanks-card {
  grid-column: auto;
  max-width: 100%;
  padding: 30px;
  border-color: rgba(73, 217, 242, 0.2);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(73, 217, 242, 0.08);
}

.thanks-card h2 {
  margin-bottom: 16px;
}

.thanks-card p {
  font-size: 1.02rem;
}

.legal-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
}

.legal-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  box-shadow: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@keyframes scanPreview {
  0% {
    top: 36px;
    opacity: 0;
  }

  12% {
    opacity: 0.9;
  }

  88% {
    opacity: 0.9;
  }

  100% {
    top: calc(100% - 2px);
    opacity: 0;
  }
}

@keyframes scanLine {
  from {
    transform: translateY(-220px);
  }

  to {
    transform: translateY(90px);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 14px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .marquee-track {
    animation: none;
  }

  .marquee-shell {
    overflow-x: auto;
    mask-image: none;
  }

  .marquee-shell::before,
  .marquee-shell::after {
    display: none;
  }

  .marquee-track[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .marquee-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .marquee-heading h2 {
    font-size: 1.28rem;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    order: 3;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 22px;
    background: rgba(17, 19, 29, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 6px;
    font-size: 1rem;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .showcase-lab,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 700px;
  }

  .showcase-screen {
    position: relative;
    top: auto;
  }

  .legal-intro {
    position: relative;
    top: auto;
    padding-right: 0;
  }

  .legal-card {
    grid-column: auto;
  }

  .thanks-hero {
    align-items: start;
    padding: 84px 0;
  }

  .thanks-layout {
    max-width: 760px;
  }

  .legal-intro h1 {
    font-size: 2.34rem;
  }

  .pricing-grid,
  .project-grid,
  .seo-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .trade-marquee {
    padding: 34px 0 44px;
  }

  .marquee-track span {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2.34rem;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 1.9rem;
  }

  .header-inner {
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .header-cta {
    display: none;
  }

  .thanks-header .header-cta {
    display: inline-flex;
    justify-self: end;
  }

  .thanks-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    order: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats,
  .comparison-grid,
  .pricing-grid,
  .project-grid,
  .seo-link-grid,
  .browser-canvas,
  .maintenance-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logo-stage {
    min-height: 220px;
  }

  .pricing-grid,
  .project-grid {
    gap: 14px;
  }

  .price-card,
  .testimonial-shell,
  .about-panel,
  .contact-form,
  .legal-card,
  .thanks-card {
    padding: 22px;
  }

  .thanks-hero {
    min-height: auto;
    padding: 58px 0 86px;
  }

  .thanks-layout {
    gap: 24px;
  }

  .thanks-copy h1 {
    margin-bottom: 18px;
    font-size: 2.38rem;
  }

  .thanks-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .thanks-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .testimonial-track {
    min-height: 320px;
  }

  .testimonial blockquote {
    font-size: 1.12rem;
  }

  .footer-grid,
  .footer-meta {
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.04rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-stats div,
  .comparison-card,
  .price-card,
  .project-body,
  .testimonial-shell,
  .about-panel,
  .contact-form {
    padding: 18px;
  }

  .price-top {
    display: grid;
    gap: 8px;
  }

  .project-media {
    min-height: 136px;
  }

  .showcase-trigger {
    min-height: 170px;
    padding: 18px;
  }

  .legal-intro h1 {
    font-size: 2.04rem;
  }

  .showcase-trigger .project-number {
    position: static;
  }

  .showcase-link {
    width: 100%;
  }
}
