:root {
  --bg: #efe8e2;
  --surface: rgba(250, 252, 255, 0.82);
  --surface-strong: #fbfcff;
  --surface-dark: #08132f;
  --surface-dark-2: #10234f;
  --text: #0f1730;
  --muted: #5f6882;
  --line: rgba(15, 23, 48, 0.12);
  --line-strong: rgba(255, 255, 255, 0.15);
  --accent: #0098f0;
  --accent-strong: #0038b8;
  --accent-bright: #22dcff;
  --accent-soft: #cdb9ff;
  --accent-deep: #6800e6;
  --accent-pink: #f020e0;
  --accent-glow: rgba(240, 32, 224, 0.26);
  --cool-glow: rgba(0, 160, 240, 0.2);
  --whatsapp: #25d366;
  --whatsapp-strong: #128c4a;
  --success: #9ee7b4;
  --shadow-soft: 0 22px 60px rgba(22, 28, 31, 0.12);
  --shadow-strong: 0 30px 90px rgba(8, 10, 12, 0.22);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 12%, rgba(34, 220, 255, 0.22), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(240, 32, 224, 0.16), transparent 20%),
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(180deg, #f8f3ee 0%, #eef2fb 52%, #e8e8f6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 118px 118px;
  opacity: 0.2;
  mask-image: radial-gradient(circle at center, #000 36%, transparent 84%);
  -webkit-mask-image: radial-gradient(circle at center, #000 36%, transparent 84%);
}

body::after {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.4), transparent 18%),
    radial-gradient(circle at 78% 34%, var(--cool-glow), transparent 22%),
    radial-gradient(circle at 38% 70%, rgba(240, 32, 224, 0.12), transparent 18%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
summary,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.page-orb {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.72;
  mix-blend-mode: multiply;
  animation: orb-drift 18s ease-in-out infinite;
}

.page-orb-left {
  width: 220px;
  height: 220px;
  top: 140px;
  left: -100px;
  background: rgba(0, 160, 240, 0.22);
}

.page-orb-right {
  width: 280px;
  height: 280px;
  top: 540px;
  right: -120px;
  background: rgba(160, 0, 240, 0.24);
  animation-delay: -7s;
  animation-duration: 22s;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 48px 0 100px;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(240, 32, 224, 0.18), transparent 25%),
    linear-gradient(160deg, #07122c 0%, #0e1d45 60%, #163064 100%);
  color: #edf2ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 16px));
  opacity: 0;
  pointer-events: none;
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 16px 44px rgba(14, 18, 21, 0.14);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.82) 0%, rgba(236, 241, 255, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(22, 28, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: linear-gradient(180deg, rgba(17, 23, 23, 0.18) 0%, rgba(17, 23, 23, 0.34) 100%);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s step-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 72px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: none;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(12, 20, 24, 0.2));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  font-size: 0.94rem;
  color: rgba(17, 23, 23, 0.82);
  transition: color 0.25s ease;
}

.site-nav a[data-nav-highlighted="true"] {
  color: var(--accent-strong);
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: var(--nav-indicator-width, 0);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
  opacity: 0;
  transform: translateX(var(--nav-indicator-x, 0));
  transition:
    transform 0.24s ease,
    width 0.24s ease,
    opacity 0.2s ease;
  pointer-events: none;
}

.nav-indicator.is-visible {
  opacity: 1;
}

.menu-toggle {
  display: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(17, 23, 23, 0.12);
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.94) 0%, rgba(233, 239, 255, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 10px 22px rgba(19, 25, 30, 0.1);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background: linear-gradient(120deg, transparent 36%, rgba(255, 255, 255, 0.58) 50%, transparent 64%);
  transform: translateX(-150%) rotate(10deg);
  animation: control-sheen-glide 6.5s ease-in-out infinite;
  pointer-events: none;
}

.menu-toggle span {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #0d1738;
  transition:
    transform 0.28s ease,
    opacity 0.25s ease,
    width 0.28s ease,
    background-color 0.28s ease;
  transform-origin: center;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  width: 16px;
  transform: translateY(4px);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 152, 240, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 14px 28px rgba(19, 25, 30, 0.14);
}

.menu-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, #0a1430 0%, #173774 100%);
  border-color: rgba(160, 0, 240, 0.26);
  box-shadow: 0 16px 34px rgba(10, 14, 16, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-toggle[aria-expanded="true"] span {
  width: 20px;
  background: #eef3ff;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.3) 0%, transparent 42%);
  opacity: 0.52;
  mix-blend-mode: screen;
  animation: button-ambient-drift 7.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.36) 47%, transparent 72%);
  transform: translateX(-135%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 28%, var(--accent-deep) 72%, var(--accent-pink) 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #f8fbff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(69, 23, 175, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: button-gradient-flow 8s ease-in-out infinite;
}

.button-secondary {
  border-color: rgba(17, 23, 23, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(240, 244, 255, 0.7) 100%);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.button-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-strong) 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #f7fff9;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(18, 140, 74, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: button-gradient-flow 7s ease-in-out infinite;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 152, 240, 0.16);
  background: rgba(0, 152, 240, 0.08);
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-pink) 100%);
  box-shadow: 0 0 0 6px rgba(0, 160, 240, 0.12);
  animation: status-pulse-warm 2.8s ease-in-out infinite;
}

