:root {
  --navy: #0f172a;
  --navy-deep: #050816;
  --blue: #1d4ed8;
  --cyan: #38bdf8;
  --slate: #334155;
  --white: #f8fafc;
  --muted: #a7b4c8;
  --line: rgba(148, 163, 184, 0.18);
  --glass: rgba(15, 23, 42, 0.66);
  --glass-strong: rgba(15, 23, 42, 0.88);
  --shadow: 0 24px 90px rgba(2, 8, 23, 0.45);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(29, 78, 216, 0.34), transparent 28rem),
    radial-gradient(circle at 85% 6%, rgba(56, 189, 248, 0.18), transparent 24rem),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 48%, #07111f);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.cookie-modal-open {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 8%, rgba(29, 78, 216, 0.24), transparent 26rem),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 48%, #07111f);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen__shell {
  width: min(100%, 760px);
  padding: 32px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.loading-screen__brand {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.loading-screen__title {
  width: min(100%, 340px);
  height: 32px;
  margin-top: 20px;
  border-radius: 999px;
}

.loading-screen__line {
  width: min(100%, 480px);
  height: 14px;
  margin-top: 12px;
  border-radius: 999px;
}

.loading-screen__line--short {
  width: min(100%, 220px);
}

.loading-screen__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}

.loading-screen__button {
  width: 140px;
  height: 48px;
  border-radius: 10px;
}

.loading-screen__button--secondary {
  width: 120px;
}

.loading-screen__card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(2, 6, 23, 0.36);
}

.loading-screen__card-bar {
  height: 54px;
  border-radius: 0;
}

.loading-screen__card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.loading-screen__card-block {
  height: 16px;
  border-radius: 999px;
}

.loading-screen__card-block--small {
  width: 70%;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.76);
  outline-offset: 4px;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(5, 8, 22, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  gap: 0.05em;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.brand-o {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.02em;
  height: 1.02em;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.55);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.16);
  font-weight: 900;
}

.brand-o::after {
  content: "✦";
  position: absolute;
  bottom: -0.2em;
  font-size: 0.34em;
  color: var(--cyan);
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.35));
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0;
  background: none;
  box-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: white;
  background: rgba(148, 163, 184, 0.1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.75);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 142px;
  isolation: isolate;
}

.hero::after,
.problem::before,
.contact::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.44), transparent);
}

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

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: 9%;
  top: 18%;
  background: rgba(29, 78, 216, 0.24);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: 10%;
  background: rgba(56, 189, 248, 0.12);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 680px;
  color: #d8e2f2;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 14px 42px rgba(29, 78, 216, 0.34), 0 0 34px rgba(56, 189, 248, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 54px rgba(29, 78, 216, 0.42), 0 0 48px rgba(56, 189, 248, 0.25);
}

.btn-secondary {
  background: rgba(248, 250, 252, 0.06);
  border-color: rgba(248, 250, 252, 0.16);
  color: white;
}

.btn-secondary:hover {
  border-color: rgba(56, 189, 248, 0.44);
  background: rgba(56, 189, 248, 0.09);
}

.btn-sm {
  min-height: 42px;
  padding: 0 16px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.pill-grid span,
.trait-row span,
.tags span {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #d7e3f5;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-row span {
  padding: 9px 13px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.industry-hero {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: var(--shadow), 0 0 60px rgba(56, 189, 248, 0.1);
}

.industry-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgba(2, 6, 23, 0.22));
  pointer-events: none;
}

.industry-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.industry-hero:hover img {
  transform: scale(1.025);
}

.problem ul,
.problem-list {
  max-width: 900px;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.problem ul li,
.problem-list li {
  position: relative;
  padding: 15px 18px 15px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.045);
  color: #dbe5f1;
}

.problem ul li::before,
.problem-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--cyan);
  font-weight: 800;
}

.local-hero {
  min-height: 430px;
}

.local-web-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 350px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 42px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius);
  background: radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.18), transparent 34%), linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(8, 18, 36, 0.82));
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: localCardFloat 7s ease-in-out infinite;
}

.local-web-card::before,
.local-web-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(56, 189, 248, 0.17);
  border-radius: 50%;
}

.local-web-card::before { width: 280px; height: 280px; }
.local-web-card::after { width: 390px; height: 390px; }
.local-web-card__pin { z-index: 1; color: var(--cyan); font-size: 4rem; line-height: 1; text-shadow: 0 0 35px rgba(56, 189, 248, 0.55); }
.local-web-card strong { z-index: 1; margin-top: 20px; color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); }

