﻿:root {
  --bg: #fff9f8;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #171125;
  --muted: #6e647d;
  --muted-strong: #574d67;
  --border: rgba(109, 72, 152, 0.14);
  --accent: #ff5f87;
  --accent-deep: #9f4dff;
  --accent-warm: #ff8a5b;
  --shadow: 0 24px 80px rgba(52, 24, 86, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1560px;
  --gutter: clamp(1.25rem, 2vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 95, 135, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(159, 77, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #fff6f5 0%, #fffdfd 22%, #fff8fb 100%);
  line-height: 1.6;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 82%);
  opacity: 0.35;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(255, 95, 135, 0.18);
}

.form-honeypot {
  display: none;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.8rem 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 249, 248, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.nav-shell,
.footer-shell,
.hero-grid,
.section-grid,
.why-layout,
.process-layout,
.contact-layout,
.proof-grid {
  display: grid;
  gap: 1.5rem;
}

.nav-shell {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: auto;
  max-width: 46vw;
  min-height: 3.35rem;
  padding: 0.42rem 0.9rem 0.42rem 0.52rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(216, 177, 196, 0.42);
  box-shadow: 0 12px 32px rgba(74, 45, 84, 0.1);
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(26, 14, 32, 0.14));
}

.brand-copy {
  display: grid;
  gap: 0.03rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-copy strong {
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand-copy span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 26px rgba(159, 77, 255, 0.22));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Syne", sans-serif;
  font-size: 1.02rem;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 1.6vw, 2rem);
  color: var(--muted);
  font-weight: 600;
}

.site-nav a,
.footer-links a,
.nav-social {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
}

.nav-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-text-cta {
  white-space: nowrap;
}

.nav-social {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .nav-social:hover,
  .site-nav a:hover,
  .footer-links a:hover {
    color: var(--accent-deep);
    transform: translateY(-1px);
  }
}

.agreement-main {
  padding-bottom: 5rem;
}

.agreement-hero {
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2rem, 5vw, 4rem);
}

.agreement-hero-inner {
  max-width: 920px;
}

.agreement-hero h1 {
  margin: 0.15rem 0 1rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
}

.agreement-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.agreement-hero-actions {
  margin-top: 1.4rem;
}

.agreement-language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.agreement-download-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(44, 22, 55, 0.08);
}

.agreement-download-card h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
}

.agreement-download-card p {
  margin: 0;
  color: var(--muted-strong);
}

.agreement-document {
  max-width: 940px;
  margin-bottom: 1.25rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.agreement-document h2 {
  margin: 2rem 0 0.65rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.1;
}

.agreement-document h2:first-of-type {
  margin-top: 0;
}

.agreement-document p {
  margin: 0;
  color: var(--muted-strong);
}

.agreement-meta {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 248, 0.72);
}

.agreement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

@media print {
  .site-header,
  .site-footer,
  .agreement-actions {
    display: none;
  }

  body {
    background: #fff;
  }

  body::before {
    display: none;
  }

  .agreement-main,
  .agreement-hero {
    padding: 0;
  }

  .agreement-document {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .agreement-language-grid {
    display: none;
  }
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 20px 40px rgba(159, 77, 255, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 44px rgba(159, 77, 255, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(109, 72, 152, 0.16);
}

.button-secondary:hover {
  background: #fff;
  box-shadow: 0 16px 30px rgba(23, 17, 37, 0.08);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-media,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.12) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 11, 32, 0.82) 0%, rgba(17, 11, 32, 0.46) 40%, rgba(17, 11, 32, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 11, 32, 0.18) 0%, rgba(17, 11, 32, 0.6) 100%);
}

.hero-glow {
  pointer-events: none;
}

.hero-glow-one {
  background: radial-gradient(circle at 18% 72%, rgba(255, 95, 135, 0.28), transparent 24%);
}

.hero-glow-two {
  background: radial-gradient(circle at 72% 18%, rgba(159, 77, 255, 0.22), transparent 18%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4rem;
  color: #fff;
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.7fr);
  align-items: center;
}

