:root {
  color-scheme: light;
  --ink: #16131f;
  --muted: #6e6879;
  --line: #e3ddeb;
  --surface: #ffffff;
  --soft: #f8f4fb;
  --accent: #d21f73;
  --accent-dark: #3a1a63;
  --gold: #f2b441;
  --rose: #00a6a6;
  --shadow: 0 18px 50px rgba(22, 19, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 228, 223, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  width: 92px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: calc(86vh - 78px);
  padding: clamp(34px, 6vw, 66px) clamp(20px, 5vw, 72px) 30px;
  background:
    linear-gradient(115deg, rgba(210, 31, 115, 0.09), transparent 38%),
    linear-gradient(250deg, rgba(0, 166, 166, 0.12), transparent 40%),
    #fffcff;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5.3vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy,
.section-heading p,
.split-copy,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent-dark);
}

.button.primary:hover {
  background: #291246;
}

.button.secondary {
  color: var(--accent-dark);
  background: #fff;
  border-color: var(--line);
}

.button.call {
  color: var(--accent-dark);
  background: #fff;
  border-color: rgba(58, 26, 99, 0.18);
  box-shadow: 0 10px 28px rgba(58, 26, 99, 0.08);
}

.button.call:hover {
  border-color: rgba(58, 26, 99, 0.36);
  background: #fbf7ff;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: min(100%, 560px);
  aspect-ratio: 4 / 3;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  padding: 28px clamp(20px, 5vw, 72px);
  background: #fff;
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.trust-strip span {
  color: var(--muted);
}

.section,
.included-section,
.media-section,
.pricing-section,
.coverage-section,
.faq-section,
.split-section,
.contact-section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-card,
figure,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(24, 32, 29, 0.06);
}

.service-card {
  padding: 26px;
}

.service-card p,
figure {
  color: var(--muted);
}

.included-section {
  background:
    linear-gradient(120deg, rgba(58, 26, 99, 0.08), transparent 36%),
    #fff;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.included-grid article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(24, 32, 29, 0.06);
}

.included-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 8px;
  font-weight: 900;
}

.included-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-section {
  background: #171020;
  color: #fff;
}

.media-section .section-heading p,
.media-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.media-layout {
  display: grid;
  max-width: 1120px;
  gap: 18px;
  align-items: start;
  justify-content: center;
  margin-inline: auto;
}

.video-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.featured-video {
  border-color: rgba(242, 180, 65, 0.48);
  background: rgba(242, 180, 65, 0.08);
}

.video-card video {
  width: 100%;
  height: clamp(250px, 30vw, 360px);
  object-fit: cover;
}

.video-card video {
  display: block;
  background: #000;
}

.video-card div {
  padding: 18px;
}

.video-card h3 {
  color: #fff;
}

.video-card p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.video-note {
  font-size: 0.95rem;
  font-weight: 800;
}

.video-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 9px 14px;
  color: #fff;
  font-weight: 800;
}

.video-link:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

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

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 6vw, 88px);
  background: var(--accent-dark);
  color: #fff;
}

.split-section .eyebrow,
.split-copy {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: #fff;
}

.pricing-copy {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.pricing-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  background: var(--soft);
}

.coverage-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(24, 32, 29, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

figure {
  margin: 0;
  padding: 28px;
}

figcaption {
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
}

.contact-list strong {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
}

.contact-list a {
  color: var(--accent-dark);
  font-weight: 800;
}

.social-block {
  margin-top: 28px;
}

.social-title {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.social-link {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(24, 32, 29, 0.05);
}

.social-link:hover {
  border-color: rgba(58, 26, 99, 0.28);
  color: var(--accent-dark);
  background: #fbf7ff;
}

.social-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-icon path {
  fill: var(--accent-dark);
  stroke: none;
}

.social-link span {
  display: grid;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.social-link span strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  resize: vertical;
}

textarea {
  min-height: 150px;
}

::placeholder {
  color: #a49bad;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(210, 31, 115, 0.14);
}

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

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  min-width: min(100%, 260px);
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 82px;
  height: 48px;
  object-fit: contain;
}

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

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

.footer-social a {
  color: var(--accent-dark);
  font-weight: 800;
}

.legal-nav {
  justify-content: flex-end;
}

.legal-page {
  background: #fff;
}

.legal-hero {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 72px);
  background:
    linear-gradient(115deg, rgba(210, 31, 115, 0.09), transparent 38%),
    linear-gradient(250deg, rgba(0, 166, 166, 0.12), transparent 40%),
    #fffcff;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.legal-content article {
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 12px 34px rgba(24, 32, 29, 0.06);
}

.legal-content h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 800;
}

@media (max-width: 880px) {
  .site-header {
    gap: 14px;
  }

  .brand-logo {
    width: 78px;
    height: 46px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .media-layout,
  .pricing-section,
  .coverage-section,
  .contact-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 28px;
    gap: 28px;
  }

  .hero-media img {
    width: 100%;
    margin-right: auto;
  }

  .video-stack,
  .secondary-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip,
  .service-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.55;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 66px;
    height: 38px;
  }

  .brand span:last-child {
    max-width: 132px;
    font-size: 0.95rem;
    line-height: 1.1;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    right: 14px;
    left: 14px;
  }

  .hero,
  .section,
  .included-section,
  .media-section,
  .pricing-section,
  .coverage-section,
  .faq-section,
  .split-section,
  .contact-section {
    padding: 50px 16px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 24px;
    gap: 22px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.1rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .hero-copy,
  .section-heading p,
  .split-copy,
  .contact-copy p,
  .pricing-copy p,
  .coverage-copy p,
  .legal-hero p {
    font-size: 1rem;
  }

  .hero-copy {
    margin-bottom: 20px;
  }

  .hero-actions,
  .contact-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .trust-strip div {
    padding: 18px 16px;
  }

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

  .service-grid,
  .included-grid,
  .video-stack,
  .faq-list {
    gap: 14px;
  }

  .service-card,
  .included-grid article,
  figure,
  .pricing-copy,
  .legal-content article {
    padding: 20px;
  }

  .included-grid span {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }

  .media-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .secondary-videos {
    margin-top: 0;
  }

  .video-stack,
  .secondary-videos {
    grid-template-columns: 1fr;
  }

  .video-card {
    width: min(100%, 330px);
    margin-inline: auto;
  }

  .video-card video {
    height: min(56vh, 340px);
  }

  .video-card div {
    padding: 16px;
  }

  .video-card p {
    margin-bottom: 14px;
  }

  .split-section,
  .pricing-section,
  .coverage-section,
  .contact-section {
    gap: 22px;
  }

  .faq-list summary {
    padding: 16px;
  }

  .faq-list p {
    padding: 0 16px 16px;
  }

  .contact-list {
    gap: 12px;
    margin-top: 22px;
  }

  .social-block,
  .contact-actions {
    margin-top: 22px;
  }

  .social-link {
    padding: 11px;
  }

  .contact-form {
    gap: 13px;
    padding: 20px;
  }

  label {
    gap: 7px;
    font-size: 0.92rem;
  }

  input,
  select,
  textarea {
    min-height: 46px;
    padding: 12px;
  }

  textarea {
    min-height: 130px;
  }

  .hero-actions .button,
  .contact-actions .button,
  .form-row {
    width: 100%;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 16px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social {
    flex-direction: column;
    gap: 10px;
  }

  .footer-brand img {
    width: 70px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 1.95rem;
  }
}