.problem ul li::before,
.problem-list li::before { content: "\2713"; }

.benefits .container ul,
.process .container ol,
.free-value .container ul {
  max-width: 960px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.free-value .btn {
  margin-top: 24px;
}

.benefits .container ul li,
.process .container ol li,
.free-value .container ul li {
  position: relative;
  padding: 17px 20px 17px 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.045);
  color: #dbe5f1;
  text-align: left;
}

.benefits .container ul li::before,
.free-value .container ul li::before {
  content: "\2713";
  position: absolute;
  left: 20px;
  color: var(--cyan);
  font-weight: 800;
}

.process .container ol { counter-reset: process-step; }
.process .container ol li { counter-increment: process-step; }
.process .container ol li::before {
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.faq-section .container > details {
  max-width: 960px;
  margin: 12px auto 0;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.045);
}

.faq-section .container > details summary {
  padding: 20px 0;
  cursor: pointer;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.faq-section .container > details p { padding: 0 0 20px; }
.local-web-card small { z-index: 1; margin-top: 8px; color: var(--muted); font-weight: 700; }

@keyframes localCardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.browser-card {
  width: min(100%, 560px);
  min-height: 390px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.58)),
    radial-gradient(circle at 85% 10%, rgba(56, 189, 248, 0.2), transparent 18rem);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: rotateX(7deg) rotateY(-10deg);
  animation: floatCard 7s ease-in-out infinite;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 54px;
}

.page-browser-visual {
  min-height: 610px;
}

.browser-card--photo {
  width: min(100%, 680px);
  min-height: 0;
  aspect-ratio: 16 / 10;
  background: #081224;
}

.browser-photo {
  height: calc(100% - 52px);
  overflow: hidden;
  background: #081224;
}

.browser-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.browser-card--photo:hover .browser-photo img {
  transform: scale(1.025);
}

@keyframes floatCard {
  0%, 100% { transform: rotateX(7deg) rotateY(-10deg) translateY(0); }
  50% { transform: rotateX(5deg) rotateY(-7deg) translateY(-14px); }
}

.browser-bar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.38);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
}

.browser-bar span:nth-child(1) {
  background: #38bdf8;
}

.browser-bar span:nth-child(2) {
  background: #1d4ed8;
}

.browser-bar p {
  margin: 0 0 0 12px;
  color: #b7c5d9;
  font-size: 0.84rem;
}

.mock-layout {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 338px;
}

.mock-sidebar {
  padding: 26px 16px;
  border-right: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.42);
}

.mock-sidebar span {
  display: block;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.12);
}

.mock-content {
  padding: 28px;
}

.mock-hero {
  height: 108px;
  margin-bottom: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.9), rgba(56, 189, 248, 0.75)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.65), transparent 4rem);
}

.mock-line {
  width: 64%;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.24);
}

.mock-line.long {
  width: 84%;
}

.mock-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

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

.mock-stats strong,
.mock-stats small {
  display: block;
}

.mock-stats strong {
  font-size: 1.5rem;
}

.mock-stats small {
  color: var(--muted);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-cards span {
  aspect-ratio: 1.3;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.16);
}

.orbital-ring {
  position: absolute;
  width: min(86vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 50%;
  animation: slowSpin 24s linear infinite;
}

.orbital-ring::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 15%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 32px var(--cyan);
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

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

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.glass-card,
.service-card,
.portfolio-card,
.price-card,
.audience-panel,
.about-card,
.contact-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.035));
  box-shadow: 0 18px 60px rgba(2, 8, 23, 0.2);
  backdrop-filter: blur(18px);
}

.glass-card,
.service-card {
  min-height: 230px;
  padding: 28px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.glass-card:hover,
.service-card:hover,
.portfolio-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.38);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(248, 250, 252, 0.04));
}

.glass-card p,
.service-card p,
.portfolio-card p,
.price-card p,
.timeline-item p,
.about-card p {
  color: var(--muted);
}

.card-index {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--cyan);
  font-weight: 800;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 800;
}

