:root {
  --bg: #050816;
  --bg-soft: #0b1224;
  --panel: rgba(10, 16, 34, 0.72);
  --panel-strong: rgba(14, 20, 40, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7ff;
  --muted: #98a3c7;
  --accent: #75f6d9;
  --accent-2: #7aa6ff;
  --glow: 0 0 60px rgba(117, 246, 217, 0.18);
  --radius: 28px;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(122, 166, 255, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(117, 246, 217, 0.14), transparent 24%),
    linear-gradient(180deg, #050816 0%, #060a18 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.ambient-a {
  top: -10rem;
  right: -6rem;
  background: #7aa6ff;
}

.ambient-b {
  bottom: 10rem;
  left: -8rem;
  background: #75f6d9;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
.section,
.hero {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--glow);
}

.site-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.section,
.hero {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 60px;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero-text,
.section-heading,
.glass-card p,
.portfolio-card p,
.process-step p,
.price-card p,
.why-item p,
.cta-copy,
.cta-text,
.contact-form span {
  color: var(--muted);
}

.hero-text {
  max-width: 40rem;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-pills span,
.price-label,
.portfolio-arrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #d8e2ff;
  font-size: 0.84rem;
}

.hero-actions,
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease, box-shadow 200ms ease;
  touch-action: manipulation;
}

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

.button:active {
  transform: scale(0.96);
  opacity: 0.88;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #b4fff0);
  color: #031019;
  box-shadow: var(--glow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}

.hero-metrics strong,
.result-item strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

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

.orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: radial-gradient(circle at 30% 30%, rgba(117, 246, 217, 0.18), rgba(122, 166, 255, 0.02));
  box-shadow: var(--glow);
}

.orbital-a {
  width: 140px;
  height: 140px;
  top: 10%;
  left: 10%;
}

.orbital-b {
  width: 82px;
  height: 82px;
  right: 12%;
  bottom: 16%;
}

.visual-card,
.floating-card,
.glass-card,
.portfolio-card,
.results-panel,
.price-card,
.why-item,
.cta-card,
.process-step {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.visual-card-main {
  position: absolute;
  inset: 8% 8% auto auto;
  width: min(100%, 470px);
  padding: 22px;
  border-radius: 32px;
}

.visual-topline {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.visual-panel {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(122, 166, 255, 0.14), rgba(117, 246, 217, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dbe7ff;
  font-size: 0.86rem;
}

.visual-panel h2 {
  margin: 16px 0 22px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat-row div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-row strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Space Grotesk", sans-serif;
}

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

.chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 180px;
}

.chart span {
  flex: 1;
  border-radius: 18px 18px 6px 6px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 40px rgba(122, 166, 255, 0.18);
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 22px;
  max-width: 240px;
}

.floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-chat {
  left: 0;
  bottom: 18%;
}

.floating-social {
  right: 0;
  top: 14%;
}

.floating-analytics {
  right: 10%;
  bottom: 5%;
}

.floating-line {
  position: absolute;
  inset: 16% 10% 20% 12%;
  border: 1px solid rgba(117, 246, 217, 0.14);
  border-radius: 40px;
}

.signal-bar {
  width: min(1200px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  color: #cfdbff;
  text-align: center;
  font-size: 0.92rem;
}

.section {
  padding: 110px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.service-grid,
.pricing-grid,
.results-grid {
  display: grid;
  gap: 20px;
}

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

.glass-card,
.price-card,
.why-item {
  padding: 28px;
  border-radius: var(--radius);
}

.price-card {
  min-height: 220px;
}

.price-label {
  margin-bottom: 18px;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(122, 166, 255, 0.24), rgba(117, 246, 217, 0.16));
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.glass-card h3,
.portfolio-card h3,
.process-step h3,
.price-card h3,
.why-item h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.glass-card p,
.portfolio-card p,
.process-step p,
.price-card p,
.why-item p {
  margin: 0;
  line-height: 1.7;
}

.service-price {
  margin-top: 16px !important;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent) !important;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  grid-column: span 4;
  min-height: 280px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(122, 166, 255, 0.16), rgba(117, 246, 217, 0.08));
  transition: transform 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(117, 246, 217, 0.34);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117, 246, 217, 0.18), transparent 68%);
  pointer-events: none;
}

.portfolio-large {
  grid-column: span 8;
  min-height: 360px;
}

.portfolio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.portfolio-card .tag {
  margin-bottom: 0;
}

.portfolio-preview {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(5, 10, 24, 0.55);
  overflow: hidden;
}

.preview-dashboard {
  min-height: 170px;
  padding: 18px;
}

.mini-window {
  width: 100%;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  height: 86px;
  margin-top: 18px;
}

.mini-chart span:nth-child(1) {
  height: 44%;
}

.mini-chart span:nth-child(2) {
  height: 82%;
}

.mini-chart span:nth-child(3) {
  height: 61%;
}

.mini-chart span:nth-child(4) {
  height: 100%;
}

.mini-chart span {
  border-radius: 16px 16px 4px 4px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mini-metrics b {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.preview-reels,
.preview-chat,
.preview-launch,
.preview-timeline {
  min-height: 120px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

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

.preview-reels span {
  display: block;
  min-height: 88px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(122, 166, 255, 0.32), rgba(117, 246, 217, 0.1));
}

.preview-reels span:nth-child(2) {
  min-height: 118px;
}

.preview-timeline {
  align-items: center;
}

.preview-timeline span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(122, 166, 255, 0.36), rgba(117, 246, 217, 0.16));
}

.preview-timeline span:nth-child(2) {
  width: 78%;
}

.preview-timeline span:nth-child(3) {
  width: 92%;
}

.preview-timeline span:nth-child(4) {
  width: 64%;
}

.preview-chat span {
  display: block;
  width: 82%;
  min-height: 26px;
  border-radius: 16px 16px 16px 6px;
  background: rgba(255, 255, 255, 0.07);
}

.preview-chat span:nth-child(2) {
  width: 66%;
  justify-self: end;
  border-radius: 16px 16px 6px 16px;
  background: linear-gradient(90deg, rgba(122, 166, 255, 0.4), rgba(117, 246, 217, 0.24));
}

.preview-launch {
  grid-template-columns: 1.2fr 0.8fr;
}

.preview-launch span {
  display: block;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(117, 246, 217, 0.08));
}

.preview-launch span:nth-child(1),
.preview-launch span:nth-child(2) {
  min-height: 108px;
}

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

.process-step {
  position: relative;
  padding: 24px;
  border-radius: 28px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
}

.results-panel,
.cta-card {
  padding: 36px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(122, 166, 255, 0.08), rgba(117, 246, 217, 0.05)),
    var(--panel-strong);
}

