﻿:root {
  --bg-0: #0d0d0d;
  --bg-1: #0d0d0d;
  --surface: rgba(20, 20, 20, 0.9);
  --surface-soft: #141414;
  --line: #222222;
  --line-soft: #222222;
  --text: #eaeaea;
  --muted: #a1a1aa;
  --primary: #ff2d2d;
  --primary-strong: #ff2d2d;
  --warm: #ff2d2d;
  --shadow-xl: 0 34px 70px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 36px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  background: var(--bg-0);
  min-height: 100vh;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

.ambient-layer,
.ambient-layer::before,
.ambient-layer::after {
  display: none;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.section {
  padding-top: clamp(3.3rem, 7vw, 6rem);
}

.home-page .section {
  padding-top: clamp(2rem, 5vw, 3.2rem);
}

.home-page .section-shell {
  width: 100%;
  margin: 0;
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
  border-bottom: 1px solid #111;
}

.section-shell {
  background: #0d0d0d;
}

.section-shell-alt {
  background: #101010;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid #222;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(14px);
}

.top-strip-shell {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}

.top-brand {
  display: inline-flex;
  align-items: center;
}

.top-strip-logo {
  height: 46px;
  width: auto;
  max-width: min(260px, 100%);
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: 0;
}

.icon-rail {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-rail-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.3rem;
  border: 1px solid #222;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.icon-rail-mobile-links {
  display: none;
}

.rail-mobile-link {
  border: 1px solid #222;
  border-radius: 12px;
  min-height: 40px;
  padding: 0.65rem 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.rail-mobile-link:hover {
  color: var(--text);
  border-color: #ff2d2d;
  background: rgba(255, 45, 45, 0.06);
  transform: translateY(-1px);
}

.rail-icon {
  min-height: 42px;
  padding: 0.62rem 0.82rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 170ms ease, color 170ms ease, border-color 170ms ease, transform 170ms ease;
  cursor: pointer;
}

.rail-icon svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rail-icon span {
  display: inline-block;
}

.rail-icon:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transform: translateY(-1px);
}

.rail-icon.active {
  color: #ff2d2d;
  background: rgba(255, 45, 45, 0.08);
  border-color: rgba(255, 45, 45, 0.18);
}

.icon-divider {
  display: none;
}

.strip-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.strip-btn {
  min-height: 44px;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.strip-btn-dark {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.strip-btn-dark:hover {
  border-color: #ff2d2d;
  background: rgba(255, 45, 45, 0.06);
}

.strip-btn-hot {
  border-color: #ff2d2d;
  background: #ff2d2d;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.35);
}

.strip-btn-hot:hover {
  background: #e62929;
  box-shadow: 0 0 24px rgba(255, 45, 45, 0.3);
}

.top-strip-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #222;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 4px;
}

.top-strip-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.book-now-block {
  margin-top: 0.34rem;
  width: 100%;
  min-height: 68px;
  border-radius: 12px;
  border: 1px solid rgba(255, 29, 68, 0.95);
  background: linear-gradient(125deg, #ff1a3f, #ff2a45);
  color: #fff;
  font-size: 1.16rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 24px rgba(255, 24, 66, 0.35);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.book-now-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(255, 24, 66, 0.42);
}

.hero-book-now {
  margin-top: 1.15rem;
  width: min(260px, 100%);
  min-height: 56px;
  font-size: 1rem;
}

.reels-section .section-head h2 {
  max-width: 24ch;
}

.reels-note {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.55;
}

.reels-note code {
  color: #fff;
}

.reels-page-title {
  margin-top: 0.5rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: min(100%, 860px);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.reels-subtitle {
  margin-top: 0.5rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.16;
  max-width: 30ch;
  letter-spacing: -0.01em;
}

.section-head-compact > p:last-child {
  margin-top: 0.6rem;
}

.reels-stage {
  margin-top: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  padding: 0.9rem;
}

.reels-stage-slider {
  display: grid;
  gap: 0.75rem;
}

.landscape-reels-wrap {
  margin-top: 1.55rem;
  display: grid;
  gap: 0.9rem;
}

.reels-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.reels-counter {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.03em;
}

.reels-nav-btn {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 76px;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.reels-nav-btn:hover {
  border-color: rgba(255, 104, 104, 0.48);
  background: rgba(255, 75, 75, 0.12);
  transform: translateY(-1px);
}

.reels-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.reels-strip-slider {
  grid-auto-columns: minmax(240px, 320px);
}

.reels-strip-landscape {
  grid-auto-columns: minmax(320px, 540px);
}

.reels-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.28rem;
}

.reels-strip::-webkit-scrollbar {
  height: 8px;
}

.reels-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.reel-work-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 0.56rem;
  scroll-snap-align: start;
}

.reel-frame {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: linear-gradient(145deg, rgba(75, 9, 21, 0.95), rgba(18, 18, 24, 0.96));
}

.reel-frame-landscape {
  aspect-ratio: 16 / 9;
}

.reel-frame-audio {
  display: grid;
  align-items: end;
  padding: 0.8rem;
}

.reel-audio-wrap {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(12, 12, 17, 0.7);
  padding: 0.6rem;
}

.reel-audio-label {
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-audio-frame {
  width: 100%;
}

.reel-video-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.reel-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.36rem;
  text-align: center;
  padding: 0.9rem;
}

.reel-placeholder p {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.reel-placeholder span {
  color: var(--muted);
  font-size: 0.8rem;
}

.reel-work-meta {
  margin-top: 0.56rem;
  display: grid;
  gap: 0.3rem;
}

.reel-tag {
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.reel-work-meta h3 {
  font-size: 1.04rem;
  line-height: 1.28;
}

.reel-work-meta p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.52;
}

.reel-empty {
  margin: 0.1rem 0;
  border: 1px dashed var(--line);
  border-radius: 11px;
  padding: 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.partner-join-box {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  padding: 1rem;
}

.partner-join-box h2 {
  margin-top: 0.3rem;
  font-size: clamp(1.35rem, 3.2vw, 2.05rem);
  line-height: 1.15;
}

.partner-join-note {
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.56;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: block;
}

.brand-logo {
  height: 58px;
  width: auto;
  max-width: min(260px, 100%);
  display: block;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  transition: transform 220ms ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

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

.nav-links a {
  font-size: 0.94rem;
  color: rgba(244, 244, 247, 0.86);
  position: relative;
  transition: color 150ms ease;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary), var(--warm));
  transition: transform 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  color: #fff;
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 8px;
}

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

.menu-toggle span + span {
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 0.78rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.btn-small {
  padding: 0.55rem 0.92rem;
  font-size: 0.84rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--primary-strong), var(--warm));
  box-shadow: 0 14px 28px rgba(255, 52, 52, 0.28);
}

.btn-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at center, rgba(255, 45, 45, 0.12), transparent 60%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 45, 45, 0.05) 72%,
    rgba(255, 45, 45, 0.1) 100%
  );
}

.hero-grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.hero-title-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
}