.split,
.benefit-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.audience-panel {
  padding: 34px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

/* Consistent centered audience block on compact industry/location pages. */
.audience > .container:not(.split) .section-heading {
  margin-bottom: 30px;
}

.audience > .container:not(.split) .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.audience > .container:not(.split) .pill-grid {
  max-width: 900px;
  margin: 0 auto;
}

.pill-grid span,
.trait-row span,
.tags span {
  padding: 9px 13px;
}

blockquote {
  margin: 0;
  padding-left: 22px;
  border-left: 3px solid var(--cyan);
  color: #e2e8f0;
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 700;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.checklist span {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.055);
  color: #e2e8f0;
  font-weight: 700;
}

.checklist span::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--cyan);
  font-weight: 900;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.52), transparent);
}

.timeline-item {
  position: relative;
  padding-top: 72px;
}

.timeline-item span {
  position: absolute;
  top: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 50%;
  background: var(--glass-strong);
  color: var(--cyan);
  font-weight: 900;
  box-shadow: 0 0 36px rgba(56, 189, 248, 0.16);
}

.portfolio-grid {
  display: grid;
  gap: 44px;
}

.portfolio-grid--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.portfolio-grid--duo .portfolio-panel,
.portfolio-grid--trio .portfolio-panel {
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 55px rgba(2, 8, 23, 0.28);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-grid--duo .portfolio-panel:hover,
.portfolio-grid--trio .portfolio-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.4), 0 0 30px rgba(56, 189, 248, 0.08);
}

.portfolio-grid--duo .portfolio-panel img,
.portfolio-grid--trio .portfolio-panel img {
  object-position: left top;
}

@media (max-width: 980px) {
  .portfolio-grid--trio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .portfolio-grid--duo,
  .portfolio-grid--trio {
    grid-template-columns: 1fr;
  }
}

.portfolio-statement {
  max-width: 780px;
  margin: -22px auto 52px;
  color: #dbe7f6;
  font-size: clamp(1.22rem, 2vw, 1.75rem);
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

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

.price-card {
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.project-visual {
  height: 220px;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  overflow: hidden;
  position: relative;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 8px;
}

.visual-one {
  background: linear-gradient(135deg, #0b1120, #123a8f 54%, #38bdf8);
}

.visual-one::before {
  inset: 24px 22px auto;
  height: 62px;
  background: rgba(248, 250, 252, 0.18);
}

.visual-one::after {
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 76px;
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.82) 0 31%, transparent 31% 35%, rgba(248, 250, 252, 0.35) 35% 65%, transparent 65% 69%, rgba(248, 250, 252, 0.22) 69%);
}

.visual-two {
  background: radial-gradient(circle at 30% 25%, rgba(56, 189, 248, 0.75), transparent 7rem), linear-gradient(145deg, #08111f, #1e3a8a);
}

.visual-two::before {
  left: 26px;
  top: 26px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.18);
}

.visual-two::after {
  left: 140px;
  right: 26px;
  top: 46px;
  height: 128px;
  background: rgba(2, 6, 23, 0.32);
}

.visual-three {
  background: linear-gradient(160deg, #020617, #0f172a 45%, #1d4ed8);
}

.visual-three::before {
  left: 22px;
  top: 22px;
  width: 44%;
  height: 76%;
  background: rgba(248, 250, 252, 0.11);
}

.visual-three::after {
  right: 22px;
  top: 22px;
  width: 38%;
  height: 76%;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.5), rgba(248, 250, 252, 0.08));
}

.portfolio-panel {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.66);
  color: white;
  border: 1px solid rgba(148, 163, 184, 0.14);
  isolation: isolate;
}

.portfolio-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.34s ease;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 6px;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.02) 32%, rgba(2, 6, 23, 0.76) 100%),
    rgba(2, 6, 23, 0);
}