.section-dark .eyebrow {
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-copy .eyebrow,
.brief-copy .eyebrow {
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  padding: 32px 0 24px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-card {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-copy {
  position: relative;
  isolation: isolate;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 85% 18%, rgba(240, 32, 224, 0.22), transparent 20%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(145deg, #071022 0%, #0b1838 42%, #153067 100%);
  color: #edf2ff;
  box-shadow: 0 36px 120px rgba(7, 10, 12, 0.28);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 110px 110px, 110px 110px;
  opacity: 0.44;
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 220, 255, 0.24) 0%, rgba(240, 32, 224, 0.08) 48%, rgba(240, 32, 224, 0.02) 72%);
  filter: blur(4px);
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(180deg, #fbfdff 0%, #caebff 42%, #e4d3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.hero-lead {
  max-width: 630px;
  margin: 22px 0 0;
  color: rgba(237, 242, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: rgba(237, 242, 255, 0.86);
}

.hero-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent-pink) 100%);
  box-shadow: 0 0 0 6px rgba(34, 220, 255, 0.12);
  animation: status-pulse-warm 2.6s ease-in-out infinite;
}

.hero-card {
  position: relative;
  isolation: isolate;
  padding: 26px;
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.88) 0%, rgba(234, 240, 255, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 152, 240, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 24%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-portrait {
  --portrait-size: 184px;
  position: relative;
  width: min(100%, calc(var(--portrait-size) + 28px));
  margin: 0 auto 18px;
  display: grid;
  justify-items: center;
  gap: 14px;
  overflow: visible;
  min-height: auto;
  background: none;
  box-shadow: none;
  outline: none;
}

.hero-portrait::after {
  content: none;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: calc(var(--portrait-size) + 18px);
  height: calc(var(--portrait-size) + 18px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 220, 255, 0.24) 0%, rgba(160, 0, 240, 0.08) 58%, transparent 74%);
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero-portrait img {
  position: relative;
  z-index: 1;
  width: var(--portrait-size);
  height: var(--portrait-size);
  min-height: 0;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 10px solid rgba(250, 252, 255, 0.82);
  box-shadow: 0 20px 40px rgba(17, 23, 23, 0.16);
  transform: scale(1);
  transition: transform 0.55s ease;
}

.hero-portrait figcaption {
  position: static;
  z-index: 1;
  width: min(100%, calc(var(--portrait-size) + 24px));
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
  backdrop-filter: none;
  color: var(--text);
  text-align: center;
}

.hero-portrait strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.hero-portrait span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.availability,
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 23, 23, 0.08);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.availability-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(158, 231, 180, 0.18);
  animation: status-pulse-success 2.2s ease-in-out infinite;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.offer-panel,
.info-card,
.about-card,
.about-metrics,
.package-card,
.faq-item,
.brief-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 23, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.stat-card::before,
.offer-panel::before,
.info-card::before,
.about-card::before,
.about-metrics::before,
.package-card::before,
.faq-item::before,
.brief-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 55%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}

.stat-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(237, 243, 255, 0.74) 100%);
}

.stat-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.offer-panel {
  margin-top: 14px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 243, 255, 0.98) 100%);
}

.offer-label {
  margin: 0 0 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(17, 23, 23, 0.06);
  font-size: 0.83rem;
  font-weight: 600;
}

.timeline {
  counter-reset: timeline-steps;
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.timeline-step {
  position: relative;
  counter-increment: timeline-steps;
  padding: 18px 20px 18px 74px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(240, 32, 224, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(239, 243, 255, 0.88) 100%);
  border: 1px solid rgba(17, 23, 23, 0.06);
  box-shadow: 0 14px 30px rgba(17, 23, 23, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-step::before {
  content: counter(timeline-steps);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 42%, var(--accent-deep) 100%);
  color: #f8fbff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 26px rgba(69, 23, 175, 0.2);
}

.timeline-step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(240, 32, 224, 0.45) 50%, transparent 100%);
}

.timeline strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
}

.timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.proof-bar {
  padding: 16px 0 20px;
}

.proof-shell {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(250, 252, 255, 0.78) 0%, rgba(240, 244, 255, 0.72) 100%);
  border: 1px solid rgba(17, 23, 23, 0.08);
  box-shadow: var(--shadow-soft);
}

.proof-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.34) 48%, transparent 76%);
  transform: translateX(-120%);
  animation: sheen-sweep 11s linear infinite;
  pointer-events: none;
}

.proof-shell p {
  margin: 0;
  font-weight: 600;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.5);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.info-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(240, 244, 255, 0.72) 100%);
}

