/* Profolio — cosmic theme, mobile-first, Instagram CTAs
 * © 2026 Amina Javed. All rights reserved.
 * https://studio.aminajaved.com/
 */

:root {
  --bg-base: #030305;
  --bg-glass: rgba(10, 15, 30, 0.55);
  --bg-glass-strong: rgba(8, 12, 26, 0.82);
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --cyan: #00f3ff;
  --magenta: #bc13fe;
  --cyan-soft: rgba(0, 243, 255, 0.15);
  --magenta-soft: rgba(188, 19, 254, 0.12);
  --border-cyan: rgba(0, 243, 255, 0.2);
  --border-cyan-strong: rgba(0, 243, 255, 0.45);
  --glow-cyan: 0 0 24px rgba(0, 243, 255, 0.35);
  --glow-card: 0 0 30px rgba(0, 243, 255, 0.12), inset 0 0 20px rgba(0, 243, 255, 0.04);
  --glow-card-hover: 0 0 40px rgba(0, 243, 255, 0.25), inset 0 0 24px rgba(0, 243, 255, 0.08);
  --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.55);
  --ig-start: #f58529;
  --ig-mid: #dd2a7b;
  --ig-end: #8134af;
  --wa-green: #25d366;
  --wa-green-deep: #128c7e;
  --radius: 18px;
  --radius-lg: 24px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --header-h: 4rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

::selection {
  background: #06b6d4;
  color: #fff;
}

/* ── Scroll progress + mobile journey (aminajaved-style) ── */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
  background-size: 200% 100%;
  z-index: 9999;
  box-shadow: 0 0 8px rgba(0, 243, 255, 0.6);
  transition: width 0.08s linear;
  pointer-events: none;
}

#scroll-journey {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 140;
  padding: 0.4rem 0.75rem calc(0.4rem + var(--safe-bottom));
  background: linear-gradient(to top, rgba(3, 3, 5, 0.95) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 243, 255, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#scroll-journey.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.journey-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  max-width: 28rem;
  margin-inline: auto;
}

.journey-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.journey-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 243, 255, 0.25);
  background: rgba(0, 243, 255, 0.04);
  color: var(--text-muted);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.journey-icon-btn svg {
  width: 0.95rem;
  height: 0.95rem;
}

.journey-icon-btn.active {
  background: rgba(0, 243, 255, 0.16);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.35);
  transform: scale(1.05);
}

.journey-icon-btn.done {
  color: rgba(0, 243, 255, 0.65);
  border-color: rgba(0, 243, 255, 0.35);
}

.journey-count {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  flex-shrink: 0;
  min-width: 2rem;
  text-align: right;
}

#scroll-hint {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#scroll-hint.hidden-hint {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

#scroll-hint span {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(0, 243, 255, 0.75);
}

#scroll-hint svg {
  color: var(--cyan);
  animation: scroll-hint-bounce 2s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── Space background ── */

#webgl-container {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--bg-base);
}

.hud-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 243, 255, 0.05);
}

.hud-overlay::before,
.hud-overlay::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
}

.hud-overlay::before {
  top: 16px;
  left: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  opacity: 0.45;
}

.hud-overlay::after {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.45;
}

.hud-corner-tr {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.45;
}

.hud-corner-bl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  opacity: 0.45;
}

.scanline {
  width: 100%;
  height: 2px;
  background: rgba(0, 243, 255, 0.06);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  animation: scan 6s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes scan {
  0% { top: -10%; }
  100% { top: 110%; }
}

.page-shell {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1080px, calc(100% - 1.5rem));
  margin-inline: auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-cyan);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
  text-shadow: var(--glow-cyan);
}

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

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, text-shadow 0.2s;
}

.site-nav a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 243, 255, 0.5);
}

