:root {
  --ink: #071a35;
  --ink-2: #0b2852;
  --blue: #1268f3;
  --blue-2: #0a4fc0;
  --electric: #39a0ff;
  --mint: #79ebcf;
  --mint-soft: #e8fbf6;
  --paper: #ffffff;
  --cloud: #f5f8fc;
  --line: #dce6f1;
  --muted: #59708d;
  --positive: #0d8067;
  --warning: #a45b00;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(7, 26, 53, 0.08);
  --shadow: 0 24px 70px rgba(7, 26, 53, 0.13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1160px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

a {
  color: var(--blue-2);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue);
}

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

::selection {
  color: var(--paper);
  background: var(--blue);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.15rem;
  font-size: clamp(2.35rem, 9vw, 4.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 6vw, 3.35rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

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

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

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(4.2rem, 9vw, 7.5rem) 0;
}

.section-sm {
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
}

.section-cloud {
  background: var(--cloud);
}

.section-dark {
  color: #dce9fa;
  background: var(--ink);
}

.section-dark h2,
.section-dark h3,
.section-dark strong {
  color: var(--paper);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.section-dark .section-head p,
.section-dark .muted {
  color: #aac0db;
}

.eyebrow {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.9rem;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--mint);
  content: "";
}

.section-dark .eyebrow {
  color: var(--mint);
}

.lede {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.26rem);
}

.muted {
  color: var(--muted);
}

.fine-print {
  color: var(--muted);
  font-size: 0.84rem;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border: 1px solid #cfe0f5;
  border-radius: 999px;
  color: var(--blue-2);
  background: #f2f7ff;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.2;
}

.tag-mint {
  border-color: #afe7d9;
  color: #086a56;
  background: var(--mint-soft);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 30px rgba(18, 104, 243, 0.25);
}

.btn-primary:hover {
  color: var(--paper);
  box-shadow: 0 16px 34px rgba(18, 104, 243, 0.34);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: #a9c5e7;
  color: var(--ink);
}

.btn-mint {
  color: #052e29;
  background: var(--mint);
  box-shadow: 0 12px 30px rgba(121, 235, 207, 0.22);
}

.btn-ghost {
  min-height: 44px;
  padding-inline: 0.4rem;
  color: var(--blue-2);
}

.text-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Header and navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(220, 230, 241, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.65rem;
  align-items: center;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--blue), var(--ink-2));
  box-shadow: 0 8px 20px rgba(18, 104, 243, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  border-radius: 4px;
  content: "";
}

.brand-mark::before {
  inset: 8px 8px 15px;
  background: var(--paper);
}

.brand-mark::after {
  inset: 19px 8px 8px 17px;
  background: var(--mint);
}

.nav-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 99;
  inset: var(--header-height) 0 auto;
  display: none;
  max-height: calc(100vh - var(--header-height));
  padding: 1rem;
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: grid;
  gap: 0.35rem;
}

.site-nav a {
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border-radius: 10px;
  color: var(--ink-2);
  font-weight: 720;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-2);
  background: #eef5ff;
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--blue);
}

.site-nav .nav-cta:hover {
  color: var(--paper);
  background: var(--blue-2);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.6rem, 7vw, 6rem) 0 clamp(4.5rem, 9vw, 7.5rem);
  background:
    radial-gradient(circle at 92% 12%, rgba(121, 235, 207, 0.24), transparent 28%),
    radial-gradient(circle at 5% 60%, rgba(57, 160, 255, 0.13), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 88%);
}

.hero::before {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -240px;
  bottom: -260px;
  border: 1px solid rgba(18, 104, 243, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(18, 104, 243, 0.025), 0 0 0 140px rgba(18, 104, 243, 0.02);
}

.hero-grid {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}

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

.hero h1 span {
  color: var(--blue);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.hero-proof span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(121, 235, 207, 0.22);
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 540px);
  min-height: 310px;
  margin-inline: auto;
}

