:root {
  --red: #c90000;
  --deep-red: #8f0000;
  --dark: #181818;
  --muted: #666666;
  --line: #eeeeee;
  --soft: #fff5f5;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(24, 24, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  height: 54px;
  padding: 8px 12px;
  background: var(--red);
  border-radius: 6px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: #343434;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.header-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action,
.primary-btn {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 36px rgba(201, 0, 0, 0.22);
}

.secondary-btn {
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.header-action:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.banner-hero {
  position: relative;
  min-height: clamp(640px, calc(100vh - 82px), 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.banner-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(105, 0, 0, 0.92) 0%, rgba(155, 0, 0, 0.76) 40%, rgba(24, 24, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32));
}

.banner-hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 94px) 0;
}

.banner-hero h1 {
  max-width: 960px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.banner-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

.banner-hero .hero-actions {
  margin-top: 34px;
}

.banner-primary {
  color: var(--red);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.banner-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - 82px);
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 84px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(111, 0, 0, 0.95), rgba(201, 0, 0, 0.86)),
    var(--red);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.11;
  pointer-events: none;
}

.hero-backdrop img {
  width: min(76vw, 860px);
  filter: grayscale(1) brightness(4);
}

.hero-content,
.hero-visual,
.hero-panel,
.feature-copy,
.growth-board,
.quote-card,
.quote-aside,
.contact-section > div {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow.red {
  color: var(--red);
}

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

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.02;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-visual > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border: 12px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.hero-visual::before {
  position: absolute;
  inset: 38px -18px -18px 34px;
  content: "";
  z-index: -1;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

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

.hero-panel {
  display: grid;
  gap: 14px;
  position: absolute;
  left: -46px;
  right: 26px;
  bottom: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.hero-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  color: var(--dark);
}

.hero-panel span {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 34px;
  color: var(--red);
}

.intro-section,
.image-story-section,
.services-section,
.process-section,
.industries-section,
.testimonials-section {
  padding: clamp(66px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

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

.intro-copy,
.feature-copy p,
.quote-aside p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.stats-section {
  padding: 0 clamp(20px, 5vw, 72px) clamp(66px, 8vw, 96px);
  background: var(--white);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--dark);
  background: #fff7f7;
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(143, 0, 0, 0.08);
}

.stats-strip div {
  min-height: 142px;
  padding: 32px 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 235, 235, 0.72));
  border-right: 1px solid #ffd6d6;
}

.stats-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  color: var(--red);
}

.stats-strip span {
  font-weight: 800;
  text-transform: uppercase;
  color: #6d5555;
}

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

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 308px;
  padding: 30px;
  background: var(--white);
  border: 1px solid #ffd9d9;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(143, 0, 0, 0.06);
}

.service-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  content: "";
  border: 18px solid rgba(201, 0, 0, 0.08);
  border-radius: 50%;
}

.service-card.accent-card {
  color: var(--white);
  background: var(--red);
}