.nav-cta {
  background: linear-gradient(135deg, var(--ig-start), var(--ig-mid), var(--ig-end)) !important;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(221, 42, 123, 0.35);
  text-shadow: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  margin-inline: auto;
  box-shadow: 0 0 6px rgba(0, 243, 255, 0.5);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

/* Instagram — brand gradient, alive hover */
.btn-instagram {
  background: linear-gradient(135deg, var(--ig-start) 0%, var(--ig-mid) 48%, var(--ig-end) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 4px 20px rgba(221, 42, 123, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-instagram:hover {
  filter: brightness(1.08);
  box-shadow:
    0 8px 28px rgba(221, 42, 123, 0.55),
    0 0 24px rgba(245, 133, 41, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-instagram:active {
  filter: brightness(0.96);
  transform: translateY(0);
}

/* WhatsApp — brand green, alive hover */
.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-deep) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-whatsapp:hover {
  filter: brightness(1.08);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.5),
    0 0 20px rgba(18, 140, 126, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-whatsapp:active {
  filter: brightness(0.96);
  transform: translateY(0);
}

/* Generic primary fallback → Instagram energy */
.btn-primary {
  background: linear-gradient(135deg, var(--ig-start) 0%, var(--ig-mid) 48%, var(--ig-end) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(221, 42, 123, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(221, 42, 123, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(0, 243, 255, 0.1);
  color: var(--cyan);
  border-color: var(--border-cyan-strong);
  box-shadow: 0 0 18px rgba(0, 243, 255, 0.14), inset 0 1px 0 rgba(0, 243, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(0, 243, 255, 0.18);
  box-shadow: var(--glow-cyan), 0 6px 24px rgba(0, 243, 255, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-cyan);
}

.btn-ghost:hover { color: var(--text-primary); }

.btn-lg {
  min-height: 52px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.btn-compact {
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  gap: 0.35rem;
  justify-content: center;
}

.btn-compact svg {
  flex-shrink: 0;
}

.btn-compact span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Hero ── */

.hero {
  padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.open-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.75rem;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.45);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 600;
}

.hero h1 .gradient {
  background: linear-gradient(120deg, var(--cyan) 0%, #e879f9 55%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.25));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: -0.35rem 0 0.65rem;
  color: var(--text-primary);
  font-weight: 600;
}

.hero-positioning,
.hero-engineer-note {
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  color: var(--text-secondary);
  max-width: 32rem;
  margin: 0.85rem 0 0;
  line-height: 1.55;
}

.hero-engineer-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-emotion {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: var(--cyan);
  max-width: 32rem;
  margin: 0 0 0.85rem;
  line-height: 1.6;
  text-shadow: 0 0 12px rgba(0, 243, 255, 0.15);
}

.hero-promises {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  max-width: 32rem;
}

.hero-promises li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-promises li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 32rem;
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.trust-item {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 14px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 243, 255, 0.4);
  line-height: 1.1;
}

.trust-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.3;
}

.hero-visual {
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
}

.hero-phone-stack {
  position: relative;
  width: min(340px, 92vw);
  margin-inline: auto;
  flex-shrink: 0;
}

.phone-frame {
  background: #050508;
  padding: 0.65rem 0.65rem 0.75rem;
  border-radius: 28px;
  border: 1px solid rgba(0, 243, 255, 0.15);
  box-shadow: var(--shadow-deep), 0 0 30px rgba(0, 243, 255, 0.1);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  display: block;
  width: 32%;
  height: 4px;
  background: rgba(0, 243, 255, 0.35);
  border-radius: 99px;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.phone-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background: #fff7ed;
  line-height: 0;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.phone-back {
  position: absolute;
  right: -6%;
  top: 10%;
  width: 76%;
  opacity: 0.55;
  transform: rotate(6deg);
  z-index: 0;
}

.phone-front {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}

/* ── Sections ── */

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  line-height: 1.65;
}

.work-honest {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

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

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

/* ── Work ── */

.work {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.featured-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 0.25rem 0 1rem;
}

.featured-scroll::-webkit-scrollbar { display: none; }

.work-card {
  flex: 0 0 min(300px, 82vw);
  scroll-snap-align: start;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-card-hover);
  border-color: var(--border-cyan-strong);
}

.work-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f4;
  border-bottom: 1px solid var(--border-cyan);
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #f5f5f4;
}

.work-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.work-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  background: var(--magenta-soft);
  border: 1px solid rgba(188, 19, 254, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.work-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}

.work-card-body p {
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.work-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
}

.work-note {
  text-align: center;
  color: var(--text-muted);
  margin: 2rem 0 1rem;
  font-size: 0.9rem;
}

.hint-swipe {
  color: var(--cyan);
  font-weight: 600;
}

/* ── Carousel ── */

.marquee-wrap { position: relative; }

.marquee-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  padding: 0.25rem 0;
}

.marquee-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
  touch-action: none;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.marquee-card {
  flex: 0 0 auto;
  width: min(260px, 72vw);
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(10, 15, 30, 0.78);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  transition: border-color 0.25s, transform 0.25s;
}

.marquee-card:hover {
  border-color: var(--border-cyan-strong);
  transform: translateY(-2px);
}

.marquee-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-cyan);
  background: #f5f5f4;
}

.marquee-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #f5f5f4;
}

.marquee-card-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.marquee-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}

.marquee-card-body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.marquee-card-cta {
  font-size: 0.82rem;
  color: var(--cyan);
  margin-top: 0.1rem;
}

/* ── Services ── */

.services {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, transparent, rgba(0, 243, 255, 0.03) 50%, transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-banner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-cyan-strong);
  box-shadow: var(--glow-card-hover);
  position: relative;
  overflow: hidden;
}

.pricing-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.06), rgba(188, 19, 254, 0.06));
  pointer-events: none;
}