.browser-mockup {
  position: absolute;
  inset: 8px 8px 36px;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.browser-bar {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  background: #eef3f8;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b5c4d5;
}

.mock-page {
  display: grid;
  min-height: 250px;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 26px 22px;
  background: linear-gradient(145deg, #f6f9fd, #fff);
}

.mock-copy-lines {
  display: grid;
  gap: 9px;
}

.mock-copy-lines span {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: #d9e4f0;
}

.mock-copy-lines span:first-child {
  width: 90%;
  height: 23px;
  background: var(--ink);
}

.mock-copy-lines span:nth-child(2) {
  width: 72%;
}

.mock-copy-lines span:nth-child(3) {
  width: 88%;
}

.mock-copy-lines span:last-child {
  width: 58%;
  height: 26px;
  margin-top: 5px;
  background: var(--blue);
}

.mock-photo {
  position: relative;
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--blue), var(--ink-2));
}

.mock-photo::before,
.mock-photo::after {
  position: absolute;
  border-radius: 14px;
  content: "";
}

.mock-photo::before {
  inset: 24px 35px 58px;
  background: rgba(255,255,255,0.9);
}

.mock-photo::after {
  inset: 84px 19px 20px;
  background: var(--mint);
}

.phone-mockup {
  position: absolute;
  width: 120px;
  height: 225px;
  right: -2px;
  bottom: 0;
  padding: 18px 9px 10px;
  border: 6px solid var(--ink);
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 22px 45px rgba(7, 26, 53, 0.24);
  transform: rotate(-4deg);
}

.phone-mockup::before {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 32px;
  height: 5px;
  border-radius: 99px;
  background: #30445d;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 13px;
  background: var(--paper);
}

.phone-screen div:first-child {
  height: 78px;
  background: linear-gradient(145deg, var(--blue), var(--mint));
}

.phone-screen div:nth-child(2) {
  width: 70%;
  height: 11px;
  margin: 15px 10px 8px;
  border-radius: 99px;
  background: var(--ink);
}

.phone-screen div:nth-child(3),
.phone-screen div:nth-child(4) {
  height: 6px;
  margin: 6px 10px;
  border-radius: 99px;
  background: #dbe5ef;
}