.portfolio-title,
.portfolio-cta {
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-title {
  font-size: clamp(1.35rem, 2.7vw, 2.45rem);
  line-height: 1.1;
  font-weight: 800;
}

.portfolio-cta {
  color: #e2e8f0;
  font-weight: 800;
}

.portfolio-cta span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.portfolio-panel:hover img {
  transform: scale(1.035);
}

.portfolio-panel:hover .portfolio-title,
.portfolio-panel:hover .portfolio-cta {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-panel:hover .portfolio-cta span {
  transform: translate(3px, -3px);
}

.portfolio-panel:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.76);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgba(56, 189, 248, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .portfolio-overlay {
    background:
      linear-gradient(180deg, rgba(2, 6, 23, 0.02) 36%, rgba(2, 6, 23, 0.78) 100%),
      rgba(2, 6, 23, 0.08);
    opacity: 0;
    transition: opacity 0.32s ease;
  }

  .portfolio-title,
  .portfolio-cta {
    opacity: 0;
    transform: translateY(12px);
  }

  .portfolio-panel:hover .portfolio-overlay,
  .portfolio-panel:focus-visible .portfolio-overlay {
    opacity: 1;
  }

  .portfolio-panel:focus-visible .portfolio-title,
  .portfolio-panel:focus-visible .portfolio-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-card {
  position: relative;
  padding: 32px;
}

.price-card.featured {
  border-color: rgba(56, 189, 248, 0.48);
  background:
    linear-gradient(180deg, rgba(29, 78, 216, 0.18), rgba(248, 250, 252, 0.04)),
    rgba(15, 23, 42, 0.62);
}

.premium-card {
  border-color: rgba(245, 197, 93, 0.26);
  background:
    radial-gradient(circle at 78% 0%, rgba(245, 197, 93, 0.16), transparent 12rem),
    radial-gradient(circle at 18% 16%, rgba(56, 189, 248, 0.16), transparent 11rem),
    linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.035));
  box-shadow: 0 20px 70px rgba(2, 8, 23, 0.24), 0 0 42px rgba(245, 197, 93, 0.08);
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(245, 197, 93, 0.16), transparent 32%, rgba(56, 189, 248, 0.12));
  opacity: 0.72;
}

.premium-card > * {
  position: relative;
  z-index: 1;
}

.premium-card:hover {
  border-color: rgba(245, 197, 93, 0.42);
  box-shadow: 0 24px 80px rgba(2, 8, 23, 0.28), 0 0 58px rgba(245, 197, 93, 0.12);
}

.popular {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  display: block;
  margin: 24px 0;
  font-size: 2rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 170px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #dbe7f5;
}

.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--cyan);
  font-weight: 900;
}

.about-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 30px;
  background: #0f172a;
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.trait-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

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

.faq-list {
  padding: 12px;
  background: rgba(248, 250, 252, 0.035);
}

.faq-list details {
  padding: 0 20px;
  margin-bottom: 10px;
  background: rgba(15, 23, 42, 0.52);
}

.faq-list details:last-child {
  margin-bottom: 0;
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 1.45rem;
}

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

.faq-list p {
  margin-bottom: 20px;
  color: var(--muted);
}

.contact {
  padding-bottom: 130px;
}

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

.contact-links a {
  width: fit-content;
  color: #dff3ff;
  font-weight: 800;
  border-bottom: 1px solid rgba(56, 189, 248, 0.45);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: #e2e8f0;
  font-size: 0.92rem;
  font-weight: 800;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.48);
  color: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
  background: rgba(2, 6, 23, 0.68);
}

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

.analysis-form-panel[hidden] {
  display: none;
}

.analysis-form-panel {
  min-width: 0;
}

.analysis-choice-card {
  cursor: pointer;
}

.analysis-choice-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