.pricing-banner > * { position: relative; z-index: 1; }

.pricing-label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.pricing-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  margin: 0 0 0.5rem;
}

.pricing-banner h3 strong {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.pricing-note {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-hint {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-banner .btn-instagram,
.pricing-banner .btn-whatsapp,
.pricing-banner .btn-primary { align-self: flex-start; }

/* ── Process ── */

.process {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, transparent, rgba(0, 243, 255, 0.02) 50%, transparent);
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
  margin-inline: auto;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
}

.process-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid var(--border-cyan-strong);
  background: var(--cyan-soft);
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: 0;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.aftercare {
  margin-top: 2rem;
  max-width: 40rem;
  margin-inline: auto;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--magenta-soft);
  border: 1px solid rgba(188, 19, 254, 0.25);
  text-align: center;
}

.aftercare h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.aftercare p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.aftercare p:last-child {
  margin-bottom: 0;
}

/* ── Why me ── */

.why-me {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
}

.why-me-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.why-me-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.why-me-list li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.why-me-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.45);
}

/* ── Growth path ── */

.growth {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid rgba(0, 243, 255, 0.08);
}

.growth-ladder-wrap {
  margin: 0 auto;
  max-width: 100%;
}

.growth-hint {
  margin: 0 0 0.65rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.growth-ladder {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.growth-ladder::-webkit-scrollbar {
  display: none;
}

.growth-ladder li {
  position: relative;
  flex: 0 0 auto;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid rgba(0, 243, 255, 0.15);
  border-radius: var(--radius);
  text-align: center;
  white-space: nowrap;
  scroll-snap-align: start;
}

.growth-ladder li:not(:last-child) {
  margin-right: 1.35rem;
}

.growth-ladder li:not(:last-child)::after {
  content: "→";
  position: absolute;
  left: auto;
  right: -1rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 0.8rem;
  line-height: 1;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.45);
}

@media (min-width: 960px) {
  .growth-ladder {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    row-gap: 0.55rem;
    max-width: 40rem;
    margin-inline: auto;
  }

  .growth-ladder li:not(:last-child) {
    margin-right: 1.35rem;
  }

  .growth-hint {
    display: none;
  }
}

/* ── Quote ── */

.quote {
  padding: 0 0 clamp(2.5rem, 6vw, 4rem);
}

/* ── FAQ engineer note ── */

.faq-engineer-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

.faq {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.faq-list {
  max-width: 40rem;
  margin-inline: auto;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--cyan);
  line-height: 1;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── About ── */

.about {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.about-showcase-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  display: block;
  max-width: 100%;
  background: #f5f5f4;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.2rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.about-copy p {
  color: var(--text-secondary);
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-why,
.about-beginning,
.about-foundation {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--cyan-soft);
  border: 1px solid var(--border-cyan);
}

.about-why strong,
.about-beginning strong,
.about-foundation strong {
  color: var(--cyan);
}

.credentials-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.credentials-badge span {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 243, 255, 0.08);
  border: 1px solid rgba(0, 243, 255, 0.25);
}

.about-engineer {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(188, 19, 254, 0.06);
  border: 1px solid rgba(188, 19, 254, 0.22);
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Engineering portfolio ── */

.engineering-portfolio {
  padding: 0 0 clamp(2.5rem, 6vw, 4rem);
}

.engineering-box {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid rgba(188, 19, 254, 0.22);
  box-shadow: var(--glow-card);
  text-align: center;
}

.engineering-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.engineering-box p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Capabilities ── */

.capabilities {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid rgba(0, 243, 255, 0.08);
  background: linear-gradient(180deg, transparent, rgba(188, 19, 254, 0.04) 45%, transparent);
}

.capabilities-panel {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .capabilities-panel {
    grid-template-columns: minmax(0, 0.95fr) auto minmax(0, 1.35fr);
    align-items: stretch;
    gap: 0;
  }
}

.cap-card {
  position: relative;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  overflow: hidden;
}

.cap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.cap-card-today::before {
  background: linear-gradient(145deg, rgba(0, 243, 255, 0.1) 0%, transparent 55%);
}

.cap-card-soon::before {
  background: linear-gradient(145deg, rgba(188, 19, 254, 0.08) 0%, transparent 60%);
}

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

.cap-card-today {
  border-color: var(--border-cyan-strong);
  box-shadow: var(--glow-card-hover);
}

.cap-card-head {
  margin-bottom: 1.15rem;
}

.cap-badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cap-badge-live {
  color: var(--cyan);
  background: rgba(0, 243, 255, 0.12);
  border: 1px solid rgba(0, 243, 255, 0.35);
  box-shadow: 0 0 16px rgba(0, 243, 255, 0.2);
}

.cap-badge-soon {
  color: #e879f9;
  background: rgba(188, 19, 254, 0.12);
  border: 1px solid rgba(188, 19, 254, 0.3);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
}

.cap-card-sub {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cap-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(0, 243, 255, 0.06);
  border: 1px solid rgba(0, 243, 255, 0.22);
}

.cap-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
}

.cap-feature-label {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.cap-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .cap-bridge {
    flex-direction: column;
    padding: 0 0.65rem;
    align-self: center;
  }
}

.cap-bridge-line {
  flex: 1;
  height: 1px;
  width: 2.5rem;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.35), transparent);
}