.phone-screen div:last-child {
  height: 27px;
  margin: 15px 10px;
  border-radius: 8px;
  background: #23b37a;
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(220, 230, 241, 0.9);
  border-radius: 12px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.float-chip::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.chip-one {
  top: 0;
  left: 0;
}

.chip-two {
  bottom: 15px;
  left: 10px;
}

/* Cards and grids */
.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.two,
.card-grid.three,
.card-grid.four {
  grid-template-columns: minmax(0, 1fr);
}

.card {
  position: relative;
  padding: clamp(1.25rem, 4vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.card-soft {
  background: var(--cloud);
  box-shadow: none;
}

.card-accent {
  border-color: #9dc1f2;
  background: linear-gradient(155deg, #fff 45%, #edf5ff);
}

.card-dark {
  color: #c5d4e7;
  border-color: rgba(255,255,255,0.13);
  background: var(--ink-2);
}

.card-dark h3,
.card-dark strong {
  color: var(--paper);
}

.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 13px;
  color: var(--blue-2);
  background: #eaf3ff;
  font-size: 1.2rem;
  font-weight: 900;
}

.icon-box.mint {
  color: #086a56;
  background: var(--mint-soft);
}

.check-list,
.plain-list,
.x-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 1.55rem;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  top: 0.06rem;
  left: 0;
  font-weight: 900;
}

.check-list li::before {
  color: var(--positive);
  content: "✓";
}

.x-list li::before {
  color: var(--muted);
  content: "—";
}

.plain-list li + li {
  margin-top: 0.45rem;
}

.split {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.trust-strip {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-strip > div {
  padding: 1.15rem;
  background: var(--paper);
}

.trust-strip strong {
  display: block;
  margin-bottom: 0.25rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Packages */
.package-grid {
  display: grid;
  gap: 1.15rem;
}

.package-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.package-card.recommended {
  border: 2px solid var(--blue);
  background: linear-gradient(170deg, #fff 55%, #edf5ff);
  box-shadow: 0 25px 70px rgba(18, 104, 243, 0.17);
}

.package-card .package-label {
  align-self: flex-start;
  margin-bottom: 1rem;
}

.package-price {
  margin: 0.4rem 0 0.8rem;
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.package-price small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
}

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

.package-card details {
  margin: 1rem 0 1.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-card summary,
.faq-list summary,
.detail-list summary {
  min-height: 50px;
  padding: 0.8rem 2rem 0.8rem 0;
  font-weight: 800;
}

details summary {
  position: relative;
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  position: absolute;
  top: 50%;
  right: 0.15rem;
  color: var(--blue);
  font-size: 1.25rem;
  content: "+";
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

.details-content {
  padding: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.ownership-panel {
  display: grid;
  gap: 1.3rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: clamp(1.3rem, 4vw, 2rem);
  border-radius: var(--radius);
  color: #d6e5f6;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  box-shadow: var(--shadow);
}

.ownership-panel h3 {
  color: var(--paper);
}

.ownership-panel p {
  margin: 0;
}

/* Tools */
.tool-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  overflow: hidden;
}

.tool-card::after {
  position: absolute;
  width: 100px;
  height: 100px;
  right: -35px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(18, 104, 243, 0.07);
  content: "";
}

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

.tool-card .text-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.tool-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-shell {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.tool-panel {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.result-box {
  padding: 1.25rem;
  border: 1px solid #aadfd3;
  border-radius: var(--radius-sm);
  background: var(--mint-soft);
}

.result-box[hidden] {
  display: none;
}

.result-box h2,
.result-box h3 {
  color: #075d4d;
}

.score-ring {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-2);
  background: conic-gradient(var(--blue) var(--score, 0%), #dfe8f3 0);
  font-size: 1.45rem;
  font-weight: 900;
}

.score-ring::before {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.score-ring span {
  position: relative;
  z-index: 1;
}

/* Process and showcase */
.process-grid {
  display: grid;
  gap: 0.8rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--paper);
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  content: counter(process, decimal-leading-zero);
}

.process-step h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
}

.project-card,
.demo-card {
  overflow: hidden;
  padding: 0;
}

.project-visual,
.demo-visual {
  position: relative;
  min-height: 165px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef5ff, #dbeafa);
}

.project-visual::before {
  position: absolute;
  inset: 25px 26px -20px;
  border: 5px solid var(--ink);
  border-radius: 13px 13px 0 0;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  content: "";
}

.project-visual::after {
  position: absolute;
  width: 42%;
  height: 60px;
  top: 58px;
  left: 50%;
  border-radius: 10px;
  background: var(--project-color, var(--blue));
  content: "";
  transform: translateX(-50%);
}

.project-visual.has-image::before,
.project-visual.has-image::after {
  display: none;
}

.project-visual.has-image img {
  width: 100%;
  height: 100%;
  min-height: 165px;
  object-fit: cover;
}

.project-body,
.demo-body {
  padding: 1.25rem;
}

.demo-visual {
  display: grid;
  min-height: 190px;
  place-items: center;
  color: var(--paper);
  background: var(--demo-bg, linear-gradient(135deg, var(--blue), var(--ink)));
}

.demo-visual strong {
  position: relative;
  z-index: 1;
  max-width: 220px;
  color: inherit;
  font-size: 1.55rem;
  line-height: 1.05;
  text-align: center;
}

.demo-visual::before,
.demo-visual::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  content: "";
}

.demo-visual::before {
  width: 180px;
  height: 180px;
  top: -80px;
  right: -40px;
}

.demo-visual::after {
  width: 90px;
  height: 90px;
  bottom: -45px;
  left: 15px;
}

/* Forms */
.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 5vw, 2.4rem);
  border: 1px solid #c8d9ec;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label,
.fieldset-label {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.85rem;
  border: 1px solid #bccddd;
  border-radius: 12px;
  background: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #86a7cc;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(18, 104, 243, 0.12);
}

.choice-grid {
  display: grid;
  gap: 0.65rem;
}

.choice {
  display: flex;
  min-height: 48px;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.choice:has(input:checked) {
  border-color: var(--blue);
  background: #f0f6ff;
}

.choice input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.18rem;
  accent-color: var(--blue);
}

.privacy-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--mint);
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  background: var(--mint-soft);
  font-size: 0.8rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.65rem 0 0;
  color: var(--positive);
  font-size: 0.87rem;
  font-weight: 700;
}

/* FAQs and detail pages */
.faq-list,
.detail-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details,
.detail-list details {
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.faq-list details[open],
.detail-list details[open] {
  border-color: #abc8ea;
  box-shadow: var(--shadow-sm);
}

.faq-list .details-content,
.detail-list .details-content {
  max-width: 760px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6.5rem) 0;
  color: #dce9fa;
  background:
    radial-gradient(circle at 88% 20%, rgba(121,235,207,0.2), transparent 26%),
    linear-gradient(135deg, var(--ink), #0c3470);
}

.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.3rem, 8vw, 4.5rem);
}

.page-hero .lede {
  color: #bed0e5;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
  color: #b9cce2;
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--mint);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--ink-2);
  background: #edf4fc;
  font-size: 0.8rem;
}

.price-table td:last-child {
  font-weight: 800;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
}

.notice {
  padding: 1rem;
  border: 1px solid #a9cbed;
  border-radius: 14px;
  color: var(--ink-2);
  background: #edf6ff;
}

.notice-mint {
  border-color: #a9dfd2;
  background: var(--mint-soft);
}

.legal-copy h2 {
  margin-top: 2.8rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.legal-copy h3 {
  margin-top: 1.8rem;
  font-size: 1.2rem;
}

.legal-copy p,
.legal-copy li {
  color: #3e5875;
}

.anchor-nav {
  display: flex;
  gap: 0.55rem;
  padding: 0.8rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.anchor-nav a {
  flex: 0 0 auto;
  padding: 0.58rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.anchor-nav a:hover {
  border-color: #9bbde4;
  color: var(--blue-2);
  background: #f2f7ff;
}

.sticky-anchor-bar {
  position: sticky;
  z-index: 40;
  top: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(245,248,252,0.94);
  backdrop-filter: blur(15px);
}

/* Closing CTA and footer */
.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  color: #c8d9ed;
  background: linear-gradient(135deg, var(--ink), #0b397b);
  box-shadow: var(--shadow);
}

.closing-cta::after {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -140px;
  right: -90px;
  border: 35px solid rgba(121,235,207,0.12);
  border-radius: 50%;
  content: "";
}

.closing-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--paper);
}

.closing-cta p,
.closing-cta .btn-row {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 3.5rem 0 1.2rem;
  color: #a9bdd6;
  background: #041126;
}

.site-footer .brand {
  color: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--paper);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 0.45rem;
}

.footer-grid a {
  color: #c3d4e8;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: #052f24;
  background: #57e5a5;
  box-shadow: 0 12px 28px rgba(5, 89, 62, 0.26);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.whatsapp-float:hover {
  color: #052f24;
  transform: translateY(-2px);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  background: radial-gradient(circle at 80% 15%, rgba(121,235,207,0.2), transparent 26%), var(--cloud);
}

.error-card {
  width: min(100%, 700px);
  padding: clamp(1.6rem, 6vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-code {
  margin-bottom: 0.4rem;
  color: var(--blue);
  font-size: clamp(4rem, 18vw, 8rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

/* Ronda visual 3: escenas humanas, mockups y profundidad comercial */
.hero-visual {
  aspect-ratio: 1.12;
  min-height: 0;
  isolation: isolate;
}

.hero-photo-frame {
  position: absolute;
  z-index: 0;
  inset: 8% 3% 18% 13%;
  overflow: hidden;
  border: 6px solid var(--paper);
  border-radius: 34px;
  background: #e8f0eb;
  box-shadow: 0 30px 90px rgba(7, 26, 53, 0.22);
  transform: rotate(1.5deg);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 26, 53, 0.74));
  content: "";
}

.hero-photo-frame picture,
.hero-photo-frame img {
  width: 100%;
  height: 100%;
}

.hero-photo-frame img {
  object-fit: cover;
}

.scene-caption {
  position: absolute;
  z-index: 1;
  left: 1rem;
  bottom: 0.8rem;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.business-site-preview {
  position: absolute;
  z-index: 2;
  width: 69%;
  left: -1%;
  bottom: 1%;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 24px 55px rgba(7, 26, 53, 0.28);
  transform: rotate(-2.2deg);
}

.preview-browser-bar {
  display: flex;
  gap: 4px;
  align-items: center;
  min-height: 23px;
  padding: 0.25rem 0.45rem;
  color: #667990;
  background: #edf3f9;
  font-size: 0.5rem;
  font-weight: 800;
}

.preview-browser-bar i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #9fb0c4;
}

.preview-browser-bar span {
  margin-left: auto;
  margin-right: auto;
}

.preview-site-body {
  padding: 0.65rem;
  background: linear-gradient(145deg, #fff, #f3f8fe);
}

.preview-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 0.46rem;
}

.preview-nav strong {
  font-size: 0.63rem;
}

.preview-main {
  display: grid;
  min-height: 82px;
  padding: 0.7rem;
  border-radius: 11px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), #124d8c 70%, #14765f);
}

.preview-main strong {
  max-width: 175px;
  color: inherit;
  font-size: clamp(0.72rem, 2vw, 1rem);
  line-height: 1.05;
}

.preview-kicker {
  color: var(--mint);
  font-size: 0.45rem;
  font-weight: 850;
  text-transform: uppercase;
}

.preview-wa {
  align-self: end;
  justify-self: start;
  padding: 0.28rem 0.45rem;
  border-radius: 99px;
  color: #06382c;
  background: var(--mint);
  font-size: 0.45rem;
  font-weight: 900;
}

.preview-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.preview-features span {
  padding: 0.32rem;
  border: 1px solid #d9e4f0;
  border-radius: 7px;
  color: var(--ink-2);
  background: var(--paper);
  font-size: 0.44rem;
  font-weight: 800;
  text-align: center;
}

.mobile-site-preview {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 105px;
  right: 0;
  bottom: 13%;
  gap: 0.38rem;
  padding: 18px 9px 10px;
  border: 5px solid var(--ink);
  border-radius: 21px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 20px 42px rgba(7, 26, 53, 0.25);
  transform: rotate(3deg);
}

.mobile-speaker {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 27px;
  height: 4px;
  border-radius: 99px;
  background: #566a81;
  transform: translateX(-50%);
}

.mobile-cover {
  height: 63px;
  border-radius: 9px;
  background: linear-gradient(145deg, #7bdcc5, #1268f3 58%, #071a35);
}

.mobile-site-preview strong {
  font-size: 0.62rem;
}

.mobile-site-preview > span:not(.mobile-speaker) {
  color: var(--muted);
  font-size: 0.44rem;
}

.mobile-site-preview b {
  padding: 0.35rem;
  border-radius: 7px;
  color: #053b2f;
  background: var(--mint);
  font-size: 0.48rem;
  text-align: center;
}

.hero-visual .float-chip {
  z-index: 4;
  animation: visual-float 5s ease-in-out infinite;
}

.chip-price {
  top: 1%;
  left: 0;
}

.chip-mobile {
  top: 3%;
  right: -1%;
  animation-delay: -1.5s !important;
}

.chip-human {
  right: 1%;
  bottom: 1%;
  animation-delay: -3s !important;
}

.chip-seo {
  left: 18%;
  bottom: -5%;
  animation-delay: -2.2s !important;
}

@keyframes visual-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.transformation-grid {
  align-items: center;
}

.transformation-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.transformation-points span {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.transformation-points span::before {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0.55rem;
  left: 0;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(121, 235, 207, 0.2);
  content: "";
}

.before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
}

.before-card,
.after-card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.before-card {
  transform: rotate(-1deg);
}

.after-card {
  border-color: rgba(18, 104, 243, 0.28);
  box-shadow: 0 22px 55px rgba(18, 104, 243, 0.14);
  transform: rotate(1deg);
}

.compare-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.26rem 0.55rem;
  border-radius: 99px;
  color: #6f4054;
  background: #f8e9ee;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.after-card .compare-label {
  color: #075543;
  background: var(--mint-soft);
}

.before-card h3,
.after-card h3 {
  margin-top: 0.85rem;
  font-size: 1rem;
}

.before-card p,
.after-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.compare-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(18, 104, 243, 0.24);
  font-weight: 900;
}

.social-clutter {
  position: relative;
  height: 124px;
  overflow: hidden;
  border-radius: 12px;
  background: #f1f3f6;
}

.social-clutter i {
  position: absolute;
  width: 54%;
  height: 50px;
  border: 1px solid #d2d9e1;
  border-radius: 9px;
  background: var(--paper);
  box-shadow: 0 5px 14px rgba(7, 26, 53, 0.08);
}

.social-clutter i::before,
.social-clutter i::after {
  position: absolute;
  left: 8px;
  border-radius: 99px;
  background: #d8dfe7;
  content: "";
}

.social-clutter i::before { width: 30%; height: 8px; top: 9px; }
.social-clutter i::after { width: 68%; height: 5px; top: 24px; }
.social-clutter i:nth-child(1) { top: 8px; left: 7px; transform: rotate(-5deg); }
.social-clutter i:nth-child(2) { top: 14px; right: 6px; transform: rotate(4deg); }
.social-clutter i:nth-child(3) { top: 55px; left: 19px; transform: rotate(3deg); }
.social-clutter i:nth-child(4) { top: 66px; right: 2px; transform: rotate(-4deg); }
.social-clutter i:nth-child(5) { bottom: -18px; left: 4px; transform: rotate(2deg); }

.clear-web {
  display: grid;
  height: 124px;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0.7rem;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 12px;
  background: #f4f8fd;
}

.clear-web > span {
  grid-column: 1 / -1;
  height: 7px;
  border-radius: 99px;
  background: #d9e3ee;
}

.clear-web strong {
  grid-column: 1 / -1;
  font-size: 0.82rem;
}

.clear-web i {
  min-height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dcecff, #bfe2da);
}

.clear-web b {
  grid-column: 1 / -1;
  padding: 0.28rem;
  border-radius: 7px;
  color: #053b2f;
  background: var(--mint);
  font-size: 0.55rem;
  text-align: center;
}

.conversion-story {
  display: grid;
  margin-bottom: clamp(1.7rem, 4vw, 2.8rem);
  overflow: hidden;
  border: 1px solid #d7e3ef;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.conversion-photo {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.conversion-photo picture,
.conversion-photo img {
  width: 100%;
  height: 100%;
}

.conversion-photo img {
  object-fit: cover;
}

.message-pop {
  position: absolute;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(121, 235, 207, 0.7);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(7, 26, 53, 0.19);
  backdrop-filter: blur(9px);
}

.message-pop > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #064535;
  background: var(--mint);
  font-weight: 900;
}

.message-pop div {
  display: grid;
}

.message-pop small {
  color: var(--positive);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.message-pop strong {
  font-size: 0.78rem;
}

.conversion-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.4rem, 5vw, 3rem);
}

.conversion-copy h3 {
  margin-top: 0.8rem;
  font-size: clamp(1.45rem, 3.6vw, 2.35rem);
}

.conversion-copy p {
  color: var(--muted);
}

.local-seo-section {
  padding-top: 0;
}

.local-seo-panel {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.4rem, 5vw, 3rem);
  border: 1px solid #cce5df;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(57, 160, 255, 0.13), transparent 28%),
    linear-gradient(135deg, var(--mint-soft), #f8fbff 62%, #eef5ff);
  box-shadow: var(--shadow-sm);
}

.local-seo-panel h2 {
  max-width: 720px;
}

.local-audience {
  display: grid;
  gap: 0.65rem;
  align-content: center;
}

.local-audience > span {
  position: relative;
  padding: 0.65rem 0.75rem 0.65rem 2.1rem;
  border: 1px solid rgba(18, 104, 243, 0.12);
  border-radius: 12px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 780;
}

.local-audience > span::before {
  position: absolute;
  top: 50%;
  left: 0.78rem;
  color: var(--positive);
  content: "✓";
  font-weight: 950;
  transform: translateY(-50%);
}

.local-audience .btn {
  margin-top: 0.25rem;
}

.recommended-note {
  display: block;
  margin: 0.7rem 0 0.35rem;
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 850;
}

.package-card.recommended {
  border-color: rgba(18, 104, 243, 0.52);
  background: linear-gradient(180deg, #f6faff 0%, #fff 24%);
  box-shadow: 0 28px 75px rgba(18, 104, 243, 0.18);
}

.tools-showcase {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: -0.6rem 0 2rem;
  padding: clamp(0.8rem, 3vw, 1.35rem);
  border: 1px solid rgba(145, 180, 219, 0.25);
  border-radius: 26px;
  background:
    radial-gradient(circle at 95% 10%, rgba(121, 235, 207, 0.16), transparent 26%),
    linear-gradient(145deg, #0b2852, #071a35);
}

.tools-screen {
  overflow: hidden;
  border: 5px solid #030f21;
  border-radius: 16px;
  color: var(--ink);
  background: #f8fbff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.tools-screen-bar {
  display: flex;
  gap: 5px;
  align-items: center;
  min-height: 31px;
  padding: 0.35rem 0.65rem;
  color: #6b7e94;
  background: #e9f0f7;
  font-size: 0.62rem;
  font-weight: 850;
}

.tools-screen-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fb0c4;
}

.tools-screen-bar span {
  margin-left: 0.4rem;
}

.tools-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.75rem;
}

.tools-mini-grid > div {
  display: grid;
  gap: 0.36rem;
  padding: 0.7rem;
  border: 1px solid #dce6f1;
  border-radius: 11px;
  background: var(--paper);
}

.tools-mini-grid span {
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 900;
}

.tools-mini-grid strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.tools-mini-grid i {
  position: relative;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe8f1;
}

.tools-mini-grid i::after {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint));
  content: "";
}

