:root {
  --navy: #0f2747;
  --deep: #071c34;
  --panel: #102b4a;
  --cyan: #00c8f0;
  --gold: #c7a35a;
  --green: #4f7a5b;
  --ice: #d9e3ec;
  --muted: #9fb2c5;
  --line: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(7, 28, 52, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 92px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--ice);
  font-size: 13px;
  letter-spacing: 0;
}

.nav a,
.header-cta,
.button {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.header-cta,
.button {
  border: 1px solid rgba(0, 200, 240, 0.6);
  border-radius: 6px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  color: var(--cyan);
}

.header-cta:hover,
.button.primary {
  background: var(--cyan);
  color: var(--deep);
}

.button.primary:hover,
.button.secondary:hover {
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 180px clamp(24px, 8vw, 108px) 72px;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/cwc-hero-trailer.png");
  background-size: cover;
  background-position: 70% center;
  filter: saturate(0.96);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 28, 52, 0.98) 0%, rgba(7, 28, 52, 0.88) 34%, rgba(7, 28, 52, 0.42) 68%, rgba(7, 28, 52, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 28, 52, 0.95) 0%, rgba(7, 28, 52, 0) 34%);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.98;
  max-width: 820px;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 620px;
  color: var(--ice);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #082038;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip div {
  padding: 26px clamp(20px, 4vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trust-strip strong {
  font-size: 18px;
  line-height: 1.35;
}

.section {
  padding: 88px clamp(24px, 8vw, 108px);
}

.page-main {
  padding-top: 92px;
}

.page-title {
  min-height: 42vh;
  display: grid;
  align-content: end;
  padding: 120px clamp(24px, 8vw, 108px) 72px;
  background:
    linear-gradient(120deg, rgba(7, 28, 52, 0.96), rgba(15, 39, 71, 0.92)),
    url("assets/cwc-hero-trailer.png");
  background-size: cover;
  background-position: center;
}

.page-title h1,
.contact-page h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
}

.page-title p:not(.eyebrow),
.contact-page p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--ice);
  font-size: 20px;
  line-height: 1.5;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ice);
  font-size: 18px;
  line-height: 1.5;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.intro-panel,
.pricing,
.contact-card {
  background: rgba(16, 43, 74, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-panel {
  padding: clamp(28px, 4vw, 48px);
}

.intro-panel p {
  margin: 0;
  color: var(--ice);
  font-size: 22px;
  line-height: 1.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.chips span {
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 200, 240, 0.1);
  padding: 9px 16px;
  font-size: 13px;
}

.feature-grid,
.deliverable-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 0;
}

.feature-grid article,
.deliverable-list article {
  min-height: 170px;
  padding: 24px;
  background: rgba(16, 43, 74, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-top: 7px solid var(--cyan);
}

.feature-grid article:nth-child(2),
.deliverable-list article:nth-child(2),
.deliverable-list article:nth-child(6) {
  border-top-color: var(--gold);
}

.feature-grid article:nth-child(3),
.deliverable-list article:nth-child(3) {
  border-top-color: var(--green);
}

.feature-grid article:nth-child(4),
.deliverable-list article:nth-child(4) {
  border-top-color: #6aa8ff;
}

.feature-grid h3,
.deliverable-list h3,
.timeline h3,
.commercial-notes h3 {
  margin: 0;
  font-size: 22px;
}

.feature-grid p,
.deliverable-list p,
.timeline p,
.commercial-notes li {
  color: var(--muted);
  line-height: 1.48;
}

.process,
.investment {
  background: var(--navy);
}

.page-main .process,
.page-main .deliverables,
.page-main .investment {
  padding-top: 70px;
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 1040px;
}

.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  background: rgba(16, 43, 74, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 42px;
  border-radius: 6px;
  background: #061b31;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.timeline .active span,
.timeline .temp span {
  background: var(--cyan);
  color: var(--deep);
}

.timeline p {
  margin: 8px 0 0;
}

.deliverable-list {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.investment {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 48px;
}

.pricing {
  padding: 28px;
}

.request-panel {
  align-self: start;
}

.request-panel p {
  color: var(--ice);
  font-size: 18px;
  line-height: 1.55;
}

.request-panel .button {
  display: inline-flex;
  margin-top: 12px;
}

.price-table {
  overflow: hidden;
  border-radius: 8px;
}

.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background: #102b4a;
  color: var(--ice);
}

.price-table div:nth-child(2) {
  background: #09213b;
}

.price-table .total {
  background: #071c34;
  color: var(--white);
  font-weight: 700;
}

.commercial-notes {
  margin-top: 26px;
}

.commercial-notes ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.commercial-notes li {
  position: relative;
  padding-left: 24px;
  margin: 13px 0;
}

.commercial-notes li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
}

.contact-page {
  min-height: 66vh;
  padding-top: 120px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  font-style: normal;
}

.contact-card strong {
  font-size: 30px;
}

.contact-card a,
.contact-card span {
  color: var(--ice);
  font-size: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.contact-card a:hover {
  color: var(--cyan);
}

.request-details {
  background: var(--navy);
}

.request-details h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 46px);
}

.request-details ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-details li {
  min-height: 112px;
  padding: 20px;
  background: rgba(16, 43, 74, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ice);
}

.cta-band {
  background: #09213b;
}

.cta-band h2 {
  max-width: 780px;
  margin: 0 0 26px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 8vw, 108px);
  background: #061b31;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer img {
  width: 82px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .investment,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .deliverable-list,
  .trust-strip,
  .request-details ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 76px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 92vh;
    padding: 132px 22px 44px;
  }

  .hero-media {
    background-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 28, 52, 0.98) 0%, rgba(7, 28, 52, 0.8) 58%, rgba(7, 28, 52, 0.35) 100%),
      linear-gradient(0deg, rgba(7, 28, 52, 0.96) 0%, rgba(7, 28, 52, 0) 42%);
  }

  .section {
    padding: 64px 22px;
  }

  .trust-strip,
  .feature-grid,
  .deliverable-list,
  .request-details ul {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .timeline span {
    width: 46px;
  }

  .price-table div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