@media (min-width: 768px) {
  .cap-bridge-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 243, 255, 0.35), transparent);
  }
}

.cap-bridge-arrow {
  font-size: 0.9rem;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.45);
}

.cap-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 480px) {
  .cap-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cap-chips li {
  padding: 0.62rem 0.75rem;
  border-radius: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.35;
  background: rgba(10, 15, 30, 0.65);
  border: 1px solid rgba(188, 19, 254, 0.16);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.cap-chips li:hover {
  color: var(--text-primary);
  border-color: rgba(188, 19, 254, 0.35);
  box-shadow: 0 0 18px rgba(188, 19, 254, 0.12);
}

.about-tech {
  margin-top: 1.25rem !important;
  font-size: 0.88rem;
}

.about-tech a {
  color: var(--cyan);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.35);
}

/* ── Testimonials (placeholder) ── */

.testimonials {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.testimonials-placeholder {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border-cyan);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonials-placeholder a {
  color: var(--cyan);
  font-weight: 600;
}

/* ── Contact ── */

.contact {
  padding: clamp(3rem, 8vw, 5rem) 0;
  padding-bottom: calc(clamp(3rem, 8vw, 5rem) + 4rem + var(--safe-bottom));
}

.contact-box {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-cyan-strong);
  box-shadow: var(--glow-card-hover);
}

.contact-reassurance {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.contact-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-actions .btn-compact {
  flex: 1;
  min-width: 0;
  max-width: 9.5rem;
}

.contact-actions .btn:not(.btn-compact) {
  flex: 1 1 auto;
  max-width: none;
}

/* ── P.S. note ── */

.ps-note {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(188, 19, 254, 0.12);
}

.ps-note-inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid rgba(188, 19, 254, 0.2);
  box-shadow: var(--glow-card);
  text-align: center;
}

.ps-label {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

.ps-text {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.ps-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
}

.ps-link:hover {
  text-decoration: underline;
}

/* ── Footer ── */

.site-footer {
  padding: 1.25rem 0 calc(5rem + var(--safe-bottom));
  border-top: 1px solid var(--border-cyan);
  background: rgba(2, 2, 3, 0.6);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  text-align: center;
}

.footer-credit {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  text-align: center;
  color: var(--text-muted);
  opacity: 0.85;
}

.footer-credit a {
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: none;
}

.footer-credit a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  background: rgba(0, 243, 255, 0.04);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.footer-icon:hover {
  color: var(--cyan);
  border-color: rgba(0, 243, 255, 0.4);
  box-shadow: 0 0 14px rgba(0, 243, 255, 0.15);
}

.footer-icon-ig:hover {
  color: #f58529;
  border-color: rgba(245, 133, 41, 0.45);
  box-shadow: 0 0 14px rgba(221, 42, 123, 0.2);
}

.footer-icon-wa:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.15);
}