.tools-mini-grid small {
  color: var(--muted);
  font-size: 0.55rem;
}

.tools-result-card {
  display: grid;
  align-self: center;
  gap: 0.45rem;
  padding: 1.15rem;
  border: 1px solid rgba(121, 235, 207, 0.45);
  border-radius: 18px;
  color: #d8e7f8;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.tools-result-card > span {
  color: var(--mint);
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tools-result-card strong {
  font-size: 1.35rem;
}

.tools-result-card small {
  color: #bcd0e6;
}

.tools-result-card b {
  margin-top: 0.3rem;
  padding: 0.48rem;
  border-radius: 9px;
  color: #064535;
  background: var(--mint);
  font-size: 0.7rem;
  text-align: center;
}

.tool-card,
.project-card,
.demo-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tool-card:hover,
.project-card:hover,
.demo-card:hover {
  border-color: rgba(57, 160, 255, 0.42);
  box-shadow: 0 24px 58px rgba(7, 26, 53, 0.16);
  transform: translateY(-5px);
}

.project-visual.has-image {
  min-height: 210px;
  padding-top: 27px;
  background: var(--ink);
}

.project-window-bar {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 27px;
  padding: 0.36rem 0.75rem 0.3rem 2.6rem;
  overflow: hidden;
  color: #9db1c9;
  background: #0a1e3a;
  font-size: 0.52rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-window-bar::before {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  background: #ff7b72;
  box-shadow: 11px 0 #f2cc60, 22px 0 #56d364;
  content: "";
}

.project-visual.has-image img {
  min-height: 183px;
  object-position: top;
  transition: transform 400ms ease;
}

.project-card:hover .project-visual.has-image img {
  transform: scale(1.025);
}

.demo-image {
  position: relative;
  display: block;
  min-height: 230px;
  color: var(--paper);
  background: #15253d;
}

.demo-image::before,
.demo-image::after {
  display: none;
}

.demo-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms ease;
}

.demo-image::marker {
  display: none;
}

.demo-image > span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  left: 0.8rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 11px;
  color: var(--paper);
  background: rgba(7, 26, 53, 0.78);
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(8px);
}

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

