:root {
  --ink: #05070b;
  --ink-2: #07101c;
  --ink-3: #0c1726;
  --panel: #101b2b;
  --panel-2: #142235;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(216, 173, 70, 0.44);
  --text: #f8fafc;
  --muted: #b9c5d4;
  --soft: #8191a8;
  --gold: #d8ad46;
  --gold-2: #f1cf72;
  --blue: #2367c9;
  --cyan: #43d2ff;
  --green: #5af2aa;
  --danger-muted: #7e8795;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: 1180px;
  --header-height: 134px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 142px;
}

body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(216, 173, 70, 0.06), transparent 34%),
    linear-gradient(220deg, rgba(35, 103, 201, 0.16), transparent 38%),
    linear-gradient(180deg, var(--ink) 0%, #07101c 44%, #030508 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 86%);
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #07101c;
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  padding: 10px 12px 12px;
  border-bottom: 0;
  background: #000000;
  pointer-events: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: #000000;
  box-shadow: none;
}

.header-inner {
  width: min(calc(100% - 24px), 1600px);
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid rgba(216, 173, 70, 0.5);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    #05070b;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.065);
  backdrop-filter: none;
  pointer-events: auto;
}

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

.site-header .brand {
  flex: 0 0 360px;
  gap: 0;
  overflow: visible;
}

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

.brand-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 66px;
  border: 0;
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(241, 207, 114, 0.2), rgba(35, 103, 201, 0.1)),
    rgba(255, 255, 255, 0.025);
  color: transparent;
  font-size: 2.15rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  -webkit-text-fill-color: transparent;
  background-clip: text, border-box;
  -webkit-background-clip: text, border-box;
  text-shadow: 0 0 20px rgba(216, 173, 70, 0.34);
}

.brand::after {
  content: "";
  width: 1px;
  height: 66px;
  background: linear-gradient(180deg, transparent, rgba(216, 173, 70, 0.55), transparent);
  order: 2;
}

.brand-copy {
  display: grid;
  order: 3;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 950;
  white-space: nowrap;
}

.brand-copy strong span,
.brand-copy strong em {
  color: var(--gold-2);
  font-style: normal;
}

.brand-copy strong em {
  color: #1d66bb;
}