.footer-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  white-space: nowrap;
}

.footer-cta:hover {
  text-decoration: underline;
}

/* ── Sticky CTA + skip link ── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--cyan);
  color: #030305;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.sticky-cta {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  gap: 0;
  padding: 0.45rem 0.5rem calc(0.45rem + var(--safe-bottom));
  background: rgba(3, 3, 5, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-cyan);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.sticky-cta-btn {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  color: var(--text-primary);
  border: 1px solid var(--border-cyan);
  margin: 0 0.2rem;
  transition: background 0.2s, border-color 0.2s;
}

.sticky-cta-wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(18, 140, 126, 0.28));
  border-color: rgba(37, 211, 102, 0.55);
  color: #6efe9a;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.15);
}

.sticky-cta-wa:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.35), rgba(18, 140, 126, 0.4));
  color: #fff;
  border-color: var(--wa-green);
}

.sticky-cta-ig {
  background: linear-gradient(135deg, rgba(245, 133, 41, 0.22), rgba(221, 42, 123, 0.28), rgba(129, 52, 175, 0.28));
  border-color: rgba(221, 42, 123, 0.5);
  color: #ffa8d2;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(221, 42, 123, 0.18);
}

.sticky-cta-ig:hover {
  background: linear-gradient(135deg, rgba(245, 133, 41, 0.35), rgba(221, 42, 123, 0.42), rgba(129, 52, 175, 0.4));
  color: #fff;
  border-color: var(--ig-mid);
}

.sticky-cta-quote {
  background: var(--cyan-soft);
  border-color: var(--border-cyan-strong);
  color: var(--cyan);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(0, 243, 255, 0.12);
}

.sticky-cta-quote:hover {
  background: rgba(0, 243, 255, 0.22);
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 243, 255, 0.28);
}

.sticky-cta-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--bg-base);
}

.error-inner {
  text-align: center;
  max-width: 28rem;
}

.error-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

/* ── Floating + mobile bar (legacy removed) ── */

