:root {
  --ink: #17202a;
  --muted: #5f6b75;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dfe3e5;
  --magenta: #c000c8;
  --magenta-dark: #88009e;
  --blue: #1048f0;
  --blue-dark: #082fbc;
  --cyan: #19b8ff;
  --teal: #1048f0;
  --teal-dark: #082fbc;
  --coral: #c000c8;
  --gold: #19b8ff;
  --shadow: 0 24px 70px rgba(16, 72, 240, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(223, 227, 229, 0.75);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: min(214px, 46vw);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover {
  color: var(--magenta);
}

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

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

.hero {
  position: relative;
  min-height: calc(100svh - 126px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #101820;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 18, 38, 0.96) 0%, rgba(13, 18, 38, 0.78) 45%, rgba(16, 72, 240, 0.18) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(660px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: clamp(42px, 7vw, 72px) 0 clamp(52px, 8vw, 82px);
  color: white;
}

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

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 5.5vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--magenta), var(--blue));
  box-shadow: 0 14px 30px rgba(192, 0, 200, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 36px auto 0;
}

.proof-strip div {
  padding: 18px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: 8px;
  background: #fbfaf7;
}

.proof-strip dt {
  font-size: 1.3rem;
  font-weight: 900;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.clients-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 112px) clamp(18px, 5vw, 64px);
  background: linear-gradient(135deg, #0d1226, #151236 58%, #071f6b);
  color: white;
}

.clients-copy {
  max-width: 520px;
}

.clients-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.clients-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

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

.client-logo {
  display: grid;
  min-height: 108px;
  place-items: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
  text-align: center;
}

.client-logo img {
  max-width: 78%;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.9;
}

.section,
.section-band {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 64px);
}

.section-band {
  background: white;
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.visual-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.72fr);
}

.intro-media {
  grid-row: span 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-media img,
.image-heading img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.section-grid p:last-child {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

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

.image-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  text-align: left;
}

.image-heading img {
  overflow: hidden;
  max-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.package-card,
.login-panel,
.portal-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(23, 32, 42, 0.07);
}

.service-card {
  min-height: 270px;
  padding: 28px;
}

.service-card p,
.package-card p,
.timeline p,
.booking-copy p,
.login-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--teal);
  font-weight: 900;
}

.packages-section {
  background: #eef4f1;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.package-card.featured {
  border-color: var(--magenta);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.crm-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 64px);
  background: linear-gradient(135deg, #ffffff, #f4f7ff);
}

.crm-panel {
  max-width: 690px;
}

.crm-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.crm-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.crm-screen {
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(16, 72, 240, 0.18);
  border-radius: 8px;
  background: #0d1226;
  color: white;
  box-shadow: var(--shadow);
}

.screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
}

.screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--magenta);
}

.screen-top span:nth-child(2) {
  background: var(--blue);
}

.screen-top span:nth-child(3) {
  background: var(--cyan);
}

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

.screen-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.screen-grid small {
  display: block;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.screen-grid strong {
  display: block;
  font-size: 1.9rem;
}

.pipeline-bars {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.pipeline-bars span {
  display: block;
  width: var(--w);
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--magenta), var(--blue), var(--cyan));
}

.package-label {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

.price {
  color: var(--ink) !important;
  font-size: 2rem;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 28px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.package-card .button {
  margin-top: auto;
}

.process {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.timeline div {
  padding: 0 22px 22px;
  border-left: 3px solid var(--gold);
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 64px);
  color: white;
  background: linear-gradient(135deg, #0d1226, #151236 58%, #071f6b);
}

.booking-copy {
  max-width: 570px;
  align-self: center;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-options a {
  color: white;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.booking-form,
.login-form {
  display: grid;
  gap: 16px;
}

.booking-form {
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink);
  background: white;
  border-radius: 8px;
}

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

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

textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 64px);
  background: #0f171f;
  color: white;
}

.site-footer p {
  max-width: 460px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.login-page {
  min-height: 100vh;
  background: #eef4f1;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(320px, 560px);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(22px, 4vw, 48px);
}

.login-panel,
.portal-preview {
  padding: clamp(22px, 3vw, 34px);
}

.login-panel h1 {
  color: var(--ink);
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.96;
}

.login-panel p {
  line-height: 1.5;
}

.login-form {
  gap: 12px;
}

.portal-preview {
  display: grid;
  gap: 18px;
  background: #0d1226;
  color: white;
  box-shadow: var(--shadow);
}

.status-card,
.portal-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  background: var(--magenta);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(192, 0, 200, 0.16);
}

.status-card p,
.portal-list p {
  color: rgba(255, 255, 255, 0.68);
}

.status-card strong {
  font-size: 2.1rem;
}

.portal-list {
  display: grid;
  gap: 12px;
}

.portal-list div {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 14px;
  align-items: center;
}

.portal-list span {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 999px;
}

.portal-list p {
  margin: 0;
}

.portal-list strong {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .service-grid,
  .package-grid,
  .timeline,
  .section-grid,
  .image-heading,
  .clients-section,
  .crm-section,
  .booking-section,
  .login-shell {
    grid-template-columns: 1fr;
  }

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

  .package-card.featured {
    transform: none;
  }

  .booking-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav.always-visible {
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.74));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 68px 0 74px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .proof-strip,
  .logo-wall,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 168px;
  }

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

  .login-shell {
    padding: 18px;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .portal-list div {
    grid-template-columns: 12px 1fr;
  }

  .portal-list strong {
    grid-column: 2;
  }
}