.hero-copy {
  max-width: 56rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.pricing-card h3,
.service-card h3,
.event-pill h3,
.process-step h3,
.why-points h3,
.cta-banner h2,
.contact-copy h2 {
  font-family: "Syne", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 6rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-kicker {
  max-width: 34rem;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-text {
  max-width: 36rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-trust,
.hero-actions,
.hero-badge-row,
.footer-links,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-trust {
  margin-top: 1.25rem;
}

.hero-trust span,
.hero-badge-row span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.hero-panel,
.service-card,
.pricing-card,
.testimonial,
.contact-form,
.cta-banner,
.contact-highlights div {
  backdrop-filter: blur(18px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(34, 18, 53, 0.82), rgba(26, 14, 44, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(18, 10, 31, 0.28);
}

.panel-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.service-tier,
.pricing-name {
  margin: 0;
  color: var(--accent-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hero-list,
.service-card ul,
.pricing-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.service-card li,
.pricing-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.7rem;
}

.hero-list li {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.hero-list li::before,
.service-card li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.hero-panel-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-highlight {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-highlight strong,
.contact-highlights strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-highlight strong {
  color: #fff;
}

.hero-highlight span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.proof-strip {
  position: relative;
  margin-top: -2.2rem;
  z-index: 2;
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 1.6rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 25px 60px rgba(40, 22, 70, 0.08);
  backdrop-filter: blur(16px);
}

.proof-number {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.proof-label {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section-services,
.section-gallery,
.section-pricing,
.section-contact {
  overflow: hidden;
}

.section-services {
  overflow: visible;
}

.section-services::before,
.section-gallery::before,
.section-contact::before {
  content: "";
  position: absolute;
  inset: auto auto 8% -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 135, 0.12), transparent 65%);
  pointer-events: none;
}

.section-pricing::before {
  content: "";
  position: absolute;
  inset: 10% -6rem auto auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 77, 255, 0.14), transparent 65%);
  pointer-events: none;
}

.section-intro {
  max-width: 40rem;
}

.section-intro.narrow {
  max-width: 32rem;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.section-intro p:last-child {
  margin-top: 1rem;
  color: var(--muted);
}

.section-services .section-grid,
.process-layout,
.contact-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.services-layout,
.process-steps,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

.package-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: -0.35rem 0 2rem;
}

.package-filter span {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(109, 72, 152, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.package-filter .is-active {
  background: linear-gradient(135deg, rgba(255, 95, 135, 0.14), rgba(159, 77, 255, 0.14));
  color: var(--text);
  border-color: rgba(255, 95, 135, 0.18);
}

.services-layout {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.signature-service {
  align-self: stretch;
}

.service-card-featured {
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  height: 100%;
  align-items: stretch;
}

.service-card-featured .package-visual {
  min-height: 100%;
  margin-bottom: 0;
}

.signature-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.feature-cloud span {
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 95, 135, 0.1), rgba(159, 77, 255, 0.1));
  border: 1px solid rgba(109, 72, 152, 0.12);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.rate-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 1rem;
}

.rate-list div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(109, 72, 152, 0.12);
}

.rate-list span,
.rate-list strong {
  display: block;
}

.rate-list span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.rate-list strong {
  margin-top: 0.2rem;
  font-family: "Syne", sans-serif;
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1;
}

.section-dj {
  overflow: clip;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 95, 135, 0.14), transparent 22%),
    radial-gradient(circle at 82% 42%, rgba(255, 138, 91, 0.13), transparent 20%),
    linear-gradient(135deg, #160d24 0%, #22112e 48%, #101322 100%);
  color: #fff;
}

.dj-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 2rem;
  align-items: start;
}

.section-dj .section-intro p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.dj-panel-shell {
  display: grid;
  gap: 1rem;
}

.dj-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-auto-rows: minmax(9rem, 12rem);
  gap: 0.9rem;
}

.dj-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.dj-media-grid .dj-media-main {
  grid-row: span 2;
  object-position: center;
}

.dj-panel {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.dj-panel h3 {
  margin: 0 0 0.85rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
}

.dj-panel .feature-cloud span {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

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

.dj-list li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.dj-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

.bundle-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 95, 135, 0.18), rgba(159, 77, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.bundle-callout p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.services-layout-premium,
.pricing-grid-refined {
  gap: 1.5rem;
}

.service-card,
.pricing-card,
.testimonial {
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.78);
}

.service-card,
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.45rem 1.55rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(109, 72, 152, 0.08);
  box-shadow: 0 22px 50px rgba(36, 19, 60, 0.08);
}

.service-card-featured {
  display: grid;
  grid-template-columns: minmax(14rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  height: auto;
  min-height: 0;
  align-items: stretch;
}

.service-card-featured .package-visual {
  min-height: clamp(15rem, 28vw, 24rem);
  height: auto;
  margin-bottom: 0;
}

.package-visual {
  display: grid;
  place-items: center;
  min-height: 11rem;
  margin-bottom: 1.15rem;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(109, 72, 152, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 251, 0.95), rgba(255, 246, 250, 0.96));
}

.package-visual-classic {
  background:
    linear-gradient(180deg, rgba(255, 224, 209, 0.9), rgba(255, 248, 251, 0.96) 52%, rgba(245, 234, 239, 0.98));
}

.package-visual-luxe {
  background:
    linear-gradient(180deg, rgba(255, 196, 151, 0.92), rgba(253, 228, 205, 0.96) 38%, rgba(240, 238, 245, 0.98));
}

.package-visual-activation {
  background:
    linear-gradient(180deg, rgba(235, 226, 255, 0.95), rgba(249, 244, 255, 0.98) 48%, rgba(243, 239, 248, 0.98));
}

.package-visual-real {
  background:
    linear-gradient(180deg, rgba(255, 212, 181, 0.72), rgba(247, 228, 214, 0.8) 34%, rgba(236, 241, 246, 0.92) 66%, rgba(223, 230, 226, 0.96));
}

.package-scene {
  position: relative;
  width: 100%;
  min-height: 11rem;
  display: grid;
  place-items: end center;
  padding-bottom: 0.9rem;
}

.package-scene::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 26%;
  background:
    linear-gradient(180deg, rgba(171, 179, 168, 0.18), rgba(96, 117, 95, 0.2)),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0));
}

.booth-umbrella {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  width: 5.5rem;
  height: 2.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(242, 235, 232, 0.94));
  border-radius: 999px 999px 0 0;
  border: 1px solid rgba(45, 34, 56, 0.08);
  transform: translateX(-50%);
  box-shadow: 0 10px 18px rgba(31, 16, 53, 0.06);
}