.float-contact {
  display: none !important;
}

@media (min-width: 720px) {
  .sticky-cta {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    max-width: 14rem;
    flex-direction: column;
    border-radius: var(--radius);
    border: 1px solid var(--border-cyan-strong);
    padding: 0.5rem;
    gap: 0.35rem;
  }

  .sticky-cta-btn {
    font-size: 0.78rem;
    margin: 0;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

@media (max-width: 719px) {
  #scroll-journey {
    bottom: calc(3.15rem + var(--safe-bottom));
  }

  .site-footer {
    padding-bottom: calc(3.5rem + var(--safe-bottom));
  }
}

/* focus accessibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* ── Footer legacy cleanup below ── */

@media (max-width: 719px) {
  #scroll-hint { display: flex; }

  #scroll-journey {
    display: block;
    bottom: calc(3.15rem + var(--safe-bottom));
  }

  .hero {
    min-height: 88svh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: calc(3.5rem + var(--safe-bottom));
  }

  .featured-scroll .work-card {
    flex: 0 0 86vw;
    scroll-snap-align: center;
  }

  .contact-actions .btn-compact span {
    display: none;
  }

  .contact-actions .btn-compact {
    padding: 0.55rem;
    max-width: 3.25rem;
  }
}

@media (min-width: 720px) {
  #scroll-hint,
  #scroll-journey {
    display: none !important;
  }
}

/* ── Desktop ── */

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn { width: auto; }

  .trust-strip { gap: 1rem; }

  .trust-item { padding: 1rem; }

  .trust-item strong { font-size: 1.5rem; }

  .trust-item span { font-size: 0.75rem; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pricing-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }

  .about-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-actions .btn-compact {
    max-width: 8.5rem;
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .footer-meta {
    margin-bottom: 0.65rem;
  }

  .site-footer { padding-bottom: 2rem; }

  .contact {
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }
}

@media (min-width: 960px) {
  .featured-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 1.25rem;
  }

  .work-card { flex: unset; }

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

  .hero-phone-stack {
    width: min(380px, 42vw);
  }

  .phone-back {
    right: -5%;
    top: 8%;
    width: 74%;
  }

  .phone-front {
    width: 88%;
  }
}

@media (max-width: 719px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 1rem auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-cyan);
    box-shadow: var(--shadow-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
  }

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

  .site-nav a {
    padding: 0.75rem 0.5rem;
    text-align: center;
  }

  .nav-cta { margin-top: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scanline,
  .open-pill::before {
    animation: none;
  }

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

  .marquee-track {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  html { scroll-behavior: auto; }
}

/* ── Inner pages (Learn, Services) ── */

body.inner-page {
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 243, 255, 0.06), transparent 55%), var(--bg-base);
}

.inner-main {
  padding: 1.5rem 0 calc(4rem + var(--safe-bottom));
}

.content-article {
  max-width: 42rem;
}

.content-article > * + * {
  margin-top: 1.15rem;
}

.content-article h1 {
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

.content-article h2 {
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  margin-top: 2rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.content-article h3 {
  font-size: 1.05rem;
  margin-top: 1.35rem;
  margin-bottom: 0.25rem;
}

.content-article p,
.content-article li {
  color: var(--text-secondary);
}

.content-article a:not(.btn) {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-article a:not(.btn):hover {
  text-shadow: 0 0 12px rgba(0, 243, 255, 0.35);
}

.breadcrumb {
  padding: 0.85rem 0 0.25rem;
  font-size: 0.82rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.5rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cyan);
}

.breadcrumb [aria-current="page"] {
  color: var(--text-muted);
}

.author-byline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.author-byline time {
  color: var(--text-muted);
}

.content-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.content-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  background: var(--bg-glass);
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.content-table th,
.content-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 243, 255, 0.12);
  vertical-align: top;
}