.closing-cta {
  background:
    radial-gradient(circle at 88% 12%, rgba(121, 235, 207, 0.22), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(57, 160, 255, 0.23), transparent 30%),
    linear-gradient(135deg, #071a35, #0b3970);
}

.closing-cta h2 {
  max-width: 820px;
}

@media (max-width: 639px) {
  .hero {
    padding-top: 2.15rem;
  }

  .hero-visual {
    aspect-ratio: 1 / 1.03;
    margin-top: -0.15rem;
  }

  .hero-photo-frame {
    inset: 9% 4% 23% 10%;
    border-width: 4px;
    border-radius: 25px;
  }

  .scene-caption {
    font-size: 0.58rem;
  }

  .business-site-preview {
    width: 72%;
    left: 0;
    bottom: 1%;
  }

  .mobile-site-preview {
    width: 92px;
    right: 0;
    bottom: 13%;
  }

  .chip-human,
  .chip-seo {
    display: none;
  }

  .chip-price {
    top: 0;
  }

  .chip-mobile {
    top: 3%;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    margin-inline: auto;
    transform: rotate(90deg);
  }

  .conversion-photo {
    min-height: 260px;
  }

  .message-pop {
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
  }

  .tools-showcase {
    padding: 0.7rem;
  }
}

@media (min-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 3rem), var(--container));
  }

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

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

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

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

  .conversion-story {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .tools-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr);
  }

  .ownership-panel {
    grid-template-columns: 1fr auto;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .package-card.recommended {
    transform: translateY(-10px);
  }

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

  .local-seo-panel {
    grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
    align-items: center;
  }

  .tool-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  }

  .tool-shell .result-column {
    position: sticky;
    top: calc(var(--header-height) + 22px);
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 78px;
  }

  body.menu-open {
    overflow: visible;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav[data-open="true"] {
    position: static;
    display: flex;
    max-height: none;
    gap: 0.1rem;
    align-items: center;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0.55rem 0.7rem;
    font-size: 0.88rem;
  }

  .site-nav .nav-cta {
    margin-left: 0.35rem;
    padding-inline: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
  }

  .hero-visual {
    min-height: 0;
    aspect-ratio: 1.12;
  }

  .browser-mockup {
    inset: 30px 16px 45px 0;
  }

  .mock-page {
    min-height: 330px;
  }

  .phone-mockup {
    width: 145px;
    height: 275px;
  }

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

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

  .process-step:last-child:nth-child(odd) {
    grid-column: span 2;
  }
}

@media (min-width: 1120px) {
  .process-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .process-step,
  .process-step:last-child:nth-child(odd) {
    grid-column: auto;
    padding: 4rem 1rem 1rem;
  }

  .process-step::before {
    top: 1rem;
  }
}

@media (max-width: 379px) {
  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .btn-row .btn {
    width: 100%;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 0;
  }

  .phone-mockup {
    width: 102px;
    height: 195px;
  }

  .float-chip {
    font-size: 0.67rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .btn,
  .sticky-anchor-bar {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 1.5rem 0;
  }

  .card,
  .tool-panel {
    break-inside: avoid;
    border: 1px solid #bbb;
    box-shadow: none;
  }
}