/* Blog */
.blog-hero { padding-top: 170px; padding-bottom: 76px; }
.blog-hero__inner { max-width: 820px; }
.blog-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr); gap: 56px; align-items: center; }
.blog-hero-visual { position: relative; min-height: 340px; display: grid; place-content: center; justify-items: center; gap: 14px; border: 1px solid rgba(56, 189, 248, 0.28); border-radius: var(--radius); background: radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.18), transparent 36%), rgba(15, 23, 42, 0.75); box-shadow: var(--shadow); overflow: hidden; }
.blog-hero-visual::before { content: ""; position: absolute; width: 300px; height: 300px; border: 1px solid rgba(56, 189, 248, 0.16); border-radius: 50%; animation: blogOrbit 12s linear infinite; }
.blog-hero-visual span { z-index: 1; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(2, 6, 23, 0.72); color: var(--cyan); font-size: 0.8rem; font-weight: 800; }
.blog-hero-visual strong { z-index: 1; margin-top: 8px; font-size: 1.45rem; }
@keyframes blogOrbit { to { transform: rotate(360deg); } }
.blog-hero h1, .article-header h1 { max-width: 980px; margin-bottom: 22px; }
.blog-hero__inner > p:last-child { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.blog-listing { padding-top: 40px; }
.blog-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 22px; }
.blog-card { min-height: 100%; display: flex; flex-direction: column; padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.035)); box-shadow: 0 18px 60px rgba(2, 8, 23, 0.2); }
.blog-card > .btn { width: fit-content; margin-top: auto; }
.blog-card__meta, .article-byline, .breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--muted); font-size: 0.88rem; font-weight: 700; }
.blog-card__meta span { color: var(--cyan); }
.blog-card h3 { margin: 18px 0 12px; font-size: clamp(1.45rem, 3vw, 2rem); }
.blog-card h3 a, .article-content a:not(.btn), .breadcrumbs a { color: inherit; text-decoration-color: rgba(56, 189, 248, 0.65); text-underline-offset: 4px; }
.blog-card p { max-width: 620px; margin-bottom: 24px; color: var(--muted); }
.article-header { padding-top: 150px; padding-bottom: 56px; }
.article-shell { width: min(100% - 40px, 780px); margin-inline: auto; }
.breadcrumbs { margin-bottom: 34px; }
.article-intro { margin-bottom: 24px; color: #cbd5e1; font-size: clamp(1.08rem, 2.2vw, 1.3rem); line-height: 1.75; }
.article-content { padding-bottom: 120px; color: #dbe5f1; font-size: 1.04rem; line-height: 1.82; }
.article-content > p, .article-content > ul { margin-bottom: 24px; }
.article-content h2 { margin-top: 72px; margin-bottom: 22px; font-size: clamp(1.7rem, 4vw, 2.35rem); line-height: 1.2; }
.article-content h3 { margin-top: 38px; margin-bottom: 10px; font-size: 1.2rem; }
.article-content ul, .article-content ol { display: grid; gap: 10px; padding-left: 24px; }
.article-content strong { color: #f8fafc; }
.article-category-grid, .article-examples { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 30px 0; }
.article-category-grid section, .article-examples section { padding: 22px; border: 1px solid var(--line); border-radius: 10px; background: rgba(248, 250, 252, 0.045); }
.article-category-grid h3, .article-examples h3 { margin-top: 0; }
.article-category-grid p, .article-examples p { margin: 0; color: var(--muted); }
.article-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 28px 0; }
.article-checklist span { position: relative; padding: 14px 16px 14px 42px; border: 1px solid var(--line); border-radius: 8px; background: rgba(56, 189, 248, 0.06); font-weight: 700; }
.article-checklist span::before { position: absolute; left: 16px; color: var(--cyan); content: "✓"; }
.article-cta, .article-final-cta { margin: 72px 0; padding: clamp(26px, 5vw, 46px); border: 1px solid rgba(56, 189, 248, 0.35); border-radius: var(--radius); background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 48%), rgba(8, 18, 36, 0.84); box-shadow: 0 22px 70px rgba(2, 8, 23, 0.28); }
.article-cta h2, .article-final-cta h2 { margin-top: 0; }
.article-cta p:not(.eyebrow), .article-final-cta p { max-width: 640px; color: #cbd5e1; }

@media (max-width: 620px) {
  .blog-hero, .article-header { padding-top: 120px; }
  .article-shell { width: min(100% - 32px, 780px); }
  .article-content { font-size: 1rem; line-height: 1.75; }
  .article-content h2 { margin-top: 54px; }
  .article-category-grid, .article-examples, .article-checklist { grid-template-columns: 1fr; }
  .article-cta, .article-final-cta { margin: 54px 0; }
  .blog-hero-grid { grid-template-columns: 1fr; }
  .blog-hero-visual { min-height: 260px; }
}

.footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.54);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 340px) 1fr;
  gap: 20px;
  align-items: start;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.footer-sitemap .footer-col strong {
  display: block;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-sitemap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.footer-sitemap li {
  margin: 6px 0;
}

.footer-sitemap a {
  color: #dbe7f5;
  font-weight: 800;
}

.footer-compact-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer p {
  max-width: 380px;
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: #dbe7f5;
  font-weight: 800;
}

.footer-legal {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-legal a,
.footer-legal button {
  color: inherit;
  opacity: 0.9;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: white;
  opacity: 1;
}

.copyright {
  grid-column: 1;
  grid-row: 2;
  align-self: stretch;
  max-width: none;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .footer-sitemap {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-sitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .footer-legal {
    grid-column: 1;
    grid-row: 3;
    justify-content: flex-start;
    gap: 8px 12px;
  }

  .copyright {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    text-align: left;
  }
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: block;
  padding: 16px 0 22px;
  background: rgba(2, 8, 23, 0.94);
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 -10px 40px rgba(2, 8, 23, 0.28);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  margin: 0;
  color: #dbeafe;
}

.cookie-banner__inner a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.72);
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__panel {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  background: var(--glass-strong);
  box-shadow: var(--shadow);
  outline: none;
}

.cookie-modal__panel h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.06);
  color: white;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.055);
}