.brand-copy small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-copy small::before,
.brand-copy small::after {
  content: "";
  width: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.brand-copy small::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.brand-copy small span {
  color: var(--gold-2);
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-height: 82px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 14px 34px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.site-nav a {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  width: 78px;
  min-height: 82px;
  padding: 10px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  color: #eff4fb;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
  transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.site-nav a:last-child {
  border-right: 0;
}

.site-nav a svg {
  width: 24px;
  height: 24px;
  color: currentColor;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.site-nav a span {
  display: block;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: linear-gradient(180deg, rgba(216, 173, 70, 0.12), rgba(216, 173, 70, 0.035));
  color: var(--gold-2);
  outline: none;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  box-shadow: 0 -8px 18px rgba(216, 173, 70, 0.5);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.header-cta {
  flex: 0 0 auto;
  min-height: 70px;
  min-width: 218px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 232, 154, 0.72);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ffe99a, #d8ad46 52%, #a97117),
    var(--gold);
  color: #08111d;
  font-size: 1rem;
  box-shadow: 0 0 0 5px rgba(216, 173, 70, 0.12), 0 18px 34px rgba(216, 173, 70, 0.26), inset 0 0 0 1px rgba(46, 25, 3, 0.22);
  white-space: nowrap;
}

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

.header-cta svg,
.btn svg,
.icon-button svg,
.solution-card svg,
.project-top svg,
.pill-grid svg,
.contact-direct svg,
.whatsapp-float svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.header-cta svg {
  width: 28px;
  height: 28px;
}

.icon-button {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.section-shell {
  position: relative;
  padding: 150px 0 34px;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.section-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 70, 0.72), transparent);
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(8, 15, 25, 0.72);
  border-block: 1px solid rgba(255, 255, 255, 0.075);
}

.hero-banner-shell {
  width: min(calc(100% - 24px), 1360px);
  display: grid;
  gap: 18px;
}

.home-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(216, 173, 70, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 173, 70, 0.08), rgba(35, 103, 201, 0.08)),
    #03070d;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-banner img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 115px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-message-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(216, 173, 70, 0.28);
  border-radius: var(--radius);
  background: #03070d;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-message-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.hero-message-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-hotspot {
  position: absolute;
  z-index: 2;
  border-radius: var(--radius);
}

.hero-hotspot:focus-visible {
  outline: 3px solid rgba(241, 207, 114, 0.9);
  outline-offset: 4px;
}

.hero-hotspot-primary {
  left: 4.8%;
  top: 63.6%;
  width: 23.8%;
  height: 10.4%;
}

.hero-hotspot-secondary {
  left: 29.8%;
  top: 63.6%;
  width: 15.3%;
  height: 10.4%;
}

.media-section-shell {
  width: min(calc(100% - 24px), 1360px);
}

.beyond-site-art,
.solutions-art,
.portfolio-art,
.process-art,
.differentials-art,
.plans-art,
.niches-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(216, 173, 70, 0.24);
  border-radius: var(--radius);
  background: #03070d;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.beyond-site-art::after,
.solutions-art::after,
.portfolio-art::after,
.process-art::after,
.differentials-art::after,
.plans-art::after,
.niches-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.beyond-site-art img,
.solutions-art img,
.portfolio-art img,
.process-art img,
.differentials-art img,
.plans-art img,
.niches-art img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.portfolio-hotspot,
.plans-hotspot {
  position: absolute;
  z-index: 2;
  border-radius: var(--radius);
}

.portfolio-hotspot:focus-visible,
.plans-hotspot:focus-visible {
  outline: 3px solid rgba(241, 207, 114, 0.92);
  outline-offset: 4px;
}

.plans-hotspot {
  top: 78.4%;
  height: 6%;
}

.plans-hotspot-essential {
  left: 5.8%;
  width: 22.5%;
}

.plans-hotspot-professional {
  left: 35.4%;
  width: 27%;
}

.plans-hotspot-management {
  left: 67.3%;
  width: 25.4%;
}

.portfolio-hotspot-regina,
.portfolio-hotspot-tattoo,
.portfolio-hotspot-robson,
.portfolio-hotspot-lider {
  top: 78.2%;
  width: 12.5%;
  height: 4.9%;
}

.portfolio-hotspot-regina {
  left: 3.9%;
}

.portfolio-hotspot-tattoo {
  left: 27.3%;
}

.portfolio-hotspot-robson {
  left: 52.4%;
}

.portfolio-hotspot-lider {
  left: 75.5%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-underbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(5, 11, 20, 0.76);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-intro h1 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: 2rem;
}

.hero-intro p {
  max-width: 780px;
  margin-bottom: 0;
  color: #d9e4f2;
}

.hero-underbar .eyebrow {
  margin-bottom: 8px;
}

.hero-underbar .hero-actions {
  justify-content: flex-end;
  margin-bottom: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

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

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 2.86rem;
  font-weight: 950;
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d9e4f2;
  font-size: 1.16rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, #f5d680, #d8ad46 48%, #a97117);
  color: #07101c;
  box-shadow: 0 18px 44px rgba(216, 173, 70, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 52px rgba(216, 173, 70, 0.3);
}

.btn-ghost,
.btn-plan {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.btn-ghost:hover,
.btn-plan:hover,
.btn-ghost:focus-visible,
.btn-plan:focus-visible {
  border-color: rgba(216, 173, 70, 0.54);
  background: rgba(216, 173, 70, 0.1);
  color: var(--gold-2);
}

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

.hero-metrics div {
  min-height: 84px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.5rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 456px;
}

.logo-showcase {
  position: relative;
  z-index: 3;
  width: min(100%, 330px);
  margin-left: auto;
  border: 1px solid rgba(216, 173, 70, 0.34);
  border-radius: var(--radius);
  overflow: hidden;
  background: #03070d;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
}

.logo-showcase::after,
.about-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 46%, transparent 55%);
  transform: translateX(-120%);
  animation: shine 7s ease-in-out infinite;
}

.logo-showcase img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.device-stage {
  position: absolute;
  left: 0;
  right: 18px;
  bottom: 0;
  height: 268px;
}

.notebook {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: min(88%, 520px);
  min-height: 218px;
  border: 1px solid rgba(67, 210, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(20, 34, 53, 0.96), rgba(5, 11, 20, 0.98)),
    #0a1422;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.46);
  overflow: hidden;
}

.window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
}