.info-card h3,
.about-card h3,
.work-copy h3,
.package-card h3,
.brief-copy h2,
.brief-panel h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.info-card p,
.about-card p:last-child,
.work-copy p,
.package-card ul,
.package-time,
.brief-copy p,
.brief-panel p,
.brief-notes span,
.faq-item p,
.site-footer p,
.about-metrics span {
  color: var(--muted);
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 18px;
  margin-top: 18px;
}

.about-card,
.about-metrics {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(240, 244, 255, 0.72) 100%);
}

.about-profile {
  display: block;
  margin-bottom: 20px;
}

.about-profile-copy {
  min-width: 0;
}

.about-profile-copy .eyebrow {
  margin-bottom: 12px;
}

.about-role {
  margin: 10px 0 0;
  color: var(--accent-strong);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-metrics {
  display: grid;
  gap: 18px;
}

.about-metrics div {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 23, 23, 0.06) 0%, rgba(17, 23, 23, 0.03) 100%);
  border: 1px solid rgba(17, 23, 23, 0.04);
}

.about-metrics strong,
.brief-notes strong,
.footer-shell strong {
  display: block;
  margin-bottom: 6px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.work-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(34, 220, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.work-card:hover {
  transform: translateY(-6px) rotate(-0.3deg);
  border-color: rgba(34, 220, 255, 0.45);
  box-shadow: 0 26px 70px rgba(6, 8, 10, 0.24);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.work-frame {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 24px 44px rgba(14, 19, 22, 0.16);
}

.work-card-amber .work-frame {
  background: linear-gradient(160deg, rgba(34, 220, 255, 0.88) 0%, rgba(0, 56, 184, 0.96) 100%);
}

.work-card-sand .work-frame {
  background: linear-gradient(160deg, rgba(226, 214, 255, 0.92) 0%, rgba(51, 23, 130, 0.95) 100%);
}

.work-card-coral .work-frame {
  background: linear-gradient(160deg, rgba(240, 32, 224, 0.9) 0%, rgba(26, 16, 104, 0.96) 100%);
}

.work-card-stone .work-frame {
  background: linear-gradient(160deg, rgba(170, 228, 255, 0.86) 0%, rgba(18, 35, 84, 0.96) 100%);
}

.work-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  background: rgba(250, 252, 255, 0.92);
  box-shadow: 0 16px 28px rgba(18, 24, 28, 0.12);
}

.work-frame::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 26px;
  width: 124px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 23, 23, 0.14) 0%, rgba(17, 23, 23, 0.05) 100%);
  border: 1px solid rgba(17, 23, 23, 0.08);
  box-shadow:
    190px -16px 0 -30px rgba(17, 23, 23, 0.18),
    0 12px 24px rgba(17, 23, 23, 0.14);
}

.work-frame span {
  position: absolute;
  left: 34px;
  right: 34px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17, 23, 23, 0.14) 0%, rgba(17, 23, 23, 0.06) 100%);
}

.work-frame span:nth-child(1) {
  top: 42px;
  right: 120px;
}

.work-frame span:nth-child(2) {
  top: 88px;
}

.work-frame span:nth-child(3) {
  top: 126px;
  right: 78px;
}

.work-copy p {
  color: rgba(236, 241, 255, 0.78);
}