.booth-umbrella::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0.12rem;
  height: 2.1rem;
  background: rgba(88, 74, 98, 0.42);
  transform: translateX(-50%);
}

.booth-umbrella-small {
  width: 4.5rem;
  height: 2.3rem;
 }

.stanchion {
  position: absolute;
  bottom: 0.55rem;
  width: 0.45rem;
  height: 2.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #dcc07a, #a88338);
}

.stanchion::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 1.1rem;
  height: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9c184, #9d7a36);
  transform: translateX(-50%);
}

.stanchion-left {
  left: 1.2rem;
}

.stanchion-right {
  right: 1.2rem;
}

.booth-figure {
  position: relative;
  z-index: 1;
  width: 5.3rem;
  height: 7.6rem;
  border-radius: 1.7rem;
  background: linear-gradient(180deg, #ffffff, #f6efff);
  border: 1px solid rgba(159, 77, 255, 0.14);
  box-shadow: 0 20px 36px rgba(23, 17, 37, 0.1);
}

.booth-figure::before {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #161127;
  transform: translateX(-50%);
}

.booth-figure::after {
  content: "";
  position: absolute;
  bottom: -2.9rem;
  left: 50%;
  width: 0.85rem;
  height: 2.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8f1ff, #d8cde7);
  transform: translateX(-50%);
  box-shadow: 0 3.2rem 0 0 rgba(240, 231, 248, 0.9);
}

.booth-figure .booth-screen,
.booth-figure .booth-screen-alt {
  display: none;
}

.booth-figure-classic {
  width: 4.8rem;
}

.booth-figure-luxe {
  width: 5.8rem;
  box-shadow: 0 24px 46px rgba(159, 77, 255, 0.14);
}

.booth-figure-luxe::before {
  width: 1.15rem;
  height: 1.15rem;
}

.booth-figure-activation {
  width: 5rem;
  border-radius: 1.2rem;
}

.booth-figure-activation::before {
  background: linear-gradient(180deg, #9f4dff, #ff5f87);
  border-radius: 0.35rem;
  width: 1.1rem;
  height: 1.4rem;
}

.package-badge {
  align-self: center;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 95, 135, 0.14), rgba(159, 77, 255, 0.16));
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-rate {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.25rem 0 0.2rem;
}

.package-rate strong {
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
}

.package-rate span {
  color: var(--muted);
  font-weight: 700;
  text-transform: lowercase;
}

.package-addon {
  margin: 0 0 1rem !important;
  color: var(--muted-strong) !important;
  font-style: italic;
  font-size: 0.94rem;
}

.service-card h3,
.pricing-card h3,
.event-pill h3,
.process-step h3,
.why-points h3,
.cta-banner h2,
.contact-copy h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.55rem;
}