.accent-card::after {
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.accent-card p,
.accent-card .service-number {
  color: rgba(255, 255, 255, 0.8);
}

.why-wise-section {
  background:
    linear-gradient(180deg, #fffafa 0%, #fff5f5 100%);
}

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

.why-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(143, 0, 0, 0.07);
}

.why-card::after {
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(201, 0, 0, 0.07);
  border-radius: 50%;
}

.why-card.featured {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.why-card.featured .why-icon {
  color: var(--red);
  background: var(--white);
}

.why-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 24px;
}

.why-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.why-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.services-360-section {
  position: relative;
  padding: clamp(66px, 8vw, 112px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

.services-360-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  content: "";
  background: var(--red);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.service-360-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #f1dddd;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(24, 24, 24, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-360-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--red);
}

.service-360-card::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  content: "";
  background:
    linear-gradient(90deg, rgba(201, 0, 0, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(201, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 9px 9px;
  opacity: 0.8;
}

.service-360-card:hover {
  transform: translateY(-3px);
  background: #fffafa;
  border-color: rgba(201, 0, 0, 0.38);
  box-shadow: 0 20px 42px rgba(143, 0, 0, 0.1);
}

.service-360-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 58px;
  height: 58px;
  padding: 15px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  box-shadow: 0 14px 26px rgba(201, 0, 0, 0.2);
}

.service-360-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.32;
}

.service-360-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-number {
  display: block;
  margin-bottom: 54px;
  font-size: 14px;
  font-weight: 900;
  color: var(--red);
}

.image-story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: stretch;
}

.image-story-media {
  position: relative;
  width: min(100%, 560px);
  justify-self: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-story-media::before {
  position: absolute;
  inset: -22px 42px 42px -22px;
  content: "";
  z-index: -1;
  background: var(--red);
  border-radius: 8px;
}

.image-story-media img {
  width: 100%;
  height: calc(50% - 8px);
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(24, 24, 24, 0.16);
}

.image-story-media img:nth-child(2) {
  margin-top: 0;
  height: calc(50% - 8px);
}

.image-story-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mini-metrics div {
  padding: 22px;
  background: var(--soft);
  border: 1px solid #ffd1d1;
  border-radius: 8px;
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  margin-bottom: 6px;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.mini-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--red);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.82);
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  content: "+";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
  text-align: center;
  line-height: 22px;
}

.growth-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.board-photo {
  width: 100%;
  min-height: 210px;
  grid-column: span 2;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.board-item {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--dark);
  background: var(--white);
  border-radius: 8px;
}

.board-item.large {
  min-height: 376px;
  grid-row: span 2;
  background: var(--dark);
  color: var(--white);
}

.board-item.wide {
  grid-column: span 2;
}

.board-item span {
  color: #ff4b4b;
  font-weight: 900;
}

.board-item strong {
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
}

.package-board {
  grid-template-areas:
    "discover design"
    "discover launch"
    "prestige ultimate";
}

.package-card {
  position: relative;
  overflow: hidden;
}

.package-card img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}

.package-card span,
.package-card strong {
  position: relative;
  z-index: 1;
}

.package-card span {
  color: #ff5b5b;
}

.package-card strong {
  color: inherit;
}

.package-card-large {
  grid-area: discover;
  min-height: 376px;
  color: var(--white);
  background: var(--dark);
}

.package-card-large img {
  width: 100%;
  opacity: 0.24;
}

.package-board .package-card:nth-child(2) {
  grid-area: design;
}

.package-board .package-card:nth-child(3) {
  grid-area: launch;
}

.package-board .package-card:nth-child(4) {
  grid-area: prestige;
}

.package-card-wide {
  grid-area: ultimate;
  min-height: 180px;
}

.package-card-wide img {
  width: 100%;
}

.package-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  margin-top: 44px;
}

.package-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #ffd5d5;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(116, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 0, 0, 0.45);
  box-shadow: 0 28px 68px rgba(116, 0, 0, 0.14);
}

.package-plan-card::after {
  position: absolute;
  right: -58px;
  top: -58px;
  width: 142px;
  height: 142px;
  content: "";
  border: 24px solid rgba(201, 0, 0, 0.08);
  border-radius: 50%;
}

.package-plan-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  content: "";
  background: var(--red);
}

.package-plan-card.featured {
  color: var(--dark);
  background: var(--white);
  border-color: #ffc6c6;
}

.package-plan-card.premium {
  color: var(--dark);
  background: linear-gradient(180deg, #ffffff 0%, #fff2f2 100%);
  border-color: rgba(201, 0, 0, 0.28);
}

.package-plan-card.ultimate {
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--deep-red));
  border-color: var(--deep-red);
}

.package-plan-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 96px;
  margin-bottom: 34px;
}

.package-plan-top span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.package-plan-top strong {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.package-plan-card.ultimate .package-plan-top span {
  color: var(--red);
  background: var(--white);
}

.package-plan-card.ultimate .package-plan-top strong {
  color: rgba(255, 255, 255, 0.78);
}

.package-plan-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  min-height: 74px;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;
}