.portfolio-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portfolio-note-label,
.portfolio-type {
  margin: 0;
  color: var(--accent-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-note h3,
.portfolio-body h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.28rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.portfolio-note-copy p,
.portfolio-copy,
.portfolio-section-cta p {
  margin: 0;
  color: rgba(236, 241, 255, 0.78);
  line-height: 1.75;
}

.portfolio-note-tags,
.portfolio-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-detail-block {
  display: grid;
  gap: 10px;
  height: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-detail-title {
  display: block;
  color: #f8fbff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-detail-list {
  margin: 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 20px;
  color: rgba(236, 241, 255, 0.78);
  line-height: 1.6;
}

.portfolio-detail-list li {
  break-inside: avoid;
}

.portfolio-detail-list li + li {
  margin-top: 4px;
}

.portfolio-note-tags {
  margin-top: 18px;
}

.portfolio-note-tags span,
.portfolio-tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f7ff;
  font-size: 0.8rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.portfolio-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.portfolio-preview {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 16px;
  text-align: left;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 44px rgba(6, 8, 10, 0.16);
  cursor: zoom-in;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.portfolio-card-showcase {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.portfolio-preview::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: -30px;
  bottom: -52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(6px);
}

.portfolio-preview::after {
  content: "Open large preview";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 13, 28, 0.68);
  color: #f4f7ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.portfolio-preview:hover,
.portfolio-preview:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(34, 220, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 54px rgba(6, 8, 10, 0.22);
}

.portfolio-browser-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(11, 18, 36, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.portfolio-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.portfolio-browser-bar::after {
  content: "";
  flex: 1 1 auto;
  height: 10px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.portfolio-media-shell {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  margin-top: 14px;
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(9, 13, 18, 0.18);
  background:
    radial-gradient(circle at top right, rgba(34, 220, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(5, 11, 30, 0.98) 0%, rgba(9, 18, 42, 0.98) 100%);
}

.portfolio-media-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 24%, rgba(7, 13, 28, 0.28) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 110px 110px, 110px 110px;
  opacity: 0.7;
  pointer-events: none;
}

.portfolio-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(6, 11, 26, 0.96);
}

.portfolio-media-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.portfolio-media-pill,
.portfolio-media-time {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 13, 28, 0.66);
  color: #f4f7ff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}

.portfolio-media-pill {
  color: #eef4ff;
}

.portfolio-media-time {
  color: var(--accent-bright);
}

.video-dialog {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s step-end;
}

.video-dialog.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.24s ease, visibility 0s step-start;
}

.video-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 24, 0.72);
  backdrop-filter: blur(14px);
}

.video-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(34, 220, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(8, 17, 38, 0.96) 0%, rgba(9, 17, 33, 0.94) 100%);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.video-dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.video-dialog-label {
  margin: 0;
  color: var(--accent-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-dialog-title {
  margin: 14px 0 0;
  color: #f5f8ff;
  font-family: "Fraunces", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.video-dialog-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.video-dialog-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.video-dialog-close span:first-child {
  transform: rotate(45deg);
}

.video-dialog-close span:last-child {
  transform: rotate(-45deg);
}

.video-dialog-close:hover,
.video-dialog-close:focus-visible {
  transform: scale(1.04);
  border-color: rgba(34, 220, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.video-dialog-frame {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(6, 12, 27, 0.98) 0%, rgba(9, 17, 33, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.video-dialog-player {
  display: block;
  width: 100%;
  max-height: calc(100vh - 190px);
  background: #050a16;
}

body.modal-open .quick-dock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.portfolio-card-amber .portfolio-preview {
  background: linear-gradient(160deg, rgba(255, 194, 120, 0.2) 0%, rgba(112, 52, 18, 0.22) 100%);
}

.portfolio-card-sand .portfolio-preview {
  background: linear-gradient(160deg, rgba(255, 230, 179, 0.18) 0%, rgba(73, 41, 120, 0.26) 100%);
}

.portfolio-card-coral .portfolio-preview {
  background: linear-gradient(160deg, rgba(96, 212, 255, 0.2) 0%, rgba(25, 46, 109, 0.3) 100%);
}

.portfolio-card-stone .portfolio-preview {
  background: linear-gradient(160deg, rgba(210, 228, 255, 0.22) 0%, rgba(92, 116, 180, 0.22) 100%);
}

.portfolio-card-amber .portfolio-media-pill {
  color: #ffe0b9;
}

.portfolio-card-sand .portfolio-media-pill {
  color: #f5dcff;
}

.portfolio-card-coral .portfolio-media-pill {
  color: #cfeeff;
}

.portfolio-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 14px 18px;
  align-content: start;
}

.portfolio-topline,
.portfolio-body h3,
.portfolio-copy,
.portfolio-actions {
  grid-column: 1 / -1;
}

.portfolio-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.portfolio-badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f8ff;
  font-size: 0.8rem;
  font-weight: 600;
}

.portfolio-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.portfolio-spec-grid div {
  min-width: 0;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.portfolio-spec-grid strong {
  display: block;
  margin-bottom: 6px;
  color: #f8fbff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-spec-grid span {
  display: block;
  color: rgba(236, 241, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.6;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-actions .button {
  flex: 1 1 180px;
}

.portfolio-section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.portfolio-section-cta .button {
  flex: 0 0 auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.84) 0%, rgba(239, 243, 255, 0.72) 100%);
}

.package-card-featured {
  background:
    radial-gradient(circle at top right, rgba(240, 32, 224, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(250, 252, 255, 0.96) 0%, rgba(233, 239, 255, 0.94) 100%);
  transform: translateY(-12px);
  border-color: rgba(0, 152, 240, 0.18);
  box-shadow: 0 28px 80px rgba(69, 23, 175, 0.12);
}

.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(17, 23, 23, 0.1) 0%, rgba(17, 23, 23, 0.16) 100%);
  color: #f7f9ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-name {
  margin: 0 0 8px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.package-price {
  margin: 12px 0 6px;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Fraunces", serif;
}

.package-time {
  margin: 0;
}

.package-card ul {
  margin: 0;
  padding-left: 18px;
}

.package-card li + li {
  margin-top: 10px;
}

.package-card .button {
  margin-top: auto;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(0, 152, 240, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(249, 251, 255, 0.92) 0%, rgba(239, 243, 255, 0.86) 100%);
  border: 1px solid rgba(17, 23, 23, 0.08);
  box-shadow: 0 24px 60px rgba(19, 25, 30, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pricing-panel-main h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.pricing-start {
  margin: 18px 0 8px;
  font-size: 1.08rem;
  color: var(--muted);
}

.pricing-start strong {
  color: var(--text);
  font-size: 1.5rem;
  font-family: "Fraunces", serif;
}

.pricing-copy,
.pricing-panel-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 23, 23, 0.06);
  line-height: 1.65;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-strong) 100%);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.12);
  animation: status-pulse-green 2.4s ease-in-out infinite;
}

.pricing-panel-cta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 23, 23, 0.08);
}

.pricing-panel-cta .button {
  flex: 0 0 auto;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.8) 0%, rgba(239, 243, 255, 0.74) 100%);
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 22px 42px 22px 0;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-strong);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 22px;
}