.pricing-card h3 span {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 700;
}

.service-card p,
.pricing-card p,
.testimonial p,
.event-pill p,
.process-step p,
.why-points p {
  margin: 0;
  color: var(--muted);
}

.service-fit {
  margin-top: 0.8rem !important;
  color: var(--muted-strong) !important;
  font-weight: 700;
}

.package-button {
  width: 100%;
  margin-top: auto;
}

.service-card,
.pricing-card,
.testimonial,
.gallery-item img,
.event-pill,
.process-step,
.floating-shot,
.contact-highlights div {
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .pricing-card:hover,
  .testimonial:hover,
  .gallery-item:hover img,
  .event-pill:hover,
  .process-step:hover {
    transform: translateY(-4px);
  }
}

.why-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.why-visual {
  position: relative;
  min-height: 38rem;
}

.floating-shot {
  position: absolute;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(31, 13, 53, 0.12);
  background-size: cover;
  background-position: center;
}

.shot-one {
  inset: 0 22% 18% 0;
  background-image:
    linear-gradient(180deg, rgba(18, 10, 31, 0.06), rgba(18, 10, 31, 0.32)),
    url("assets/drive-media/dj-service-04.webp");
}

.shot-two {
  inset: 12% 0 42% 50%;
  background-image:
    linear-gradient(180deg, rgba(18, 10, 31, 0.08), rgba(18, 10, 31, 0.28)),
    url("assets/drive-media/dj-service-02.webp");
}

.shot-three {
  inset: 54% 6% 0 36%;
  background-image:
    linear-gradient(180deg, rgba(18, 10, 31, 0.08), rgba(18, 10, 31, 0.32)),
    url("assets/drive-media/dj-service-03.webp");
}

.why-points {
  display: grid;
  gap: 1.6rem;
}

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

.event-pill,
.process-step {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 28px;
  min-height: 16rem;
  box-shadow: 0 24px 60px rgba(27, 12, 49, 0.1);
}

.gallery-item.large {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 5;
}

.gallery-item:not(.large):not(.wide) {
  grid-column: span 5;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

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

.process-step span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.testimonial-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.pricing-grid-refined {
  margin-top: 2.25rem;
}

.pricing-grid-digital {
  align-items: stretch;
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-family: "Syne", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(159, 77, 255, 0.12);
}

.testimonial footer {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 800;
}

.section-pricing {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 138, 91, 0.14), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(159, 77, 255, 0.14), transparent 24%);
}

.pricing-shell {
  position: relative;
  padding: 3rem;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-card {
  position: relative;
  min-height: 100%;
  justify-content: flex-start;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(255, 95, 135, 0.08), rgba(159, 77, 255, 0.1)), #fff;
  transform: translateY(-0.25rem);
}

.featured-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-note {
  margin: 1.6rem auto 0;
  max-width: 44rem;
  color: var(--muted-strong);
  font-weight: 700;
  text-align: center;
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 2.2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 95, 135, 0.1), rgba(159, 77, 255, 0.08)), rgba(255, 255, 255, 0.82);
}

.section-contact {
  padding-top: 2rem;
}

.contact-copy {
  max-width: 35rem;
}

.contact-highlights {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0;
}