.hero-copy > * + * {
  margin-top: 1rem;
}

.hero-copy > .hero-actions {
  margin-top: 1.75rem;
}

.hero-copy > .hero-note {
  margin-top: 0.9rem;
}

.hero-copy h1 {
  margin: 0 auto;
  max-width: min(100%, 840px);
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-head h1,
.section-head h2,
.contact-simple-intro h1 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-title-line {
  display: block;
}

.hero-copy p {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.74;
  font-size: 1.02rem;
}

.hero-subcopy {
  color: #a1a1aa;
  font-size: clamp(1rem, 1.8vw, 1.08rem);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: 180px;
  min-height: 50px;
  justify-content: center;
  border-radius: 12px;
}

.hero .btn-primary {
  border-color: #ff2d2d;
  background: #ff2d2d;
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.35);
}

.hero .btn-primary:hover {
  transform: scale(1.03);
  background: #e62929;
  box-shadow: 0 0 24px rgba(255, 45, 45, 0.32);
}

.hero .btn-outline {
  border-color: #333;
  background: rgba(255, 255, 255, 0.02);
  color: #eaeaea;
}

.hero .btn-outline:hover {
  border-color: #ff2d2d;
  background: rgba(255, 45, 45, 0.08);
}

.hero-note {
  max-width: 34ch;
  color: rgba(161, 161, 170, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.live-card,
.mini-card,
.stat-card,
.service-card,
.price-card,
.testimonial-shell,
.quote-form,
.quote-summary,
.workflow-preview,
.workflow-box,
.faq-item,
.cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.live-card {
  padding: 1rem;
  box-shadow: var(--shadow-lg);
}

.live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.live-head h2 {
  font-size: 1rem;
}

.live-pill {
  font-size: 0.74rem;
  border: 1px solid rgba(255, 64, 64, 0.46);
  border-radius: 999px;
  padding: 0.28rem 0.52rem;
  color: #fff;
  background: rgba(255, 48, 48, 0.17);
}

.live-card ul {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.6rem;
}

.live-card li {
  padding: 0.65rem;
  border-radius: 11px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}

.live-card li strong {
  display: block;
  font-size: 0.85rem;
}

.live-card li small {
  color: var(--muted);
  font-size: 0.74rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-card {
  padding: 0.95rem;
  text-align: center;
}

.mini-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 2.4rem;
  line-height: 0.86;
}

.mini-card p {
  font-size: 0.8rem;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat-card {
  padding: 0.95rem;
}

.stat-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 0.9;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.83rem;
}

.section-head h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.16;
  max-width: 20ch;
}

.service-grid,
.portfolio-grid,
.pricing-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

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

.service-card {
  padding: 1rem;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -80% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 55, 55, 0.24), transparent 68%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card h3 {
  font-size: 1.02rem;
}

.service-card p {
  margin-top: 0.46rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.service-card span {
  margin-top: 0.76rem;
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 66, 66, 0.42);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
}

.service-card:hover::before {
  opacity: 1;
}

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

.portfolio-card {
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.portfolio-card:nth-child(1) {
  background: linear-gradient(140deg, rgba(255, 28, 60, 0.9), rgba(66, 10, 22, 0.95), rgba(6, 6, 8, 0.96));
}

.portfolio-card:nth-child(2) {
  background: linear-gradient(140deg, rgba(255, 112, 36, 0.9), rgba(60, 22, 7, 0.95), rgba(6, 6, 8, 0.96));
}

.portfolio-card:nth-child(3) {
  background: linear-gradient(140deg, rgba(255, 52, 52, 0.88), rgba(46, 13, 13, 0.95), rgba(6, 6, 8, 0.96));
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
  transition: transform 180ms ease;
}

.portfolio-overlay p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.portfolio-overlay h3 {
  margin-top: 0.36rem;
  font-size: 1.35rem;
}

.portfolio-overlay span {
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
}

.portfolio-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.38);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(-6px);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  grid-template-areas:
    'heading box'
    'preview box';
  column-gap: 3rem;
  row-gap: 1.5rem;
  align-items: start;
}