.results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.result-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

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

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

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

.cta-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
}

.cta-text {
  max-width: 38rem;
  margin: 20px 0 0;
  line-height: 1.75;
}

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

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  resize: vertical;
  font-size: 16px; /* prevents iOS zoom */
  -webkit-appearance: none;
  transition: border-color 200ms ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(117, 246, 217, 0.4);
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer {
  width: min(1200px, calc(100% - 40px));
  margin: 96px auto 40px;
  padding: 28px 0 8px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer-title {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.footer-text {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  color: var(--muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.preview-bot-chat {
  min-height: 160px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-bot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-bot-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #031019;
  flex-shrink: 0;
}

.mini-bot-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.mini-bot-status {
  font-size: 0.7rem;
  color: var(--accent);
}

.mini-bot-messages {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-msg {
  padding: 7px 11px;
  border-radius: 14px;
  font-size: 0.76rem;
  line-height: 1.45;
  max-width: 88%;
}

.mini-msg-bot {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px 14px 14px 4px;
  color: var(--text);
  align-self: flex-start;
}

.mini-msg-user {
  background: linear-gradient(135deg, rgba(122, 166, 255, 0.28), rgba(117, 246, 217, 0.18));
  border: 1px solid rgba(117, 246, 217, 0.18);
  border-radius: 14px 14px 4px 14px;
  color: #e0f0ff;
  align-self: flex-end;
}

.mini-kbd-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.mini-kbd-row span {
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(122, 166, 255, 0.14);
  border: 1px solid rgba(122, 166, 255, 0.2);
  color: #b4ccff;
  font-size: 0.7rem;
}

.case-body {
  background:
    radial-gradient(circle at top right, rgba(122, 166, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #050816 0%, #080c1b 100%);
}

.case-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 100px;
}

.case-hero,
.case-section {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 32px;
  padding: 32px;
  margin-top: 24px;
}

.case-back {
  display: inline-flex;
  margin-top: 24px;
  color: var(--muted);
}

.case-hero h1 {
  margin: 12px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.case-meta,
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.case-meta div,
.case-stats div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.case-section h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.case-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.case-list div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  color: #d8e2ff;
  line-height: 1.65;
}

.case-cta {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(122, 166, 255, 0.08), rgba(117, 246, 217, 0.06)),
    var(--panel-strong);
}

@media (max-width: 1100px) {
  .hero,
  .why-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .pricing-grid,
  .results-grid,
  .process-line,
  .signal-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card,
  .portfolio-large {
    grid-column: span 6;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  /* --- NAV --- */
  .site-header {
    position: relative;
    z-index: 100;
    padding: 18px 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 200;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 8, 22, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 250ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    transition: background 150ms ease, color 150ms ease;
    -webkit-tap-highlight-color: transparent;
  }

  .site-nav a:active {
    background: rgba(255,255,255,0.06);
    color: var(--text);
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle span {
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
    transform-origin: center;
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* --- HERO --- */
  .hero {
    min-height: auto;
    padding: 20px 0 40px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 4.8rem);
    line-height: 1.0;
  }

  .hero-text {
    font-size: 1rem;
    margin-top: 16px;
  }

  .hero-metrics {
    gap: 16px;
    margin-top: 28px;
  }

  .hero-metrics strong {
    font-size: 1.2rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    font-size: 1.05rem;
  }

  /* --- SECTIONS --- */
  .section {
    padding-top: 64px;
  }

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

  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  /* --- SERVICES --- */
  .service-grid,
  .pricing-grid,
  .results-grid,
  .process-line,
  .why-list,
  .signal-bar {
    grid-template-columns: 1fr;
  }

  .glass-card {
    padding: 22px;
  }

  /* --- PORTFOLIO --- */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-large {
    grid-column: span 1;
    min-height: 220px;
    padding: 22px;
  }

  /* --- CTA / CONTACT --- */
  .cta-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }

  .cta-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .cta-text {
    margin-top: 12px;
    font-size: 0.97rem;
  }

  .cta-links .button,
  .contact-form button {
    width: 100%;
    font-size: 1.05rem;
  }

  /* --- FORM --- */
  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
    border-radius: 16px;
  }

  /* --- FOOTER --- */
  .site-footer {
    margin-top: 64px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  /* --- VISUAL / MISC --- */
  .visual-card-main {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  /* --- CASES --- */
  .case-hero,
  .case-section {
    padding: 24px;
    border-radius: 24px;
  }

  .case-meta,
  .case-stats,
  .case-list {
    grid-template-columns: 1fr;
  }

  .case-hero h1 {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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