.package-plan-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 118px;
  color: var(--muted);
  line-height: 1.7;
}

.package-plan-card.ultimate p {
  color: rgba(255, 255, 255, 0.76);
}

.package-inclusions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.package-inclusions li {
  position: relative;
  padding-left: 24px;
  color: #353535;
  font-weight: 800;
  line-height: 1.45;
}

.package-inclusions li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 900;
}

.package-plan-card.ultimate .package-inclusions li {
  color: rgba(255, 255, 255, 0.9);
}

.package-plan-card.ultimate .package-inclusions li::before {
  background: var(--white);
}

.package-plan-card .primary-btn,
.package-plan-card .secondary-btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
}

.package-plan-card.ultimate .secondary-btn {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
}

.package-plan-card:not(.ultimate) .primary-btn,
.package-plan-card:not(.ultimate) .secondary-btn {
  width: 100%;
}

.package-plan-card.ultimate .secondary-btn {
  width: 100%;
}

.package-results {
  margin: 0;
}

.package-support-grid,
.package-choice-grid {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

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

.package-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-support-grid article,
.package-choice-grid article {
  padding: 30px;
  border-radius: 8px;
}

.package-support-grid article {
  background: var(--white);
  border: 1px solid #ffd6d6;
}

.package-choice-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.package-support-grid span,
.package-choice-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-choice-grid span {
  color: #ff7777;
}

.package-support-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.package-choice-grid p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.package-promise p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.career-open-modal {
  margin-top: 28px;
  border: 0;
  cursor: pointer;
}

.career-value-grid,
.career-role-grid,
.career-process {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

.career-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.career-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.career-value-grid article,
.career-role-grid article,
.career-process article {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
}

.career-value-grid article,
.career-role-grid article {
  background: var(--white);
  border: 1px solid #ffd6d6;
  box-shadow: 0 18px 42px rgba(116, 0, 0, 0.06);
}

.career-role-grid article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}

.career-process article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.career-value-grid span,
.career-process span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.career-process span {
  color: var(--red);
  background: var(--white);
}

.career-role-grid strong {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.career-value-grid p,
.career-role-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.career-process p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.career-role-grid button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.career-role-grid button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 0, 0, 0.22);
}

.career-benefits p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.resume-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 22px;
  overflow-y: auto;
}

.resume-modal.is-open {
  display: grid;
  place-items: center;
}

.resume-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 24, 0.72);
  backdrop-filter: blur(8px);
}

.resume-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.resume-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.resume-dialog-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.resume-dialog-head h2 {
  margin-bottom: 12px;
}

.resume-dialog-head p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

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

.resume-form label {
  display: grid;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.resume-form label.full {
  grid-column: 1 / -1;
}

.resume-form input,
.resume-form select,
.resume-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px;
  color: var(--dark);
  background: #fffafa;
  border: 1px solid #dfc6c6;
  border-radius: 6px;
  font: inherit;
}

.resume-form input[type="file"] {
  padding: 12px;
}

.resume-form textarea {
  min-height: 128px;
  resize: vertical;
}

.resume-form button,
.resume-form .form-status {
  grid-column: 1 / -1;
}

.resume-form button {
  border: 0;
  cursor: pointer;
}

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