.workflow-grid > .section-head {
  grid-area: heading;
  align-self: start;
}

.workflow-box {
  grid-area: box;
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  align-self: stretch;
}

.workflow-step {
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 0.82rem 0.9rem;
  text-align: left;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.workflow-step span {
  margin-left: 0.45rem;
  color: rgba(255, 255, 255, 0.8);
}

.workflow-step:hover,
.workflow-step.active {
  transform: none;
  border-color: rgba(255, 62, 62, 0.45);
  background: rgba(255, 62, 62, 0.12);
}

.workflow-preview {
  grid-area: preview;
  padding: 1.25rem;
}

.preview-label {
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.workflow-preview h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.workflow-preview p:last-child {
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  margin-top: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-section .section-head {
  max-width: 70ch;
}

.team-section .section-head h1 {
  max-width: min(100%, 860px);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.team-section .section-head h2 {
  margin-top: 0.55rem;
  max-width: 24ch;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.team-section .section-head > p:last-child {
  margin-top: 0.75rem;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.62;
}

.team-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 350px));
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.8rem, 4vw, 3.1rem);
  max-width: 940px;
  margin-inline: auto;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 0.8rem;
  display: grid;
  align-content: stretch;
  gap: 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 91, 91, 0.44);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.33);
}

.team-grid:hover .team-card {
  opacity: 0.62;
}