.window-bar span:nth-child(2) {
  background: var(--cyan);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  padding: 14px;
}

.dash-panel,
.dash-chart {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  min-height: 66px;
}

.dash-panel {
  padding: 12px;
}

.dash-panel.wide {
  grid-row: span 2;
}

.dash-panel small,
.phone-screen small {
  display: block;
  color: var(--soft);
}

.dash-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1.42rem;
  line-height: 1;
}

.trend {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 0.86rem;
}

.trend.up {
  color: var(--green);
}

.mini-line {
  position: relative;
  height: 58px;
  margin-top: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(170deg, transparent 0 30%, rgba(67, 210, 255, 0.24) 31% 34%, transparent 35%),
    linear-gradient(148deg, transparent 0 52%, rgba(216, 173, 70, 0.36) 53% 56%, transparent 57%);
}

.dash-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 68px;
  padding: 14px;
}

.dash-chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--gold-2), var(--blue));
}

.phone {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 138px;
  height: 248px;
  border: 1px solid rgba(216, 173, 70, 0.32);
  border-radius: 26px;
  padding: 14px 12px;
  background: linear-gradient(145deg, #111b2a, #05080e);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.45);
}

.phone-notch {
  width: 52px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.phone-screen {
  height: calc(100% - 20px);
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(90, 242, 170, 0.1), transparent 54%),
    #07111d;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(90, 242, 170, 0.14);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 850;
}

.phone-screen strong {
  color: var(--text);
  line-height: 1.1;
}

.phone-screen button {
  min-height: 38px;
  margin-top: 8px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #04100a;
  font-weight: 900;
}

.floating-tags {
  position: absolute;
  left: 34px;
  top: 10px;
  right: 104px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floating-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(216, 173, 70, 0.22);
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.78);
  color: #e8edf5;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

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

.section-heading h2,
.split-copy h2,
.about-copy h2,
.contact-copy h2,
.cta-inner h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  font-weight: 930;
}

.section-heading p,
.split-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.comparison-grid,
.plans-grid,
.contact-grid,
.about-grid,
.split-layout {
  display: grid;
  gap: 24px;
}

.comparison-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: stretch;
}

.comparison-card,
.solution-card,
.project-card,
.timeline-item,
.plan-card,
.contact-form,
.about-logo,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.comparison-card {
  padding: 28px;
}

.comparison-card-featured {
  border-color: rgba(216, 173, 70, 0.42);
  background:
    linear-gradient(140deg, rgba(216, 173, 70, 0.13), rgba(35, 103, 201, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.comparison-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.comparison-title svg {
  width: 28px;
  height: 28px;
  color: var(--gold-2);
}

.comparison-title h3,
.solution-card h3,
.project-card h3,
.timeline-item h3,
.plan-card h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

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

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #e4ebf5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  box-shadow: 0 0 0 4px rgba(216, 173, 70, 0.1);
}

.muted-list li {
  color: var(--danger-muted);
}

.muted-list li::before {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

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

.solution-card {
  min-height: 238px;
  padding: 22px;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 173, 70, 0.4);
  background: rgba(255, 255, 255, 0.065);
}

.solution-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--gold-2);
}

.solution-card h3 {
  margin-bottom: 10px;
}

.solution-card p,
.project-card p,
.timeline-item p,
.plan-card p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}

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

.project-card {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--gold-2);
}

.project-top span {
  padding: 6px 10px;
  border: 1px solid rgba(216, 173, 70, 0.24);
  border-radius: 999px;
  background: rgba(216, 173, 70, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
}

.project-card h3 {
  margin-bottom: 14px;
}

.project-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gold-2);
  font-weight: 900;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(216, 173, 70, 0.2), rgba(67, 210, 255, 0.55), rgba(216, 173, 70, 0.2));
}

.timeline-item {
  position: relative;
  min-height: 240px;
  padding: 24px 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(8, 14, 24, 0.86);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border: 1px solid rgba(216, 173, 70, 0.5);
  border-radius: 999px;
  background: #08111d;
  color: var(--gold-2);
  font-weight: 950;
}