.content-table th {
  background: rgba(0, 243, 255, 0.06);
  color: var(--text-primary);
  font-weight: 600;
  white-space: nowrap;
}

.content-table tr:last-child td {
  border-bottom: none;
}

.pros-cons-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}

@media (min-width: 640px) {
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros-box,
.cons-box {
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: var(--bg-glass);
}

.pros-box h3,
.cons-box h3 {
  margin-top: 0;
  font-size: 1rem;
}

.pros-box ul,
.cons-box ul {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.content-faq {
  margin-top: 1.5rem;
}

.content-faq .faq-item {
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
  background: var(--bg-glass);
}

.content-faq .faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
}

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

.content-faq .faq-item p {
  margin: 0.65rem 0 0;
}

.qa-block {
  border-left: 3px solid var(--cyan);
  padding-left: 1rem;
  margin: 1.25rem 0;
}

.qa-block h2 {
  margin-top: 0;
  font-size: 1.1rem;
}

.how-to-steps {
  counter-reset: howto;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.how-to-steps li {
  counter-increment: howto;
  position: relative;
  padding: 0.85rem 0 0.85rem 2.75rem;
  border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.how-to-steps li::before {
  content: counter(howto);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1.85rem;
  height: 1.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cyan-soft);
  border: 1px solid var(--border-cyan);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
}

.content-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.06), rgba(188, 19, 254, 0.04));
}

.content-cta h2 {
  margin-top: 0;
}

.related-links {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-cyan);
}

.related-links ul {
  padding-left: 1.15rem;
  margin: 0.5rem 0 0;
}

.entity-qa {
  border-left: 3px solid var(--cyan);
  padding: 0.85rem 0 0.85rem 1rem;
  margin: 1.35rem 0;
  background: rgba(0, 243, 255, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.entity-qa dt {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.entity-qa dd {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

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

/* ── Homepage SEO hubs ── */

.project-index {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  background: var(--bg-glass);
}

.project-index-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.project-index-list {
  display: grid;
  gap: 0.35rem 1.25rem;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}

.project-index-list a {
  color: var(--text-secondary);
  text-decoration: none;
}

.project-index-list a:hover {
  color: var(--cyan);
}

@media (min-width: 640px) {
  .project-index-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .project-index-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-hub-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.service-hub-card {
  display: block;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  background: var(--bg-glass);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-hub-card:hover {
  border-color: var(--border-cyan-strong);
  box-shadow: var(--glow-card);
}

.service-hub-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  color: var(--text-primary);
}

.service-hub-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .service-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .service-hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.learn-hub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.learn-hub-list a {
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  background: var(--bg-glass);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
}

.learn-hub-list a:hover {
  border-color: var(--border-cyan-strong);
  color: var(--cyan);
}

.entity-profile {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.78rem;
}

.footer-sitemap a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-sitemap a:hover {
  color: var(--cyan);
}

.service-proof-img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-cyan);
}

.demo-label {
  font-weight: 400;
  font-size: 0.85em;
  opacity: 0.7;
}

.footer-sitemap-guides {
  margin-top: 0.15rem;
  opacity: 0.88;
}

.expertise,
.learn-hub {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

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

.page-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin: 0.35rem 0 0.75rem;
}

.page-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 38rem;
  line-height: 1.65;
}

.content-prose section + section {
  margin-top: 2rem;
}

.content-prose h2 {
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  margin-bottom: 0.5rem;
}

.content-prose p,
.content-prose li {
  color: var(--text-secondary);
}

.service-links ul,
.service-links li {
  color: var(--text-secondary);
}

.service-links a {
  color: var(--cyan);
}

.page-cta {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.06), rgba(188, 19, 254, 0.04));
}

.page-cta h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.page-cta .contact-actions {
  flex-direction: column;
  align-items: stretch;
}

.page-cta .contact-actions .btn {
  width: 100%;
  max-width: none;
}