.team-grid:hover .team-card:hover,
.team-grid:hover .team-card:focus-within {
  opacity: 1;
}

.team-photo-placeholder {
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    linear-gradient(140deg, rgba(255, 32, 68, 0.08), rgba(255, 126, 47, 0.08)),
    rgba(255, 255, 255, 0.02);
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  justify-self: stretch;
  align-self: start;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-content: space-between;
  justify-items: stretch;
  padding: 1rem;
}

.team-photo-placeholder::before {
  content: none;
}

.team-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 65, 90, 0.2), transparent 42%),
    radial-gradient(circle at 82% 80%, rgba(255, 156, 48, 0.16), transparent 42%);
  pointer-events: none;
  z-index: 0;
}

.team-photo-placeholder > * {
  position: relative;
  z-index: 1;
}

.team-member-photo {
  --photo-zoom: 1;
  --photo-y: 50%;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center var(--photo-y);
  transform: scale(var(--photo-zoom));
  transform-origin: center;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 0;
}

.team-member-photo[src]:not([src='']) {
  opacity: 1;
}

.team-member-photo-tight {
  --photo-zoom: 1.22;
  --photo-y: 26%;
}

.team-photo-placeholder:has(.team-member-photo[src]:not([src=''])) .team-placeholder-copy {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.team-photo-placeholder:has(.team-member-photo[src]:not([src='']))::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.06) 0%, rgba(5, 5, 8, 0.35) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 65, 90, 0.14), transparent 42%),
    radial-gradient(circle at 82% 80%, rgba(255, 156, 48, 0.12), transparent 42%);
}

.team-placeholder-copy {
  text-align: center;
  align-self: center;
}

.team-placeholder-copy p {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}

.team-placeholder-copy span {
  margin-top: 0.3rem;
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
}

.team-overlay {
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(10, 8, 14, 0.88), rgba(21, 12, 14, 0.72));
  padding: 0.72rem 0.74rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.team-role {
  margin: 0;
  min-height: 0;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.86);
  transition: color 180ms ease;
}

.team-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}

.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  display: inline-grid;
  place-items: center;
  transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease, color 170ms ease;
}

.team-social-link svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-social-link:hover {
  transform: translateY(-1px);
}

.team-card:hover .team-overlay,
.team-card:focus-within .team-overlay {
  border-color: rgba(255, 114, 114, 0.48);
  background: linear-gradient(160deg, rgba(24, 11, 15, 0.95), rgba(40, 16, 16, 0.78));
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.team-card:hover .team-role,
.team-card:focus-within .team-role {
  color: #fff;
}

.team-social-link.ig:hover {
  border-color: rgba(255, 92, 128, 0.72);
  background: rgba(255, 76, 108, 0.16);
  color: #fff;
}

.team-social-link.li:hover {
  border-color: rgba(76, 162, 255, 0.72);
  background: rgba(76, 162, 255, 0.15);
  color: #fff;
}

.price-card {
  padding: 1.25rem;
  transition: transform 170ms ease, border-color 170ms ease;
}

.price-card:hover {
  transform: none;
  border-color: rgba(255, 60, 60, 0.44);
}

.price-card.featured {
  border-color: rgba(255, 85, 85, 0.44);
  background: linear-gradient(165deg, rgba(255, 40, 40, 0.16), rgba(255, 255, 255, 0.015));
}

.price-card h3 {
  font-size: 1.18rem;
}

.price {
  margin-top: 0.45rem;
  font-family: 'Teko', sans-serif;
  font-size: 2.45rem;
  line-height: 0.9;
}

.price-card ul {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.35rem;
}

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

.price-card li::before {
  content: 'v';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8b54;
}

.price-card a {
  margin-top: 0.86rem;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font-size: 0.84rem;
  transition: border-color 150ms ease;
}

.price-card a:hover {
  border-color: rgba(255, 76, 76, 0.5);
}

.testimonial-shell {
  margin-top: 1rem;
  padding: 1.1rem;
}

#testimonialQuote {
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

#testimonialName {
  margin-top: 0.84rem;
  font-size: 1.05rem;
}