.brief-section {
  padding-top: 24px;
}

.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: 22px;
}

.brief-copy {
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(240, 32, 224, 0.22), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #07122c 0%, #10214e 48%, #16346d 100%);
  background-size: auto, 110px 110px, 110px 110px, auto;
  color: #edf2ff;
  box-shadow: var(--shadow-strong);
}

.brief-copy .eyebrow {
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.brief-copy p {
  color: rgba(237, 242, 255, 0.8);
}

.brief-notes {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.brief-notes div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brief-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(0, 152, 240, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(249, 251, 255, 0.9) 0%, rgba(240, 244, 255, 0.82) 100%);
}

.brief-panel-label {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.brief-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.brief-points li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 23, 23, 0.05) 0%, rgba(17, 23, 23, 0.02) 100%);
  border: 1px solid rgba(17, 23, 23, 0.06);
  line-height: 1.65;
}

.brief-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-strong) 100%);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.1);
  animation: status-pulse-green 2.4s ease-in-out infinite;
}

.brief-cta {
  width: 100%;
  min-height: 56px;
}

.brief-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--accent-strong);
}

.site-footer {
  padding: 0 0 34px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.84) 0%, rgba(240, 244, 255, 0.78) 100%);
  border: 1px solid rgba(17, 23, 23, 0.08);
  box-shadow: 0 18px 44px rgba(19, 25, 30, 0.08);
}

.footer-shell p {
  margin: 8px 0 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.footer-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.84rem;
}

.quick-dock {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 30;
  width: 48px;
  height: 48px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.97);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s step-end;
}

.quick-dock-actions {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.quick-dock-action,
.quick-dock-trigger {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  transform-origin: center bottom;
}

.quick-dock-action {
  border: 1px solid rgba(17, 23, 23, 0.1);
  background: rgba(250, 252, 255, 0.94);
  backdrop-filter: blur(14px);
  color: #0f1730;
  box-shadow: 0 16px 34px rgba(17, 23, 23, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.88);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s step-end,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.quick-dock-action::before,
.quick-dock-trigger::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background: linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.62) 50%, transparent 66%);
  transform: translateX(-145%) rotate(10deg);
  animation: control-sheen-glide 6.8s ease-in-out infinite;
  pointer-events: none;
}

.quick-dock-action svg,
.quick-dock-trigger svg {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-dock-action-whatsapp {
  border-color: rgba(18, 140, 74, 0.14);
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-strong) 100%);
  color: #f7fff9;
  box-shadow: 0 18px 34px rgba(18, 140, 74, 0.24);
}

.quick-dock-action-whatsapp svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.quick-dock-trigger {
  border: 1px solid rgba(17, 23, 23, 0.08);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.96), transparent 54%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 241, 255, 0.98) 58%, rgba(226, 233, 255, 0.98) 100%);
  backdrop-filter: blur(16px);
  color: #163775;
  box-shadow:
    0 14px 30px rgba(17, 23, 23, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.46) inset;
  animation: quick-dock-trigger-breathe 3.2s ease-in-out infinite;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.quick-dock-trigger::after {
  content: none;
}

.quick-dock-trigger-icon {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  filter: drop-shadow(0 0 8px rgba(0, 160, 240, 0.16));
  transition: transform 0.26s ease;
}