.timeline article {
  position: relative;
  min-height: 256px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.timeline p {
  color: var(--muted);
  line-height: 1.7;
}

.industries-section {
  background:
    linear-gradient(180deg, #fafafa 0%, #fff6f6 100%);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.industry-list span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 16px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #ffd1d1;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(143, 0, 0, 0.06);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.industry-list svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--red);
  background: #fff1f1;
  border-radius: 8px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.plain-industry-list span {
  grid-template-columns: 1fr;
  min-height: 68px;
}

.industry-intro {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.industry-focus-grid .detail-card {
  min-height: 330px;
}

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.quote-card {
  padding: clamp(32px, 6vw, 72px);
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
}

.quote-card p {
  font-size: clamp(24px, 3.3vw, 46px);
  line-height: 1.16;
  font-weight: 900;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  margin-top: 28px;
  color: #ff4b4b;
}

.quote-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
}

.client-logo-section {
  padding: clamp(66px, 8vw, 108px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, #fff5f5 100%);
}

.client-logo-section .section-heading {
  width: min(1180px, calc(100% - 40px));
}

.client-slider {
  position: relative;
  margin-top: 44px;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid #ffdada;
  border-bottom: 1px solid #ffdada;
}

.client-slider::before,
.client-slider::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(15vw, 170px);
  content: "";
  pointer-events: none;
}

.client-slider::before {
  left: 0;
  background: linear-gradient(90deg, #fff5f5, rgba(255, 245, 245, 0));
}

.client-slider::after {
  right: 0;
  background: linear-gradient(270deg, #fff5f5, rgba(255, 245, 245, 0));
}

.client-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: client-marquee 42s linear infinite;
}

.client-slider:hover .client-track {
  animation-play-state: paused;
}

.client-logo-card {
  display: grid;
  place-items: center;
  flex: 0 0 210px;
  height: 118px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid #ffd4d4;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(143, 0, 0, 0.08);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-track {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }
}

.latest-blogs-section {
  padding: clamp(66px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.blog-card {
  overflow: hidden;
  background: #fffafa;
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(143, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card div {
  padding: 26px;
}

.blog-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) clamp(66px, 8vw, 112px);
  padding: clamp(34px, 6vw, 72px);
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
}

.contact-section h2 {
  max-width: 780px;
}

.contact-section p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.primary-btn.light {
  min-width: 236px;
  color: var(--red);
  background: var(--white);
  box-shadow: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(640px, 1.8fr);
  gap: clamp(36px, 7vw, 92px);
  padding: clamp(54px, 7vw, 86px) clamp(20px, 5vw, 72px) 26px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, #181818 0%, #2a0909 58%, #8f0000 100%);
}

.footer-brand img {
  width: 178px;
  height: 70px;
  object-fit: contain;
  padding: 10px 14px;
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 20px 46px rgba(201, 0, 0, 0.3);
}

.footer-brand p {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

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

.footer-columns div {
  min-height: 218px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.footer-columns h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 18px;
}

.footer-columns a,
.footer-columns span {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-columns a:hover {
  color: var(--white);
}

.footer-newsletter form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-newsletter input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font: inherit;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.footer-newsletter button {
  min-height: 46px;
  color: var(--red);
  background: var(--white);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .hero-section,
  .intro-section,
  .image-story-section,
  .feature-band,
  .testimonials-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .image-story-media {
    width: min(100%, 620px);
    min-height: 520px;
  }

  .service-grid,
  .why-grid,
  .services-360-grid,
  .industry-list,
  .blog-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    max-width: 560px;
    left: 24px;
  }

  .contact-section {
    margin-left: 20px;
    margin-right: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: auto;
  }

  .brand {
    width: 136px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
  }

  .header-action {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual > img {
    height: 380px;
  }

  .image-story-media {
    min-height: 420px;
    gap: 12px;
  }

  .image-story-media img:nth-child(2) {
    margin-top: 0;
    height: calc(50% - 6px);
  }

  .hero-panel {
    position: static;
    margin-top: -70px;
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-panel div {
    padding: 14px;
  }

  .stats-strip,
  .service-grid,
  .why-grid,
  .services-360-grid,
  .industry-list,
  .blog-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid #ffd6d6;
  }

  .growth-board {
    grid-template-columns: 1fr;
  }

  .package-board {
    grid-template-areas:
      "discover"
      "design"
      "launch"
      "measure";
  }

  .board-photo {
    grid-column: auto;
  }

  .board-item.large {
    min-height: 220px;
    grid-row: auto;
  }

  .board-item.wide {
    grid-column: auto;
  }

  .service-card,
  .timeline article {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 32px;
  }

  .contact-section {
    padding: 30px 22px;
  }

  .mini-metrics {
    grid-template-columns: 1fr;
  }

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

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

/* Shared header and hero carried over from the companion WE design. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  min-height: 0;
  padding: 0;
  background: var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: none;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(73, 0, 0, 0.2);
}

.nav {
  width: min(1320px, calc(100% - 28px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  width: 148px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  background: var(--red);
  border-radius: 0;
  flex: 0 0 auto;
}

.brand img {
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(9px, 1.45vw, 22px);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a::after {
  bottom: 5px;
  background: var(--white);
}

.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  align-items: center;
  gap: 56px;
}

.hero-copy-block h1 {
  margin: 10px 0 20px;
  color: var(--red);
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.88;
}

.hero .eyebrow {
  color: var(--red);
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: #343434;
  font-size: 21px;
  line-height: 1.62;
}

.hero .hero-actions {
  margin-top: 34px;
}

.about-wise-section {
  align-items: center;
}

.about-wise-section .hero-copy-block h1 {
  max-width: 680px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-points div {
  padding: 16px 18px;
  background: #fff7f7;
  border-left: 4px solid var(--red);
  box-shadow: 0 12px 28px rgba(143, 0, 0, 0.06);
}

.about-points span,
.about-points strong {
  display: block;
}

.about-points span {
  margin-bottom: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-points strong {
  color: #303030;
  font-size: 15px;
  line-height: 1.55;
}

.about-story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  padding: clamp(66px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.about-story-media {
  position: relative;
}

.about-story-media::before {
  position: absolute;
  inset: -22px 36px 36px -22px;
  z-index: -1;
  content: "";
  background: var(--red);
  border-radius: 8px;
}

.about-story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(24, 24, 24, 0.16);
}

.about-story-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.about-belief-grid article {
  min-height: 290px;
  padding: 34px;
  background: var(--white);
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(143, 0, 0, 0.07);
}

.about-belief-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-belief-grid p,
.about-promise-list p {
  color: var(--muted);
  line-height: 1.75;
}

.page-section.dark .about-promise-list p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.about-promise-list {
  max-width: 920px;
  margin-top: 28px;
}

.hero-outline {
  color: var(--red);
  border: 2px solid var(--red);
  background: var(--white);
}

.hero-visual {
  min-height: 470px;
  background: var(--soft);
  box-shadow: -22px 22px 0 var(--soft);
  overflow: hidden;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual::before {
  display: none;
}

/* Inner pages */
.page-hero {
  min-height: 430px;
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 56px;
  color: var(--white);
  background: var(--red);
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.88;
}

.page-hero-copy {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.page-section {
  padding: clamp(66px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

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

.page-section.dark {
  color: var(--white);
  background: var(--dark);
}

.page-lead {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.page-lead > p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.detail-grid,
.case-grid,
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.detail-card,
.principle-card {
  min-height: 280px;
  padding: 30px;
  background: var(--white);
  border: 1px solid #ffd6d6;
  border-radius: 8px;
}

.detail-card strong,
.principle-card strong {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-size: 14px;
}

.detail-card p,
.principle-card p,
.case-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid #ffd3d3;
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid #ffd3d3;
}

.service-row > span {
  color: var(--red);
  font-weight: 900;
}

.service-row h3 {
  margin: 0;
  font-size: 26px;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.approach-steps {
  margin-top: 48px;
  counter-reset: approach;
}

.approach-step {
  counter-increment: approach;
  display: grid;
  grid-template-columns: 110px minmax(240px, 0.7fr) minmax(300px, 1.3fr);
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-step::before {
  content: "0" counter(approach);
  color: #ff7777;
  font-size: 30px;
  font-weight: 900;
}

.approach-step h3 {
  margin: 0;
  font-size: 29px;
}

.approach-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.case-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-copy {
  padding: 28px;
}

.case-copy > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-copy h3 {
  margin-top: 12px;
  font-size: 25px;
}

.results-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--red);
}

.results-band div {
  padding: 36px clamp(20px, 4vw, 54px);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.results-band strong,
.results-band span {
  display: block;
}

.results-band strong {
  font-size: clamp(34px, 4vw, 56px);
}

.results-band span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.contact-details div {
  padding-top: 20px;
  border-top: 1px solid #ffd3d3;
}

.contact-details span,
.contact-details a {
  display: block;
}

.contact-details span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details a {
  font-size: 20px;
  font-weight: 900;
}

.project-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 34px;
  background: var(--soft);
  border: 1px solid #ffd3d3;
  border-radius: 8px;
}

.project-form label {
  display: grid;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-form label.full {
  grid-column: 1 / -1;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px;
  border: 1px solid #dfc6c6;
  background: var(--white);
  color: var(--dark);
  font: inherit;
}

.project-form textarea {
  min-height: 150px;
  resize: vertical;
}

.project-form button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .page-lead,
  .about-story-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .banner-hero {
    min-height: 620px;
  }

  .banner-hero-overlay {
    background:
      linear-gradient(90deg, rgba(105, 0, 0, 0.94), rgba(155, 0, 0, 0.78)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34));
  }

  .detail-grid,
  .case-grid,
  .about-belief-grid,
  .principles-grid,
  .package-support-grid,
  .package-choice-grid,
  .career-value-grid,
  .career-role-grid,
  .career-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .package-plan-card,
  .package-plan-card.featured,
  .package-plan-card.ultimate {
    grid-column: span 1;
  }

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

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

  .nav {
    min-height: 72px;
  }

  .brand {
    width: 132px;
    height: 46px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    order: initial;
    width: auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 16px 18px;
    overflow: visible;
    background: var(--red);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 0;
  }

  .banner-hero {
    min-height: 620px;
  }

  .banner-hero-content {
    width: min(100% - 28px, 1180px);
    padding: 64px 0 54px;
  }

  .banner-hero h1 {
    font-size: clamp(40px, 13vw, 56px);
    line-height: 1.02;
  }

  .banner-hero-content > p:not(.eyebrow) {
    font-size: 18px;
  }

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

  .hero {
    padding-top: 34px;
    gap: 32px;
  }

  .hero-text {
    font-size: 18px;
  }

  .about-wise-section .hero-copy-block h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

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

  .hero-visual,
  .hero-visual > img {
    min-height: 300px;
    height: 300px;
  }

  .hero-visual {
    box-shadow: -12px 12px 0 var(--soft);
  }

  .page-hero {
    min-height: 360px;
  }

  .detail-grid,
  .case-grid,
  .principles-grid,
  .about-belief-grid,
  .package-plan-grid,
  .package-support-grid,
  .package-choice-grid,
  .career-value-grid,
  .career-role-grid,
  .career-process,
  .results-band,
  .project-form,
  .resume-form {
    grid-template-columns: 1fr;
  }

  .resume-form label.full,
  .resume-form button,
  .resume-form .form-status {
    grid-column: auto;
  }

  .package-plan-card {
    min-height: auto;
    padding: 24px;
  }

  .package-plan-top {
    margin-bottom: 34px;
  }

  .service-row,
  .approach-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-form {
    padding: 24px 18px;
  }
}

/* Distinct image-led heroes for the inner pages. */
.page-hero {
  position: relative;
  min-height: 570px;
  padding: clamp(52px, 6vw, 76px) clamp(20px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  overflow: hidden;
  color: var(--dark);
  background: #f7f7f7;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 18px 0 26px;
  color: inherit;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.94;
}

.page-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-kicker span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.page-hero-copy {
  max-width: 650px;
  color: #515151;
  font-size: 19px;
  line-height: 1.75;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-bottom: 8px;
  color: var(--dark);
  border-bottom: 2px solid var(--red);
  font-weight: 900;
}

.hero-text-link span {
  color: var(--red);
  font-size: 20px;
}

.page-hero-media {
  position: relative;
  z-index: 1;
  min-height: 430px;
}

.page-hero-media::before {
  position: absolute;
  inset: 26px -24px -24px 32px;
  content: "";
  z-index: -1;
  background: var(--red);
}

.page-hero-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(26, 17, 17, 0.16);
}

.page-hero-note {
  position: absolute;
  left: -34px;
  right: 34px;
  bottom: 24px;
  padding: 22px 24px;
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.page-hero-note strong,
.page-hero-note span {
  display: block;
}

.page-hero-note strong {
  margin-bottom: 7px;
  font-size: 20px;
}

.page-hero-note span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.services-hero {
  background: #f7f7f7;
}

.services-hero::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  content: "";
  background: var(--red);
}

.approach-hero {
  color: var(--white);
  background: var(--dark);
}

.approach-hero .page-kicker,
.approach-hero .page-hero-copy {
  color: rgba(255, 255, 255, 0.72);
}

.approach-hero .page-kicker span {
  color: var(--red);
  background: var(--white);
}

.approach-hero .page-hero-media::before {
  inset: -22px 28px 30px -22px;
  background: #303030;
  border: 1px solid #474747;
}

.approach-hero .page-hero-media img {
  border: 10px solid var(--white);
  box-shadow: none;
}

.page-hero-index {
  position: absolute;
  right: -22px;
  bottom: -20px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  color: var(--white);
  background: var(--red);
  font-size: 42px;
  font-weight: 900;
}

.hero-step-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.hero-step-line span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.work-hero .page-hero-media {
  min-height: 460px;
}

.work-hero .page-hero-media::before {
  inset: auto -26px -28px 46px;
  height: 58%;
  background: var(--soft);
  border: 1px solid #ffd1d1;
}

.work-hero .page-hero-media img {
  height: 460px;
}

.work-badge {
  position: absolute;
  left: -38px;
  top: 34px;
  min-width: 170px;
  padding: 24px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 44px rgba(124, 0, 0, 0.2);
}

.work-badge strong,
.work-badge span {
  display: block;
}

.work-badge strong {
  font-size: 42px;
  line-height: 1;
}

.work-badge span {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-hero {
  background: #fff7f7;
  border-bottom: 1px solid #ffdede;
}

.contact-hero::after {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: 0;
  width: 120px;
  height: 8px;
  content: "";
  background: var(--red);
}

.contact-hero .page-hero-media::before {
  inset: -18px -18px 36px 36px;
  background: var(--white);
  border: 1px solid #f0dede;
}

.contact-hero .page-hero-media img {
  height: 400px;
}

.contact-availability {
  position: absolute;
  right: -20px;
  bottom: 8px;
  width: min(290px, calc(100% - 26px));
  padding: 24px;
  color: var(--white);
  background: var(--dark);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.contact-availability span,
.contact-availability strong,
.contact-availability small {
  display: block;
}

.contact-availability span {
  color: #ff7979;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-availability strong {
  margin: 8px 0;
  font-size: 28px;
}

.contact-availability small {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero-content {
    max-width: 780px;
  }

  .page-hero-media {
    width: min(100%, 720px);
  }
}

@media (max-width: 720px) {
  .page-hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 64px;
    gap: 42px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 15vw, 66px);
    line-height: 0.96;
  }

  .page-hero-copy {
    font-size: 17px;
  }

  .page-hero-media,
  .work-hero .page-hero-media {
    min-height: 340px;
  }

  .page-hero-media img,
  .work-hero .page-hero-media img,
  .contact-hero .page-hero-media img {
    height: 340px;
  }

  .page-hero-media::before,
  .approach-hero .page-hero-media::before,
  .work-hero .page-hero-media::before,
  .contact-hero .page-hero-media::before {
    inset: 16px -10px -14px 18px;
    height: auto;
  }

  .page-hero-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .work-badge {
    left: 12px;
    top: 12px;
  }

  .page-hero-index {
    right: 10px;
    bottom: -14px;
    width: 88px;
    height: 88px;
    font-size: 34px;
  }

  .contact-availability {
    right: 10px;
    bottom: -10px;
  }
}