#testimonialRole {
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-dots {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.48rem;
}

.testimonial-dots button {
  width: 24px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: linear-gradient(120deg, var(--primary), var(--warm));
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.62rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.88rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  transition: max-height 220ms ease, opacity 220ms ease, padding 220ms ease;
}

.faq-item.open .faq-answer {
  max-height: 120px;
  opacity: 1;
  padding: 0 0.88rem 0.88rem;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-question span {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 160ms ease;
}

.quote-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.quote-builder {
  display: grid;
  gap: 2rem;
}

.quote-heading {
  max-width: 660px;
}

.quote-heading h2 {
  max-width: 13ch;
}

.quote-intro-copy {
  margin-top: 0.75rem;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.7;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: 2.5rem;
  align-items: start;
}

.quote-form,
.quote-summary {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid #222;
  box-shadow: none;
}

.quote-form {
  display: grid;
  gap: 0;
  background: #141414;
}

.quote-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.quote-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.quote-form select,
.quote-form input[type='number'] {
  width: 100%;
  min-height: 44px;
  border: 1px solid #222;
  border-radius: 12px;
  background: #141414;
  color: var(--text);
  font-size: 0.88rem;
  font-family: 'Manrope', sans-serif;
  padding: 0.65rem 0.78rem;
}

.quote-form select,
.contact-field select {
  color-scheme: dark;
}

.quote-form select option,
.contact-field select option,
.quote-form select optgroup,
.contact-field select optgroup {
  color: #101018;
  background-color: #ffffff;
}

.quote-form input[type='range'] {
  width: 100%;
  accent-color: #ff2e2e;
  margin-top: 0.1rem;
}

.range-value {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.quote-summary {
  background: #181818;
  align-self: start;
}

.summary-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.quote-summary h3 {
  margin-top: 0.15rem;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.quote-summary ul {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.15rem;
}

.quote-summary li {
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
}

.quote-summary li span {
  color: var(--muted);
}

.quote-summary .book-now-block {
  margin-top: 0.9rem;
  min-height: 52px;
  width: 100%;
  border: 1px solid #ff2d2d;
  background: #ff2d2d;
  box-shadow: 0 0 18px rgba(255, 45, 45, 0.28);
  font-size: 0.98rem;
}

.quote-summary .book-now-block:hover {
  box-shadow: 0 0 22px rgba(255, 45, 45, 0.24);
}

.cta-box {
  padding: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(145deg, rgba(255, 36, 36, 0.2), rgba(255, 126, 47, 0.08));
}

.cta-box h2 {
  font-size: clamp(1.3rem, 2.8vw, 2.05rem);
  max-width: 26ch;
}

.site-footer {
  margin-top: 2.8rem;
  border-top: 1px solid var(--line-soft);
}

.footer-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-row p {
  min-width: 0;
  max-width: 42rem;
  justify-self: start;
  font-family: 'Teko', sans-serif;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
}

.footer-row p span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer-row a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
}

.footer-email-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.48rem 0.84rem;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.footer-email-link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.footer-instagram-center {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 72, 72, 0.62);
  border-radius: 999px;
  padding: 0.5rem 0.88rem;
  background: linear-gradient(130deg, rgba(255, 30, 76, 0.4), rgba(255, 108, 40, 0.25));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 10px 24px rgba(255, 36, 64, 0.32);
  font-weight: 700;
  color: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.footer-instagram-center svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-instagram-center:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 36, 64, 0.4);
  border-color: rgba(255, 90, 90, 0.8);
}