@media (min-width: 520px) {
  .page-cta .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .page-cta .contact-actions .btn {
    width: auto;
    flex: 1 1 calc(50% - 0.35rem);
  }
}

.inner-page .site-header {
  position: relative;
}

/* ── Client feedback form ── */

.feedback-page {
  max-width: 40rem;
}

.feedback-trust {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
}

.feedback-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1.25rem 0 0;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-cyan);
  border-radius: 999px;
  background: rgba(0, 243, 255, 0.04);
}

.feedback-time strong {
  color: var(--text-primary);
  font-weight: 600;
}

.feedback-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin: 1.35rem 0 0.25rem;
  padding: 0;
  list-style: none;
}

.feedback-progress-step {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.feedback-progress-label {
  font-size: 0.68rem;
  line-height: 1.25;
  text-align: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.feedback-progress-step.is-active .feedback-progress-label {
  color: var(--cyan);
  font-weight: 600;
}

.feedback-progress-step.is-complete .feedback-progress-label {
  color: var(--text-secondary);
}

.feedback-progress-bar {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: height 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feedback-progress-step.is-active .feedback-progress-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), rgba(188, 19, 254, 0.85));
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.25);
}

.feedback-progress-step.is-complete .feedback-progress-bar {
  height: 4px;
  background: linear-gradient(90deg, rgba(0, 243, 255, 0.55), rgba(188, 19, 254, 0.45));
}

.feedback-progress-status {
  margin: 0;
}

.feedback-form {
  margin-top: 1.5rem;
}

.feedback-fieldset {
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
}

.feedback-fieldset legend {
  padding: 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.feedback-field {
  margin-top: 1rem;
}

.feedback-field:first-of-type {
  margin-top: 0.35rem;
}

.feedback-field label,
.feedback-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.feedback-required {
  color: var(--cyan);
}

.feedback-optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85em;
}

.feedback-field input[type="text"],
.feedback-field input[type="email"],
.feedback-field input[type="tel"],
.feedback-field input[type="url"],
.feedback-field select,
.feedback-field textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: rgba(3, 3, 5, 0.55);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feedback-field input:focus,
.feedback-field select:focus,
.feedback-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.12);
}

.feedback-field textarea {
  resize: vertical;
  min-height: 5rem;
  line-height: 1.55;
}

.feedback-hint {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feedback-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.15rem;
}

.star-rating input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.star-rating label {
  cursor: pointer;
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--text-muted);
  transition: color 0.15s, transform 0.15s;
}

.star-rating label::before {
  content: "★";
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label,
.star-rating input:focus-visible + label {
  color: #f5c518;
}

.star-rating input:focus-visible + label {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

.feedback-permissions-lead {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.feedback-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.feedback-check input {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--cyan);
}

.feedback-check strong {
  color: var(--text-primary);
  font-weight: 600;
}

.feedback-field-conditional {
  margin-left: 1.7rem;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(0, 243, 255, 0.2);
}

.feedback-field-inline {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.feedback-actions {
  margin-top: 0.5rem;
}

.feedback-actions .btn {
  width: 100%;
}

.feedback-submit-note {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.feedback-return {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  color: var(--text-muted);
  text-align: center;
}

.feedback-return a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.feedback-return a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.feedback-thanks-box {
  text-align: center;
  max-width: 32rem;
  margin-inline: auto;
  padding: 2rem 1.35rem;
  border: 1px solid var(--border-cyan-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-glass-strong);
  box-shadow: var(--glow-card-hover);
}

.feedback-thanks-box h1 {
  margin-bottom: 0.5rem;
}

.feedback-thanks-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--cyan);
}

.feedback-thanks-icon svg {
  filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.35));
}

.feedback-thanks-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.aftercare-feedback {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-cyan);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.aftercare-feedback a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.aftercare-feedback a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 480px) {
  .feedback-actions .btn {
    width: auto;
  }

  .feedback-thanks-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