.pill-grid,
.niche-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span,
.niche-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #e7eef8;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.pill-grid svg {
  color: var(--gold-2);
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 590px;
  padding: 28px;
}

.plan-featured {
  border-color: rgba(216, 173, 70, 0.52);
  background:
    linear-gradient(145deg, rgba(216, 173, 70, 0.14), rgba(35, 103, 201, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
}

.plan-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216, 173, 70, 0.12);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 950;
}

.plan-card h3 {
  margin-bottom: 12px;
  font-size: 1.62rem;
}

.plan-card .feature-list {
  margin: 20px 0 26px;
}

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

.split-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.niche-grid {
  justify-content: flex-start;
}

.niche-grid span {
  min-height: 58px;
  padding-inline: 18px;
  flex: 1 1 220px;
}

.cta-band {
  padding: 58px 0;
  background:
    linear-gradient(100deg, rgba(216, 173, 70, 0.16), rgba(67, 210, 255, 0.07)),
    #08111d;
  border-block: 1px solid rgba(216, 173, 70, 0.24);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: 2.5rem;
}

.about-grid {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
}

.about-logo {
  position: relative;
  overflow: hidden;
  background: #03070d;
  border-color: rgba(216, 173, 70, 0.34);
}

.about-logo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-copy p {
  max-width: 760px;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 20px 24px;
  color: #edf4ff;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(216, 173, 70, 0.12);
  color: var(--gold-2);
  flex: 0 0 auto;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

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

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

.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--gold-2);
  font-weight: 900;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #eaf0f8;
  font-weight: 800;
}

.contact-form label:has(textarea),
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(1, 7, 14, 0.58);
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 173, 70, 0.64);
  box-shadow: 0 0 0 4px rgba(216, 173, 70, 0.12);
  background: rgba(1, 7, 14, 0.82);
}

.contact-form option {
  background: #08111d;
  color: var(--text);
}

.site-footer {
  padding: 0;
  border-top: 0;
  background: #02070d;
  overflow: hidden;
}

.footer-media-shell {
  width: min(100%, 1829px);
  margin: 0 auto;
}

.footer-art {
  position: relative;
  margin: 0;
  background: #02070d;
}

