:root {
  --navy: #152536;
  --navy-soft: #1c3044;
  --teal: #3d726c;
  --teal-bright: #4a8f87;
  --teal-dark: #2f5a55;
  --teal-muted: #6a9490;
  --text: #243040;
  --muted: #5f6d7a;
  --bg: #e4e9ed;
  --bg-soft: #eef1f4;
  --surface: #f8f9fb;
  --white: #ffffff;
  --line: #cfd6de;
  --line-soft: #e2e7ec;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 16px rgba(21, 37, 54, 0.05);
  --shadow: 0 20px 50px rgba(21, 37, 54, 0.08);
  --shadow-lg: 0 28px 70px rgba(21, 37, 54, 0.12);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html.fonts-system {
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: rgba(74, 143, 135, 0.22);
  color: var(--navy);
}

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Reveal */

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

.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0f1c2a;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(74, 143, 135, 0.28);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  background: #0c1622;
  border-bottom-color: rgba(74, 143, 135, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand-logo {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

.nav-toggle,
.menu-toggle,
.nav-backdrop { display: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(232, 238, 242, 0.78);
  transition: color 0.2s;
}

.nav a:not(.btn):hover { color: #ffffff; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-lg { min-height: 54px; padding: 0.9rem 1.65rem; font-size: 0.95rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(61, 114, 108, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 28px rgba(61, 114, 108, 0.34);
}

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

.btn-secondary:hover {
  border-color: var(--teal-muted);
  color: var(--teal-dark);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 55% at 75% 10%, rgba(74, 143, 135, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 45% at 15% 80%, rgba(61, 114, 108, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.hero-live {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(74, 143, 135, 0.18);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-dot { animation: none; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 1.15rem;
}

.hero-accent {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Hero showcase */

.hero-showcase {
  position: relative;
}

.showcase-glow {
  position: absolute;
  inset: 10% -5%;
  background: radial-gradient(circle, rgba(74, 143, 135, 0.18), transparent 65%);
  filter: blur(30px);
  z-index: 0;
}

.showcase-frame {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}

.hero-showcase:hover .showcase-frame {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
}

.showcase-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  background: var(--navy);
}

.showcase-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.showcase-chrome span:first-child { background: #ff6b6b; }
.showcase-chrome span:nth-child(2) { background: #ffd166; }
.showcase-chrome span:nth-child(3) { background: #6bcb77; }

.showcase-url {
  margin-left: auto;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.showcase-body {
  padding: 2rem 1.75rem 2.25rem;
  background: linear-gradient(160deg, #f8fafb 0%, #eef3f5 100%);
}

.showcase-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.showcase-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--teal-bright);
  font-size: 0.75rem;
}

.showcase-headline {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.showcase-cta {
  display: inline-block;
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(61, 114, 108, 0.3);
  animation: cta-shimmer 3s ease-in-out infinite;
}

@keyframes cta-shimmer {
  0%, 100% { box-shadow: 0 6px 18px rgba(61, 114, 108, 0.3); }
  50% { box-shadow: 0 8px 26px rgba(61, 114, 108, 0.42); }
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.showcase-tags span {
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(74, 143, 135, 0.1);
  border-radius: 999px;
}

.showcase-badge {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.showcase-badge--top { top: 8%; right: -4%; }
.showcase-badge--bottom { bottom: 10%; left: -6%; }

/* Proof band */

.proof-band {
  padding: 3.5rem 0;
  background: var(--navy);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.proof-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.proof-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(74, 143, 135, 0.18);
  color: var(--teal-bright);
}

/* Sections */

.section { padding: 5.5rem 0; }

.section-surface { background: var(--surface); }
.section-muted { background: var(--bg); }

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

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

.section-head h2,
.contact-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin: 0.4rem 0 0.85rem;
}

.section-head p,
.contact-box p {
  font-size: 1.02rem;
  color: var(--muted);
}

.label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-muted);
}

.label-light { color: rgba(255, 255, 255, 0.65); }

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.card {
  padding: 1.65rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(74, 143, 135, 0.25);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74, 143, 135, 0.14), rgba(74, 143, 135, 0.06));
  color: var(--teal);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Work */

.work-grid {
  display: grid;
  gap: 1.5rem;
}

.work-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(74, 143, 135, 0.12);
  border-radius: 999px;
}

.work-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.work-copy h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.work-copy > p {
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.work-copy ul {
  padding-left: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.work-copy li + li { margin-top: 0.4rem; }

.text-link {
  font-weight: 700;
  color: var(--teal-dark);
  transition: color 0.2s;
}

.text-link:hover { color: var(--teal-bright); text-decoration: underline; }

.work-preview {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #0f1720;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease);
}

.work-card:hover .work-preview { transform: scale(1.01); }

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  background: #1a2430;
}

.browser-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser-url {
  margin-left: auto;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}

.preview-body {
  padding: 1.65rem;
  color: var(--white);
}

.preview-body strong {
  display: block;
  color: #f5b800;
  margin-bottom: 0.5rem;
}

.preview-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}

.preview-btn {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  background: #f5b800;
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 6px;
}

.preview-body--carp {
  background: linear-gradient(160deg, #0a0a0a 0%, #111111 100%);
}

.preview-body--carp .preview-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #ccff00;
  border-radius: 4px;
}

.preview-body--carp strong {
  display: block;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.preview-body--carp p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}

.preview-btn--carp {
  background: #ccff00;
  color: #0a0a0a;
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(204, 255, 0, 0.25);
}

.work-preview--carp {
  background: #050505;
}

.work-preview--iscold {
  background: #0c1620;
}

.preview-body--iscold {
  background:
    radial-gradient(ellipse 80% 70% at 80% 20%, rgba(42, 168, 208, 0.22), transparent 55%),
    linear-gradient(160deg, #101c28 0%, #0c1620 55%, #12202c 100%);
}

.preview-body--iscold .preview-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0c1620;
  background: #7ad4c8;
  border-radius: 4px;
}

.preview-body--iscold strong {
  display: block;
  color: #e8eef2;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.preview-body--iscold p {
  font-size: 0.88rem;
  color: rgba(232, 238, 242, 0.68);
  margin-bottom: 1rem;
}

.preview-btn--iscold {
  background: #4a8f87;
  color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(74, 143, 135, 0.28);
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-step {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(74, 143, 135, 0.2);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

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

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 820px;
  margin-inline: auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

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

.price-card--featured {
  border-color: rgba(74, 143, 135, 0.35);
  box-shadow: var(--shadow);
  transform: scale(1.02);
}

.price-card--featured:hover {
  transform: scale(1.02) translateY(-3px);
}

.price-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  border-radius: 999px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.price-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

/* Contact */

.section-contact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3348 50%, var(--navy-soft) 100%);
  color: var(--white);
}

.contact-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(74, 143, 135, 0.22), transparent 60%);
  pointer-events: none;
}

.contact-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 2.5rem;
  align-items: center;
}

.contact-box h2 { color: var(--white); }
.contact-box p { color: rgba(255, 255, 255, 0.72); }

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: min(100%, 340px);
}

.section-contact .btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.section-contact .btn-secondary:hover {
  border-color: var(--teal-bright);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Footer */

.footer {
  padding: 2.5rem 0 3rem;
  background: #0f1c2a;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 1rem;
  opacity: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.25rem 0;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--teal-bright); }

.footer-small {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.45;
}

.footer-small a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-small a:hover { color: var(--teal-bright); }

/* Cookie banner */

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 200;
  padding: 1rem 0 1.25rem;
  background: rgba(248, 249, 251, 0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px rgba(21, 37, 54, 0.1);
  backdrop-filter: blur(14px);
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.cookie-banner-text {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 42rem;
}

.cookie-banner-text a {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-privacy {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-privacy a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
}

.contact-privacy a:hover { color: var(--white); }

/* Legal pages */

.legal-page {
  padding: 6rem 0 4rem;
  background: var(--surface);
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0.35rem 0 0.5rem;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 600;
}

.legal-content a:hover { text-decoration: underline; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.88rem;
}

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

.legal-table th {
  background: var(--bg-soft);
  color: var(--navy);
  font-weight: 700;
}

.legal-table td { color: var(--muted); }

.legal-back { margin-top: 2.5rem; }

/* Mobile */

@media (max-width: 900px) {
  .hero-grid,
  .proof-grid,
  .cards,
  .work-grid,
  .work-card,
  .process-grid,
  .pricing-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

  .showcase-frame {
    transform: none;
  }

  .hero-showcase:hover .showcase-frame {
    transform: none;
  }

  .showcase-badge--top { right: 2%; }
  .showcase-badge--bottom { left: 2%; }

  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
  body { padding-bottom: 1rem; }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(74, 143, 135, 0.35);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: #e8eef2;
    border-radius: 2px;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 84px 0 0;
    background: rgba(8, 14, 20, 0.62);
    z-index: 98;
  }

  .nav-toggle:checked ~ .nav-backdrop { display: block; }

  .nav {
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: #0f1c2a;
    border-bottom: 1px solid rgba(74, 143, 135, 0.22);
    z-index: 99;
  }

  .nav a:not(.btn) {
    display: block;
    padding: 0.9rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(232, 238, 242, 0.85);
  }

  .nav .btn { width: 100%; margin-top: 0.75rem; }

  .nav-toggle:checked ~ .nav { display: flex; }

  .hero { padding: 3.5rem 0 3.5rem; }

  .hero-actions,
  .contact-actions { flex-direction: column; }

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

  .hero-stats { gap: 1.25rem; }

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

  .section { padding: 3.75rem 0; }

  .proof-band { padding: 2.75rem 0; }

  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions .btn { width: 100%; }

  .legal-table { font-size: 0.8rem; }
  .legal-table th,
  .legal-table td { padding: 0.55rem; }
}