.footer-instagram-center span {
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.footer-top-link {
  justify-self: end;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.contact-main {
  padding-bottom: 2.6rem;
  padding-top: clamp(0.7rem, 2vw, 1.3rem);
}

.contact-simple-intro {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  padding: 0.95rem 1rem;
}

.contact-simple-intro h1 {
  margin-top: 0.34rem;
  max-width: min(100%, 860px);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  font-family: 'Teko', sans-serif;
  letter-spacing: 0.02em;
}

.contact-simple-intro p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 0.9rem;
  align-items: start;
}

.contact-title {
  margin-top: 0.55rem;
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  line-height: 0.95;
  font-family: 'Teko', sans-serif;
  letter-spacing: 0.02em;
}

.contact-subtitle {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.64;
  max-width: 58ch;
}

.contact-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.contact-points li {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.52rem 0.62rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

.response-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  padding: 1rem;
}

.response-panel h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  line-height: 1.16;
}

.response-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.5rem;
}

.response-grid article {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.58rem 0.62rem;
}

.response-grid h3 {
  font-size: 0.84rem;
  color: #ff8b54;
}

.response-grid p {
  margin-top: 0.26rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
}

.contact-layout {
  max-width: min(860px, 96%);
  margin: 0 auto;
  display: grid;
  gap: 0.82rem;
  align-items: start;
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012));
  padding: 1rem;
}

.bot-guard-card {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.7rem 0.76rem;
  margin-bottom: 0.82rem;
}

.bot-guard-copy {
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
}

.bot-guard-status {
  margin-top: 0.48rem;
  display: block;
}

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

.contact-field {
  display: grid;
  gap: 0.38rem;
  font-size: 0.77rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Manrope', sans-serif;
  padding: 0.56rem 0.62rem;
}

.contact-field textarea {
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(255, 72, 72, 0.3);
  border-color: rgba(255, 72, 72, 0.55);
}

.contact-field.span-2 {
  grid-column: 1 / -1;
}

.hp-field-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hp-field {
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  margin-top: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.form-notice {
  margin-top: 0.78rem;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 0.52rem 0.62rem;
  font-size: 0.84rem;
  display: none;
}

.form-notice.success {
  display: block;
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(16, 185, 129, 0.12);
  color: #b7ffe3;
}

.form-notice.pending {
  display: block;
  border-color: rgba(59, 130, 246, 0.42);
  background: rgba(37, 99, 235, 0.14);
  color: #cde0ff;
}

.form-notice.warning {
  display: block;
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.14);
  color: #ffe7b3;
}
.form-notice.error {
  display: block;
  border-color: rgba(248, 113, 113, 0.48);
  background: rgba(239, 68, 68, 0.14);
  color: #ffd0d0;
}

.contact-form-card .btn:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-sidebar {
  display: grid;
  gap: 0.72rem;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014));
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
}

.info-card a {
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.46rem 0.56rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 160ms ease, transform 160ms ease;
}

.info-card a:hover {
  border-color: rgba(255, 80, 80, 0.44);
  transform: translateY(-1px);
}

.summary-list {
  display: grid;
  gap: 0.42rem;
}

.summary-list li {
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.5rem 0.56rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
}

.summary-list li span {
  color: var(--muted);
}

.summary-list li strong {
  color: #fff;
}

.next-steps ol {
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  line-height: 1.5;
}