.footer-art img {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.footer-hotspot {
  position: absolute;
  z-index: 2;
  border-radius: var(--radius);
}

.footer-hotspot:focus-visible {
  outline: 3px solid rgba(241, 207, 114, 0.92);
  outline-offset: 4px;
}

.footer-hotspot-site,
.footer-hotspot-whatsapp-card,
.footer-hotspot-email {
  left: 36.8%;
  width: 24.35%;
  height: 10.25%;
}

.footer-hotspot-site {
  top: 18.15%;
}

.footer-hotspot-whatsapp-card {
  top: 30.3%;
}

.footer-hotspot-email {
  top: 42.3%;
}

.footer-hotspot-cta {
  left: 36.8%;
  top: 55.1%;
  width: 24.35%;
  height: 9.7%;
}

.footer-hotspot-home,
.footer-hotspot-solutions,
.footer-hotspot-projects,
.footer-hotspot-contact,
.footer-hotspot-privacy,
.footer-hotspot-terms {
  height: 8.8%;
}

.footer-hotspot-home,
.footer-hotspot-solutions,
.footer-hotspot-projects {
  left: 66.9%;
  width: 12.7%;
}

.footer-hotspot-home,
.footer-hotspot-contact {
  top: 21.7%;
}

.footer-hotspot-solutions,
.footer-hotspot-privacy {
  top: 33.35%;
}

.footer-hotspot-projects,
.footer-hotspot-terms {
  top: 45.35%;
}

.footer-hotspot-contact,
.footer-hotspot-privacy,
.footer-hotspot-terms {
  left: 82.25%;
  width: 14.8%;
}

.footer-hotspot-whatsapp-float {
  left: 92.85%;
  top: 87.2%;
  width: 5.9%;
  height: 11.8%;
  border-radius: 999px;
}

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

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

.site-footer .brand {
  flex: 0 1 auto;
  gap: 12px;
}

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

.site-footer .brand-mark {
  width: 48px;
  height: 48px;
  font-size: 1.45rem;
}

.site-footer .brand-copy strong {
  font-size: 1rem;
}

.site-footer .brand-copy small {
  margin-top: 4px;
  font-size: 0.72rem;
}

.site-footer .brand-copy small::before,
.site-footer .brand-copy small::after {
  display: none;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 8px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-2);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #22c55e;
  color: #031008;
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.28);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(34, 197, 94, 0.36);
}

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

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes shine {
  0%,
  70% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 120px;
  }

  html {
    scroll-padding-top: 124px;
  }

  .header-inner {
    height: 98px;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand {
    flex-basis: 224px;
    gap: 10px;
  }

  .site-header .brand {
    flex-basis: 300px;
  }

  .brand-image {
    max-width: 300px;
  }

  .brand-mark {
    width: 56px;
    height: 58px;
    font-size: 1.76rem;
  }

  .brand::after {
    height: 54px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    min-height: 72px;
    padding-inline: 6px;
  }

  .site-nav a {
    width: 70px;
    min-height: 72px;
    font-size: 0.7rem;
  }

  .site-nav a svg {
    width: 21px;
    height: 21px;
  }

  .header-cta {
    min-height: 60px;
    min-width: 190px;
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .header-cta svg {
    width: 23px;
    height: 23px;
  }

  h1 {
    font-size: 2.72rem;
  }

  .section-heading h2,
  .split-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 2.56rem;
  }

  .hero-underbar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-underbar .hero-actions {
    justify-content: flex-start;
  }

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

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 104px;
  }

  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    height: 82px;
    padding: 10px 14px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .site-header .brand {
    flex: 1 1 auto;
    max-width: 280px;
  }

  .brand-mark {
    width: 58px;
    height: 54px;
    font-size: 1.8rem;
  }

  .brand::after {
    height: 50px;
  }

  .icon-button {
    display: grid;
    flex: 0 0 auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    border-radius: 12px;
    background: rgba(5, 9, 16, 0.98);
    box-shadow: var(--shadow);
    overflow: visible;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: auto;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.94rem;
  }

  .site-nav a.is-active::after {
    left: 10px;
    right: auto;
    bottom: 8px;
    width: 38px;
    height: 3px;
  }

  .hero-grid,
  .comparison-grid,
  .split-layout,
  .about-grid,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding-top: 104px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .logo-showcase {
    margin: 0 auto;
    width: min(100%, 360px);
  }

  .device-stage {
    right: 0;
  }

  .phone {
    right: 8px;
  }

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

  .plan-card {
    min-height: auto;
  }

  .cta-inner .btn {
    width: fit-content;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-copy {
    display: none;
  }

  .brand {
    flex: 0 1 auto;
    gap: 0;
  }

  .site-header .brand {
    max-width: 232px;
  }

  .brand-image {
    max-width: 232px;
  }

  .brand::after {
    display: none;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .section-shell {
    min-height: auto;
    padding: 112px 0 24px;
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: 2.08rem;
  }

  .hero-copy p {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .hero-banner-shell {
    width: min(calc(100% - 16px), 1360px);
    gap: 12px;
  }

  .home-banner {
    border-radius: 7px;
  }

  .hero-underbar {
    padding: 16px;
  }

  .hero-intro h1 {
    font-size: 1.42rem;
  }

  .hero-intro p {
    font-size: 0.95rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .hero-metrics {
    display: none;
  }

  .hero-visual {
    position: absolute;
    top: 92px;
    right: -74px;
    z-index: 1;
    min-height: 260px;
    width: 260px;
    opacity: 0.22;
    pointer-events: none;
  }

  .device-stage {
    display: none;
  }

  .logo-showcase {
    width: 260px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .split-copy h2,
  .about-copy h2,
  .contact-copy h2,
  .cta-inner h2 {
    font-size: 2.08rem;
  }

  .solutions-grid,
  .projects-grid,
  .timeline,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .timeline-item {
    min-height: auto;
  }

  .comparison-card,
  .plan-card,
  .contact-form {
    padding: 20px;
  }
}

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

  .section-heading h2,
  .split-copy h2,
  .about-copy h2,
  .contact-copy h2,
  .cta-inner h2 {
    font-size: 1.82rem;
  }

  .btn,
  .header-cta {
    padding-inline: 13px;
  }

  .floating-tags {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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

  body.js-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