.quick-dock.is-open .quick-dock-action,
.quick-dock:focus-within .quick-dock-action {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s step-start,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.quick-dock.is-open .quick-dock-trigger,
.quick-dock:focus-within .quick-dock-trigger {
  background: linear-gradient(145deg, #ffffff 0%, #ecf1ff 100%);
  border-color: rgba(0, 152, 240, 0.22);
  color: #0f38b6;
  box-shadow:
    0 18px 36px rgba(17, 23, 23, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.52) inset;
  animation: none;
}

.quick-dock.is-open .quick-dock-trigger::after,
.quick-dock:focus-within .quick-dock-trigger::after {
  content: none;
  animation: none;
}

.quick-dock.is-open .quick-dock-trigger-icon,
.quick-dock:focus-within .quick-dock-trigger-icon {
  transform: rotate(45deg);
}

.quick-dock.is-open .quick-dock-action-top svg,
.quick-dock:focus-within .quick-dock-action-top svg {
  animation: back-to-top-arrow-bob 1.7s ease-in-out infinite;
}

.quick-dock.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.34s ease,
    transform 0.34s ease,
    visibility 0s step-start;
}

.quick-dock.is-visible.is-suspended {
  pointer-events: none;
}

body.menu-open .quick-dock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

@keyframes sheen-sweep {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes button-ambient-drift {
  0% {
    transform: translate3d(-12%, 18%, 0) scale(0.92);
    opacity: 0.45;
  }

  50% {
    transform: translate3d(12%, -10%, 0) scale(1.06);
    opacity: 0.8;
  }

  100% {
    transform: translate3d(24%, 8%, 0) scale(0.96);
    opacity: 0.52;
  }
}

@keyframes button-gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes control-sheen-glide {
  0% {
    transform: translateX(-150%) rotate(10deg);
    opacity: 0;
  }

  18% {
    opacity: 0.42;
  }

  52% {
    opacity: 0.18;
  }

  100% {
    transform: translateX(150%) rotate(10deg);
    opacity: 0;
  }
}

@keyframes quick-dock-trigger-breathe {
  0%,
  100% {
    box-shadow:
      0 14px 30px rgba(17, 23, 23, 0.12),
      0 0 0 0 rgba(0, 152, 240, 0),
      0 0 0 1px rgba(255, 255, 255, 0.46) inset;
  }

  50% {
    box-shadow:
      0 18px 36px rgba(17, 23, 23, 0.16),
      0 0 0 8px rgba(0, 152, 240, 0.08),
      0 0 0 1px rgba(255, 255, 255, 0.52) inset;
  }
}

@keyframes back-to-top-arrow-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  18% {
    transform: translateY(0) scale(1);
  }

  42% {
    transform: translateY(-3px) scale(1.04);
  }

  58% {
    transform: translateY(1px) scale(0.98);
  }

  74% {
    transform: translateY(-1px) scale(1.01);
  }
}

@keyframes status-pulse-green {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.12);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.04);
  }
}

@keyframes status-pulse-success {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(158, 231, 180, 0.18);
  }

  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(158, 231, 180, 0.05);
  }
}

@keyframes status-pulse-warm {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 220, 255, 0.14);
  }

  50% {
    transform: scale(1.14);
    box-shadow: 0 0 0 10px rgba(240, 32, 224, 0.06);
  }
}

@media (hover: hover) and (pointer: fine) {
  .site-nav a:not(.button):hover,
  .site-nav a:not(.button):focus-visible {
    color: var(--accent-strong);
  }

  .button:hover::before,
  .button:focus-visible::before {
    transform: translateX(130%);
  }

  .quick-dock.is-visible:hover .quick-dock-action,
  .quick-dock.is-visible:focus-within .quick-dock-action {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0s step-start,
      box-shadow 0.24s ease,
      background-color 0.24s ease,
      border-color 0.24s ease,
      color 0.24s ease;
  }

  .quick-dock.is-visible:hover .quick-dock-trigger,
  .quick-dock.is-visible:focus-within .quick-dock-trigger {
    background: linear-gradient(145deg, #ffffff 0%, #ecf1ff 100%);
    border-color: rgba(0, 152, 240, 0.22);
    color: #0f38b6;
    box-shadow:
      0 18px 36px rgba(17, 23, 23, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.52) inset;
    animation: none;
  }

  .quick-dock.is-visible:hover .quick-dock-trigger::after,
  .quick-dock.is-visible:focus-within .quick-dock-trigger::after {
    content: none;
    animation: none;
  }

  .quick-dock.is-visible:hover .quick-dock-trigger-icon,
  .quick-dock.is-visible:focus-within .quick-dock-trigger-icon {
    transform: rotate(45deg);
  }

  .quick-dock.is-visible:hover .quick-dock-action-top svg,
  .quick-dock.is-visible:focus-within .quick-dock-action-top svg {
    animation: back-to-top-arrow-bob 1.7s ease-in-out infinite;
  }

  .quick-dock-action:hover,
  .quick-dock-action:focus-visible {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 20px 38px rgba(17, 23, 23, 0.18);
  }

  .quick-dock-action-top:hover,
  .quick-dock-action-top:focus-visible {
    background: #0b1531;
    border-color: rgba(0, 56, 184, 0.24);
    color: #f8fbff;
  }

  .quick-dock-action-whatsapp:hover,
  .quick-dock-action-whatsapp:focus-visible {
    box-shadow: 0 22px 40px rgba(18, 140, 74, 0.3);
  }

  .hero-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 152, 240, 0.2);
    box-shadow: 0 34px 96px rgba(10, 12, 14, 0.2);
  }

  .hero-portrait:hover img {
    transform: scale(1.04);
  }

  .stat-card:hover,
  .offer-panel:hover,
  .timeline-step:hover,
  .info-card:hover,
  .about-card:hover,
  .about-metrics:hover,
  .package-card:hover,
  .pricing-panel:hover,
  .faq-item:hover,