.next-steps li::marker {
  color: #ff8b54;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(24px, -18px) scale(1.08);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .workflow-grid,
  .quote-grid,
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quote-heading {
    max-width: 100%;
  }

  .workflow-grid {
    grid-template-areas:
      'heading'
      'box'
      'preview';
    gap: 1.5rem;
  }

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

  .portfolio-grid,
  .pricing-grid,
  .stat-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 4%;
    right: 4%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 8, 11, 0.96);
    padding: 0.85rem;
    display: grid;
    gap: 0.55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

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

  .hero-copy h1 {
    max-width: min(92vw, 640px);
    font-size: clamp(2.35rem, 9vw, 3.45rem);
    line-height: 1.12;
  }

  .reels-page-title,
  .team-section .section-head h1,
  .contact-simple-intro h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 3.15rem);
    line-height: 1.12;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .service-grid,
  .portfolio-grid,
  .pricing-grid,
  .stat-grid,
  .contact-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid:hover .team-card {
    opacity: 1;
  }

  .team-socials {
    justify-content: flex-start;
  }

  .contact-title {
    font-size: clamp(2rem, 13vw, 3.3rem);
  }

  .contact-field.span-2 {
    grid-column: auto;
  }

  .form-actions {
    flex-direction: column;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 0.95rem 0;
    gap: 0.7rem;
  }

  .footer-row p {
    justify-self: center;
  }

  .footer-top-link {
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .top-strip {
    overflow: visible;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .top-strip-shell {
    min-height: 68px;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    padding: 0.5rem 0;
    gap: 0.75rem;
  }

  .icon-rail {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: min(420px, calc(100vw - 1.5rem));
    margin: 0 auto;
    border: 1px solid #222;
    border-radius: 18px;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
    padding: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .icon-rail-row {
    display: none;
  }

  .icon-rail-mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

  .strip-actions {
    min-height: 40px;
    gap: 0.6rem;
  }

  .strip-actions .strip-btn-dark {
    display: none;
  }

  .strip-actions .strip-btn-hot {
    min-height: 40px;
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
  }

  .top-strip-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .top-strip.menu-open .icon-rail {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .top-strip.menu-open .top-strip-toggle {
    border-color: rgba(255, 45, 45, 0.28);
    background: rgba(255, 45, 45, 0.08);
  }
}

@media (max-width: 640px) {
  .home-page .section-shell {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .quote-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .quote-builder {
    gap: 1.5rem;
  }

  .quote-fields {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .quote-form,
  .quote-summary {
    padding: 1rem;
  }

  .top-strip-shell {
    min-height: 62px;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.5rem;
    padding: 0.42rem 0;
  }

  .top-strip-logo,
  .brand-logo {
    height: 44px;
    max-width: min(190px, 52vw);
  }

  .icon-rail {
    left: 4%;
    right: 4%;
    width: auto;
  }

  .icon-rail-mobile-links {
    grid-template-columns: 1fr;
  }

  .strip-actions {
    display: flex;
    gap: 0.5rem;
  }

  .strip-actions .strip-btn-hot {
    min-height: 38px;
    padding: 0.5rem 0.82rem;
    font-size: 0.84rem;
  }

  .top-strip-toggle {
    width: 38px;
    height: 38px;
  }

  .top-strip-toggle span {
    width: 14px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-title-wrap {
    width: min(90vw, 520px);
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.4vw, 2.95rem);
    line-height: 1.15;
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .reels-strip {
    grid-auto-columns: minmax(220px, 86vw);
  }

  .reels-strip-landscape {
    grid-auto-columns: minmax(280px, 92vw);
  }

  .reels-toolbar {
    gap: 0.45rem;
  }

  .reels-nav-btn {
    min-width: 64px;
    min-height: 34px;
    font-size: 0.78rem;
    padding: 0.35rem 0.58rem;
  }

  .reels-counter {
    font-size: 0.78rem;
  }

  .quote-summary h3 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
}

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

  .ambient-layer::before,
  .ambient-layer::after {
    animation: none;
  }

  .reveal,
  .reveal.visible,
  .btn,
  .strip-btn,
  .book-now-block,
  .hero-reel-option {
    transition: none;
  }
}