.contact-highlights div {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.contact-highlights span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  scroll-margin-top: 6.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(109, 72, 152, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 95, 135, 0.24);
  border-color: rgba(255, 95, 135, 0.42);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cf-turnstile {
  min-height: 65px;
}

.preview-no-turnstile .cf-turnstile {
  display: none !important;
  min-height: 0;
}

.site-footer {
  padding: 2.5rem 0 6rem;
}

.footer-shell {
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-top: 2rem;
  border-top: 1px solid rgba(109, 72, 152, 0.14);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-shell p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
}

.footer-links {
  align-items: center;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  z-index: 45;
  display: none;
  gap: 0.75rem;
  width: min(calc(100% - 1.5rem), 26rem);
  padding: 0.65rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(18, 10, 31, 0.16);
  transform: translateX(-50%);
}

.mobile-cta .button {
  flex: 1;
  min-height: 3.15rem;
  padding: 0.75rem 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

@media (min-width: 1440px) {
  .hero-content {
    padding: 7rem 0 4.75rem;
  }

  .section {
    padding: 8rem 0;
  }

  .nav-shell,
  .footer-shell,
  .hero-grid,
  .section-grid,
  .why-layout,
  .process-layout,
  .contact-layout,
  .proof-grid {
    gap: 2rem;
  }

  .services-layout,
  .process-steps,
  .pricing-grid,
  .testimonial-grid,
  .event-grid,
  .gallery-grid {
    gap: 1.5rem;
  }
}

.seo-hero {
  position: relative;
  overflow: clip;
  padding: 10rem 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 95, 135, 0.16), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(159, 77, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #fff7f7 0%, #fff9fc 100%);
}

.seo-hero-grid,
.seo-details,
.seo-points,
.seo-faq-grid,
.seo-cta-bar {
  display: grid;
  gap: 1.5rem;
}

.seo-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.seo-hero-copy h1 {
  margin: 0 0 1.25rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.seo-hero-copy p {
  max-width: 42rem;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.seo-card,
.seo-point,
.seo-faq,
.seo-cta-bar {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.seo-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.seo-card h3,
.seo-point h3,
.seo-faq h3 {
  margin: 0 0 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
}

.seo-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.seo-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted-strong);
}

.seo-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

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

.seo-point,
.seo-faq {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.seo-point p,
.seo-faq p {
  margin: 0;
  color: var(--muted-strong);
}

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

.seo-cta-bar {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.seo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.seo-meta span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(109, 72, 152, 0.14);
  color: var(--muted-strong);
  font-weight: 700;
}

@media (max-width: 980px) {
  .seo-hero-grid,
  .seo-details,
  .seo-faq-grid,
  .seo-cta-bar {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1600px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  }

  .hero-kicker {
    max-width: 38rem;
  }

  .hero-text {
    max-width: 42rem;
  }

  .hero-panel {
    max-width: 30rem;
    justify-self: end;
  }

  .proof-grid {
    padding: 1.85rem 2.4rem;
  }

  .section-intro {
    max-width: 46rem;
  }

  .section-intro.narrow {
    max-width: 38rem;
  }

  .section-services .section-grid,
  .process-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .why-visual {
    min-height: 42rem;
  }

  .gallery-item {
    min-height: 18rem;
  }

  .pricing-shell {
    padding: 3.5rem;
  }

  .contact-copy {
    max-width: 40rem;
  }
}

@media (min-width: 1920px) {
  .hero-content {
    padding: 7.5rem 0 5rem;
  }

  .section {
    padding: 8.5rem 0;
  }

  .hero-kicker {
    max-width: 40rem;
  }

  .hero-text {
    max-width: 44rem;
  }

  .why-visual {
    min-height: 44rem;
  }

  .gallery-item {
    min-height: 19rem;
  }
}

@media (max-width: 1100px) {
  .services-layout,
  .pricing-grid,
  .testimonial-grid,
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-featured,
  .dj-layout {
    grid-template-columns: 1fr;
  }

  .service-card-featured .package-visual {
    min-height: 16rem;
  }

  .gallery-item.large {
    grid-column: span 12;
  }

  .gallery-item.wide,
  .gallery-item:not(.large):not(.wide) {
    grid-column: span 6;
  }
}

@media (max-width: 1080px) {
  .site-nav,
  .nav-actions {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr;
  }

  .brand {
    width: auto;
    max-width: 62vw;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 900px) {
  .nav-shell,
  .section-services .section-grid,
  .why-layout,
  .process-layout,
  .contact-layout,
  .hero-grid,
  .proof-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .brand {
    width: auto;
    max-width: 58vw;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    display: block;
    padding: 4.5rem 0 2.5rem;
  }

  .hero-panel {
    max-width: 32rem;
  }

  .hero-panel-highlights {
    grid-template-columns: 1fr;
  }

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

  .why-visual {
    min-height: 26rem;
  }

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

  .cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: clamp(1rem, 5vw, 1.25rem);
  }

  html {
    scroll-padding-top: 4.75rem;
  }

  .agreement-language-grid {
    grid-template-columns: 1fr;
  }

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

  .agreement-hero-actions .button,
  .agreement-actions .button {
    width: 100%;
  }

  .section {
    padding: 4.25rem 0;
  }

  .seo-hero {
    padding: 4.5rem 0 3rem;
    overflow: hidden;
  }

  .seo-hero-copy h1 {
    max-width: 18rem;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .seo-hero-copy p {
    max-width: 19rem;
    font-size: 1rem;
  }

  .thank-you-page .seo-hero-copy,
  .thank-you-page .seo-card {
    max-width: 21rem;
  }

  .seo-meta span {
    padding: 0.62rem 0.82rem;
  }

  .seo-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-card {
    border-radius: 22px;
    padding: 1.1rem;
  }

  .hero-content {
    padding: 3.2rem 0 2rem;
  }

  .hero-media img {
    object-position: 52% center;
  }

  .hero-text,
  .hero-note,
  .hero-panel,
  .proof-strip,
  .section-why,
  .section-process,
  .section-testimonials,
  .section-cta,
  .contact-highlights,
  .contact-details,
  .section-gallery .section-intro p {
    display: none;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-trust {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .hero-trust span:nth-child(n + 2) {
    display: none;
  }

  .section-intro h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .section-intro p:last-child {
    margin-top: 0.65rem;
  }

  .section-contact {
    padding-top: 1rem;
  }

  .contact-layout {
    gap: 1rem;
  }

  .contact-form {
    order: -1;
    padding: 1.1rem;
    border-radius: 22px;
    scroll-margin-top: 4.75rem;
  }

  .contact-copy {
    display: grid;
    gap: 0.55rem;
  }

  .contact-copy p:not(.eyebrow) {
    display: none;
  }

  .contact-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .contact-form label {
    gap: 0.35rem;
  }

  .contact-form textarea {
    min-height: 7rem;
  }

  .pricing-shell {
    padding: 1.5rem;
    border-radius: 28px;
  }

  .services-layout,
  .pricing-grid,
  .testimonial-grid,
  .event-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .rate-list,
  .dj-list {
    grid-template-columns: 1fr;
  }

  .dj-media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(12rem, 16rem);
  }

  .dj-media-grid .dj-media-main {
    grid-row: span 1;
  }

  .bundle-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .service-card-featured {
    padding: 1.15rem;
  }

  .service-card-featured .package-visual {
    display: none;
  }

  .feature-cloud span:nth-child(n + 6) {
    display: none;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item:not(.large):not(.wide) {
    grid-column: span 12;
    min-height: 14rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .proof-strip {
    margin-top: -1rem;
  }

  .proof-grid {
    padding: 1.25rem;
  }

  .why-visual {
    min-height: 22rem;
  }

  .floating-shot {
    border-radius: 20px;
  }

  .mobile-cta {
    display: flex;
    width: min(calc(100% - 1.25rem), 24rem);
    gap: 0.45rem;
  }

  .mobile-cta .button {
    min-height: 3rem;
    padding: 0.68rem 0.6rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .contact-quick-actions,
  .cta-actions,
  .agreement-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .contact-quick-actions .button,
  .cta-actions .button,
  .agreement-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .feature-cloud span {
    max-width: 100%;
  }

  .pricing-card h3 {
    padding-right: 5rem;
  }
}

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

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

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

.agreement-form-shell {
  max-width: 58rem;
}

.agreement-print-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agreement-print-header img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.agreement-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contract-section {
  border-top: 1px solid rgba(31, 22, 45, 0.12);
  padding: 1.35rem 0;
}

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

.fillable-contract label {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 0.45rem;
}

.fillable-contract input,
.fillable-contract select,
.fillable-contract textarea {
  background: #fff;
  border: 1px solid rgba(31, 22, 45, 0.16);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
}

.signature-disclaimer {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .agreement-field-grid {
    grid-template-columns: 1fr;
  }

  .agreement-print-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  .no-print,
  .site-header,
  .mobile-cta,
  .tidio-chat,
  iframe {
    display: none !important;
  }

  body,
  .agreement-page,
  .agreement-document {
    background: #fff !important;
    box-shadow: none !important;
  }

  .agreement-main {
    padding: 0 !important;
  }

  .agreement-document {
    border: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 0.25in !important;
  }

  .fillable-contract input,
  .fillable-contract select,
  .fillable-contract textarea {
    border-color: #999 !important;
  }
}
