:root {
  --navy: #020819;
  --navy-2: #06142d;
  --ink: #07102a;
  --blue: #ff2aa8;
  --blue-2: #e81493;
  --text: #f8fbff;
  --muted: #c8d0e4;
  --dark-muted: #4e5870;
  --line: rgba(255, 42, 168, 0.22);
  --white: #ffffff;
  --soft: #f7f9ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 42, 168, 0.08), transparent 24rem),
    radial-gradient(circle at 92% 38%, rgba(255, 42, 168, 0.06), transparent 22rem);
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
  color: var(--text);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: 1.32rem;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.brand em {
  color: var(--blue);
  font-style: normal;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #ff9ad7;
  font-size: 0.64rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 34px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: linear-gradient(135deg, #ff62c4, var(--blue-2));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(255, 42, 168, 0.3);
  cursor: pointer;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.nav-button {
  min-width: 174px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
  min-height: 720px;
  padding: 132px max(32px, calc((100vw - 1180px) / 2)) 64px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 42, 168, 0.2), transparent 28%),
    linear-gradient(135deg, #020715 0%, #061329 58%, #010511 100%);
  color: var(--text);
}

.hero::before {
  position: absolute;
  inset: 92px max(24px, calc((100vw - 1180px) / 2)) auto auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 42, 168, 0.2);
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 2px, transparent 3px) center / 22px 22px,
    radial-gradient(circle, rgba(255, 42, 168, 0.9) 0 2px, transparent 3px) 9px 9px / 28px 28px;
  opacity: 0.28;
  filter: drop-shadow(0 0 24px rgba(255, 42, 168, 0.35));
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 42, 168, 0.72), transparent);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 5.35rem);
  font-weight: 900;
}

h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 900;
}

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

.hero-text {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-points div,
.quote-benefits div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px 14px;
  align-items: start;
}

.hero-points div {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-points strong,
.quote-benefits strong {
  display: block;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.hero-points small,
.quote-benefits small {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: #ff9ad7;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-visual img {
  width: 100%;
  min-height: 190px;
  border: 1px solid rgba(255, 42, 168, 0.28);
  border-radius: 18px;
  background: #000;
  object-fit: contain;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    0 0 58px rgba(255, 42, 168, 0.14);
}

.hero-visual .hero-main {
  min-height: 520px;
}

.section {
  padding: 72px max(28px, calc((100vw - 1180px) / 2));
}

.light-section {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  color: inherit;
}

.event-cards,
.service-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-cards {
  grid-template-columns: repeat(6, 1fr);
}

.event-cards article,
.service-cards article,
.process-steps article {
  min-width: 0;
  padding: 24px 16px;
  border-left: 1px solid #dce1ee;
  text-align: center;
}

.event-cards article,
.service-cards article {
  border-radius: 18px;
  border: 1px solid rgba(255, 42, 168, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 42, 168, 0.035), rgba(255, 255, 255, 0)),
    #fff;
  box-shadow: 0 14px 34px rgba(7, 16, 42, 0.06);
}

.event-cards p,
.service-cards p,
.process-steps p {
  margin: 0;
  color: var(--dark-muted);
  font-size: 0.92rem;
}

.line-icon {
  display: block;
  min-height: 54px;
  color: var(--blue);
  font-size: 2.9rem;
  line-height: 1;
}

.creative-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 42, 168, 0.18), transparent 24rem),
    radial-gradient(circle at 86% 72%, rgba(255, 42, 168, 0.1), transparent 22rem),
    linear-gradient(135deg, #020715, #061329);
  color: var(--text);
}

.creative-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 42, 168, 0.32), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 42, 168, 0.22), transparent) bottom / 100% 1px no-repeat;
}

.creative-section .section-heading {
  position: relative;
  z-index: 1;
}

.creative-section .section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
}

.creative-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.creative-grid figure {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(255, 42, 168, 0.38);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 42, 168, 0.12), rgba(255, 255, 255, 0.02)),
    #000;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.creative-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  padding: 8px;
  background: #000;
  object-fit: contain;
}

.creative-grid figcaption {
  display: grid;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 42, 168, 0.24);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.process-section {
  background: var(--soft);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
}

.process-steps article {
  position: relative;
  border: 0;
  padding-top: 12px;
}

.process-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.quote-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  gap: 44px;
  padding: 74px max(28px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 84% 24%, rgba(255, 42, 168, 0.18), transparent 26%),
    linear-gradient(135deg, #020715, #061329);
  color: var(--text);
}

.quote-section::before {
  position: absolute;
  inset: 42px auto auto 42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px) center / 18px 18px,
    radial-gradient(circle, rgba(255, 42, 168, 0.96) 0 2px, transparent 3px) 7px 7px / 24px 24px;
  opacity: 0.24;
  filter: drop-shadow(0 0 30px rgba(255, 42, 168, 0.5));
}

.quote-copy,
.quote-form {
  position: relative;
  z-index: 1;
}

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

.quote-benefits {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.quote-benefits div {
  padding: 12px 0;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
  padding: 0 18px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(255, 42, 168, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 42, 168, 0.13);
}

.quote-form textarea {
  grid-column: 1 / -1;
  min-height: 116px;
  padding-top: 16px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.quote-form select {
  color: rgba(255, 255, 255, 0.76);
}

.form-button,
.success-message {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
  border: 0;
}

.success-message {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(126, 255, 194, 0.42);
  border-radius: 6px;
  background: rgba(126, 255, 194, 0.1);
  color: #d9ffe9;
}

.trust-section {
  padding: 34px max(28px, calc((100vw - 1180px) / 2));
  background: var(--white);
  text-align: center;
}

.trust-section .eyebrow {
  margin-bottom: 24px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border-block: 1px solid #dce1ee;
}

.trust-logos span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid #dce1ee;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-logos span:last-child {
  border-right: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1fr auto;
  gap: 42px;
  align-items: start;
  padding: 44px max(28px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  max-width: 340px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    position: static;
    width: 100%;
    padding: 18px 22px;
    background: var(--navy);
  }

  .main-nav {
    display: none;
  }

  .nav-button {
    margin-left: auto;
  }

  .hero,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .event-cards,
  .service-cards,
  .creative-grid,
  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.52rem;
  }

  .nav-button {
    min-width: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 54px 22px 42px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

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

  .hero-points,
  .event-cards,
  .creative-grid,
  .process-steps,
  .quote-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .creative-grid img {
    aspect-ratio: 1.08 / 1;
  }

  .service-cards {
    gap: 12px;
  }

  .service-cards article {
    padding: 18px 12px;
  }

  .hero-visual .hero-main {
    min-height: 230px;
  }

  .section,
  .quote-section,
  .trust-section,
  .site-footer {
    padding-inline: 22px;
  }

  .quote-section {
    gap: 28px;
  }
}