.cookie-option h3 {
  margin-bottom: 6px;
}

.cookie-option p {
  margin: 0;
  color: var(--muted);
}

.cookie-option span {
  flex: 0 0 auto;
  color: var(--cyan);
  font-weight: 800;
}

.cookie-option input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  accent-color: var(--cyan);
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.legal-main {
  padding-top: 132px;
}

.legal-article {
  max-width: 900px;
  padding-bottom: 90px;
}

.legal-article h1 {
  margin-bottom: 18px;
}

.legal-article h2 {
  margin: 42px 0 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-article p,
.legal-article li {
  color: #d8e2f2;
}

.legal-article ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-card {
  margin: 30px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.035));
}

.legal-business-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-business-card li {
  display: grid;
  grid-template-columns: minmax(170px, 220px) 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.legal-business-card li:last-child {
  border-bottom: 0;
}

.legal-business-card strong {
  color: var(--white);
}

@media (max-width: 620px) {
  .legal-main {
    padding-top: 108px;
  }

  .legal-article {
    padding-bottom: 64px;
  }

  .legal-card {
    padding: 20px;
  }

  .legal-business-card li {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.legal-back {
  width: fit-content;
  margin-bottom: 28px;
}

.whatsapp-icon {
  flex: 0 0 auto;
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: calc(var(--cookie-banner-offset, 0px) + 24px);
  z-index: 79;
  min-width: 168px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(56, 189, 248, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.96), rgba(56, 189, 248, 0.92));
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(2, 8, 23, 0.34), 0 0 28px rgba(56, 189, 248, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float .whatsapp-icon {
  width: 24px;
  height: 24px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 250, 252, 0.44);
  box-shadow: 0 18px 48px rgba(2, 8, 23, 0.4), 0 0 38px rgba(56, 189, 248, 0.24);
}

.whatsapp-float:focus-visible {
  box-shadow: 0 0 0 7px rgba(56, 189, 248, 0.14), 0 18px 48px rgba(2, 8, 23, 0.4);
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: calc(var(--cookie-banner-offset, 0px) + 96px);
  z-index: 75;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

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

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

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

  .portfolio-panel:hover img,
  .portfolio-panel:hover .portfolio-cta span,
  .portfolio-title,
  .portfolio-cta {
    transform: none !important;
  }

  .portfolio-overlay,
  .portfolio-title,
  .portfolio-cta {
    opacity: 1 !important;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .benefit-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .page-browser-visual {
    min-height: 520px;
  }

  .card-grid.four,
  .card-grid.three,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .timeline::before {
    left: 28px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.52), transparent);
  }

  .timeline-item {
    padding: 0 0 0 82px;
  }
}

@media (max-width: 820px) {
  .timeline-item span {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 8, 22, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 48px;
  }

  .section {
    padding: 82px 0;
  }

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

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.6rem);
  }

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

  .btn {
    min-height: 54px;
  }

  .whatsapp-float {
    min-width: 56px;
    width: 56px;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .browser-card {
    transform: none;
    animation: none;
  }

  .form-row,
  .checklist,
  .card-grid.four,
  .card-grid.three,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card ul {
    min-height: auto;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 78px;
    left: 14px;
    right: 14px;
  }

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

  .page-browser-visual {
    min-height: 360px;
  }

  .industry-hero { min-height: 0; }
  .local-hero { min-height: 330px; }

  .browser-card {
    min-height: 320px;
  }

  .mock-layout {
    grid-template-columns: 68px 1fr;
    min-height: 268px;
  }

  .mock-content {
    padding: 18px;
  }

  .mock-hero {
    height: 84px;
  }

  .mock-stats {
    grid-template-columns: 1fr;
    margin: 16px 0;
  }

  .mock-cards {
    display: none;
  }

  .glass-card,
  .service-card,
  .price-card,
  .audience-panel,
  .contact-form {
    padding: 22px;
  }

  .about-card {
    min-height: 330px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  blockquote {
    font-size: 1.12rem;
  }

  .portfolio-grid {
    gap: 26px;
  }

  .portfolio-panel {
    aspect-ratio: 16 / 10;
  }

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

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

  .cookie-banner__actions,
  .cookie-banner__actions .btn,
  .cookie-modal__actions,
  .cookie-modal__actions .btn {
    width: 100%;
  }

  .cookie-option {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding-top: 112px;
  }
}