.brief-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 152, 240, 0.18);
    box-shadow: 0 26px 70px rgba(19, 25, 30, 0.12);
  }

  .faq-item:hover summary {
    color: var(--accent-strong);
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-panel {
    grid-template-columns: 1fr;
  }

  .faq-shell,
  .brief-grid,
  .about-grid,
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .portfolio-note {
    grid-template-columns: 1fr;
  }

  .portfolio-card-showcase {
    grid-template-columns: 1fr;
  }

  .portfolio-body {
    grid-template-columns: 1fr;
  }

  .portfolio-detail-list {
    columns: 1;
  }

  .portfolio-spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  body.menu-open .nav-scrim {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.28s ease, visibility 0s step-start;
  }

  .site-header {
    padding: 14px 0;
  }

  .header-shell {
    position: relative;
    border-radius: 26px;
    padding: 12px 14px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(249, 251, 255, 0.94);
    border: 1px solid rgba(17, 23, 23, 0.08);
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s step-end;
  }

  .nav-indicator {
    display: none;
  }

  .site-nav a {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.26s ease,
      transform 0.26s ease,
      color 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 0.26s ease,
      transform 0.26s ease,
      visibility 0s step-start;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open a:nth-of-type(1) {
    transition-delay: 0.04s;
  }

  .site-nav.is-open a:nth-of-type(2) {
    transition-delay: 0.08s;
  }

  .site-nav.is-open a:nth-of-type(3) {
    transition-delay: 0.12s;
  }

  .site-nav.is-open a:nth-of-type(4) {
    transition-delay: 0.16s;
  }

  .site-nav.is-open a:nth-of-type(5) {
    transition-delay: 0.2s;
  }

  .hero-copy,
  .hero-card,
  .brief-copy,
  .brief-panel {
    padding: 26px;
  }

  .hero-copy,
  .hero-card,
  .pricing-panel,
  .about-card,
  .about-metrics,
  .info-card,
  .faq-item,
  .brief-copy,
  .brief-panel,
  .work-card {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease,
      background-color 0.3s ease;
  }

  .quick-dock {
    display: block;
  }

  .quick-dock-actions {
    right: 0;
    bottom: calc(100% + 10px);
    flex-direction: column;
  }

  .hero-portrait {
    --portrait-size: 200px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 11vw, 4.6rem);
  }

  .proof-shell {
    border-radius: 28px;
  }

  .work-grid,
  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-section-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .pricing-panel-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .work-card:hover {
    transform: translateY(-4px);
  }

  .package-card-featured {
    transform: none;
  }

  .footer-shell {
    flex-direction: column;
  }

  .quick-dock {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100vw - 24px), 100%);
  }

  .section {
    padding: 34px 0 74px;
  }

  .site-header {
    padding: 10px 0 0;
  }

  .hero {
    padding-top: 12px;
  }

  .header-shell {
    gap: 12px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 64px;
    height: 54px;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .brief-grid {
    gap: 18px;
  }

  .portfolio-note,
  .portfolio-section-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .pricing-panel {
    padding: 24px;
    border-radius: 24px;
  }

  .pricing-list li {
    padding: 13px 14px 13px 40px;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .hero-copy,
  .hero-card,
  .brief-copy,
  .brief-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-copy {
    background:
      radial-gradient(circle at top left, rgba(240, 32, 224, 0.16), transparent 28%),
      linear-gradient(145deg, #08132f 0%, #10214b 56%, #16346d 100%);
  }

  .hero-card {
    background:
      radial-gradient(circle at top right, rgba(0, 152, 240, 0.16), transparent 24%),
      linear-gradient(180deg, rgba(250, 252, 255, 0.94) 0%, rgba(236, 241, 255, 0.9) 100%);
  }

  .hero-copy::before {
    opacity: 0.86;
  }

  .hero-copy::after {
    background-size: auto, 84px 84px, 84px 84px;
    opacity: 0.7;
  }

  .hero-copy h1,
  .section-heading h2,
  .brief-copy h2 {
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 0.98;
  }

  .hero-copy h1 {
    line-height: 1.03;
    letter-spacing: -0.025em;
  }

  .hero-lead,
  .section-heading p:last-child,
  .info-card p,
  .about-card p:last-child,
  .brief-copy p,
  .brief-panel p,
  .faq-item p,
  .package-card ul {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-list {
    gap: 12px;
  }

  .hero-list li,
  .pricing-list li,
  .brief-points li,
  .timeline-step {
    backdrop-filter: blur(10px);
  }

  .hero-card-top {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    --portrait-size: 172px;
  }

  .timeline-step {
    padding: 17px 18px 17px 68px;
  }

  .timeline-step::before {
    left: 16px;
    top: 16px;
    width: 36px;
    height: 36px;
  }

  .proof-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 24px;
  }

  .proof-tags {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .proof-tags::-webkit-scrollbar,
  .tag-row::-webkit-scrollbar {
    display: none;
  }

  .tag-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .proof-tags span,
  .tag-row span {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .work-frame {
    min-height: 160px;
  }

  .portfolio-preview {
    min-height: auto;
  }

  .portfolio-media-shell {
    aspect-ratio: 15 / 11;
  }

  .portfolio-media-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .video-dialog {
    padding: 16px;
  }

  .video-dialog-panel {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    padding: 18px;
    border-radius: 24px;
  }

  .video-dialog-frame {
    margin-top: 16px;
    border-radius: 20px;
  }

  .package-card,
  .faq-item,
  .brief-panel {
    border-radius: 24px;
  }

  .faq-item,
  .footer-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-meta {
    width: 100%;
  }

  .quick-dock {
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .quick-dock-actions {
    right: 0;
    bottom: calc(100% + 8px);
    gap: 8px;
  }

  .quick-dock-action,
  .quick-dock-trigger {
    width: 44px;
    height: 44px;
  }

  .service-grid .reveal:nth-child(2),
  .work-grid .reveal:nth-child(2),
  .faq-list .reveal:nth-child(2) {
    transition-delay: 0.06s;
  }

  .service-grid .reveal:nth-child(3),
  .work-grid .reveal:nth-child(3),
  .faq-list .reveal:nth-child(3) {
    transition-delay: 0.12s;
  }

  .service-grid .reveal:nth-child(4),
  .work-grid .reveal:nth-child(4),
  .faq-list .reveal:nth-child(4) {
    transition-delay: 0.18s;
  }
}

@media (max-width: 420px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100vw - 20px), 100%);
  }

  .site-header {
    padding: 10px 0;
  }

  .header-shell {
    border-radius: 22px;
  }

  .site-nav {
    left: 10px;
    right: 10px;
    padding: 16px;
    border-radius: 22px;
  }

  .hero-copy,
  .hero-card,
  .portfolio-note,
  .portfolio-section-cta,
  .brief-copy,
  .brief-panel,
  .footer-shell {
    padding: 18px;
  }

  .hero-copy h1,
  .section-heading h2,
  .brief-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .hero-copy h1 {
    line-height: 1.04;
    letter-spacing: -0.02em;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .availability,
  .hero-pill,
  .tag-row span,
  .proof-tags span,
  .footer-meta span {
    font-size: 0.78rem;
  }

  .hero-portrait {
    --portrait-size: 152px;
  }

  .hero-portrait figcaption {
    width: 100%;
    padding: 0;
  }

  .timeline-step {
    padding: 16px 16px 16px 62px;
  }

  .timeline p {
    font-size: 0.86rem;
  }

  .work-card,
  .package-card {
    padding: 18px;
  }

  .work-frame {
    min-height: 140px;
  }

  .portfolio-preview {
    min-height: auto;
    padding: 14px;
  }

  .portfolio-media-shell {
    aspect-ratio: 14 / 11;
  }

  .portfolio-media-overlay {
    flex-wrap: wrap;
  }

  .video-dialog {
    padding: 12px;
  }

  .video-dialog-panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 14px;
    border-radius: 22px;
  }

  .video-dialog-top {
    align-items: flex-start;
  }

  .video-dialog-close {
    width: 42px;
    height: 42px;
  }

  .portfolio-badge,
  .portfolio-media-pill,
  .portfolio-media-time,
  .portfolio-note-tags span,
  .portfolio-tag-row span {
    font-size: 0.76rem;
  }

  .work-frame span {
    left: 22px;
    right: 22px;
  }

  .work-frame span:nth-child(1) {
    right: 72px;
  }

  .work-frame span:nth-child(3) {
    right: 56px;
  }

  .faq-item summary {
    padding: 18px 32px 18px 0;
  }

  .faq-item summary::after {
    top: 14px;
  }

  .quick-dock {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: 42px;
    height: 42px;
  }

  .quick-dock-actions {
    right: 0;
    bottom: calc(100% + 7px);
    gap: 7px;
  }

  .quick-dock-action,
  .quick-dock-trigger {
    width: 42px;
    height: 42px;
  }

  .quick-dock-action svg,
  .quick-dock-trigger svg {
    width: 15px;
    height: 15px;
  }

}

@media (hover: none) and (pointer: coarse) {
  .button,
  .menu-toggle,
  .quick-dock-trigger,
  .quick-dock-action,
  .work-card,
  .info-card,
  .faq-item,
  .pricing-panel,
  .about-card,
  .about-metrics,
  .brief-panel,
  .timeline-step,
  .stat-card {
    will-change: transform;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }

  .button:hover::before,
  .button:focus-visible::before {
    transform: translateX(-135%);
  }

  .button:active {
    transform: scale(0.985);
  }

  .menu-toggle:active,
  .quick-dock-trigger:active {
    transform: scale(0.96);
  }

  .quick-dock-action:active {
    transform: scale(0.985);
  }

  .work-card:hover {
    transform: none;
    border-color: var(--line-strong);
  }

  .faq-item summary:active,
  .package-card:active,
  .work-card:active,
  .info-card:active,
  .pricing-panel:active,
  .about-card:active,
  .about-metrics:active,
  .brief-panel:active,
  .timeline-step:active,
  .stat-card:active {
    transform: scale(0.988);
    opacity: 0.96;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
