/* ============================================================
   KEUJI — home.css
   Home page–specific styles. Shares tokens + base from styles.css.
   ============================================================ */

/* ── HERO ── */
.hp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 55% 55% at 30% 65%, rgba(70,90,200,0.18) 0%, transparent 70%);
}

.hp-hero__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: var(--sp-80);
  padding: 0 160px var(--sp-64);
}

.hp-hero__h1 {
  font-size: 68px;
  line-height: 1.0;
  margin-top: var(--sp-24);
}

.hp-hero__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hp-hero__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
}

.hp-hero__logos {
  padding: 24px 160px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-80);
  align-items: center;
}

.hp-hero__logos-label {
  font-family: var(--font-eyebrow);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ── Marquee container — right column only ── */
.hp-logos-marquee {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16%, black 84%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 16%, black 84%, transparent 100%);
}

/* ── Scrolling track ── */
.hp-logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logos-ltr 22s linear infinite;
}

.hp-logos-track:hover {
  animation-play-state: paused;
}

@keyframes logos-ltr {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

@media (prefers-reduced-motion: reduce) {
  .hp-logos-track { animation: none; }
}

/* ── Individual logos ── */
.hp-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.55;
}

.hp-logo img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
  display: block;
}

/* Hershey's (positions 1 & 5) */
.hp-logos-track .hp-logo:nth-child(4n+1) img { height: 20px; }
/* FNB (positions 4 & 8) */
.hp-logos-track .hp-logo:nth-child(4n)   img { height: 30px; }


/* ── STATS ── */
.hp-stats {
  padding: var(--sp-160) 0;
}

.hp-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  justify-content: center;
  gap: var(--sp-40) 10%;
  text-align: center;
}

.hp-stat__number {
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 1;
  font-weight: 400;
  display: block;
  margin-bottom: var(--sp-24);
}

.hp-stat__label {
  font-family: var(--font-action);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.hp-stat__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 auto;
}


/* ── APPROACH ── */
.hp-approach {
  padding: var(--sp-160) 0 var(--sp-80);
}

.hp-approach__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-80);
  align-items: flex-end;
  margin-bottom: var(--sp-80);
}

.hp-approach__h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-top: var(--sp-16);
}

.hp-approach__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  align-self: flex-end;
  max-width: 440px;
}

/* ICP cards */
.hp-icp {
  padding: var(--sp-80) 0 var(--sp-160);
}

.hp-icp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.hp-icp__card {
  background: none;
  border: none;
  border-radius: 0;
  padding: var(--sp-32) 0;
  max-width: 480px;
}

.hp-icp__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-32);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-icp__icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.hp-icp__title {
  font-family: var(--font-action);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hp-icp__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}


/* ── VERTICALS ── */
.hp-verticals {
  padding: var(--sp-80) 0 var(--sp-160);
}

/* Centered header above the banner card */
.hp-verticals__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--sp-64);
}

.hp-verticals__h2 {
  font-size: 56px;
  line-height: 1.08;
  margin-top: var(--sp-16);
}

.hp-verticals__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-top: var(--sp-24);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Banner card sits inside the unified section — section handles vertical rhythm */
.hp-verticals .banner-section {
  padding-top: 0;
  padding-bottom: 0;
}

/* Verticals strip below the banner card — label above, 2×2 grid below */
.hp-verticals__strip {
  padding-top: var(--sp-64);
}

.hp-verticals__strip-label {
  display: block;
  font-family: var(--font-eyebrow);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-48);
}

.hp-verticals__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-64) var(--sp-80);
}

.hp-vertical-item {
  display: flex;
  gap: var(--sp-24);
  align-items: flex-start;
}

.hp-vertical-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hp-vertical-item__icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.hp-vertical-item__title {
  font-family: var(--font-action);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.hp-vertical-item__body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}


/* ── GO-TO-MARKET ── */
.hp-gtm {
  padding: var(--sp-160) 0 200px;
}

.hp-gtm__header {
  max-width: 700px;
  margin: 0 auto var(--sp-64);
  text-align: center;
}

.hp-gtm__h2 {
  font-size: 64px;
  line-height: 1.08;
  margin: var(--sp-16) 0 var(--sp-24);
}

.hp-gtm__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hp-gtm__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hp-gtm__card {
  background: var(--color-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: var(--sp-40) var(--sp-32);
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease;
  position: relative;
  overflow: hidden;
  --gx: 50%; --gy: 50%;
}

.hp-gtm__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--gx) var(--gy), rgba(120,160,255,0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.hp-gtm__card:hover { border-color: rgba(153,174,239,0.2); transform: translateY(-2px); }
.hp-gtm__card:hover::after { opacity: 1; }

.hp-gtm__card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: var(--sp-32);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-gtm__card-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.hp-gtm__card-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--sp-16);
}

.hp-gtm__card-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  flex: 1;
}


/* ── ENTERPRISE ── */
.hp-enterprise {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px var(--content-px);
}

.hp-enterprise__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-40);
}

.hp-enterprise__h2 {
  font-size: 64px;
  line-height: 1.1;
  max-width: 520px;
}


/* ── TECH CAPABILITIES ── */
.hp-tech {
  padding: 200px 0 var(--sp-160);
}

.hp-tech__header {
  margin-bottom: var(--sp-48);
}

.hp-tech__h2 {
  font-size: 64px;
  line-height: 1.08;
  margin: var(--sp-16) 0 var(--sp-16);
}

.hp-tech__subhead {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Tech card entrance animation — triggered when grid enters viewport */
.hp-tech__img-card,
.hp-tech__card--agentic,
.hp-tech__card--voice {
  opacity: 0;
  transform: translateY(24px);
}

.hp-tech__grid.cards-visible .hp-tech__img-card {
  animation: fadeUp 600ms ease forwards;
  animation-delay: 100ms;
}
.hp-tech__grid.cards-visible .hp-tech__card--agentic {
  animation: fadeUp 600ms ease forwards;
  animation-delay: 220ms;
}
.hp-tech__grid.cards-visible .hp-tech__card--voice {
  animation: fadeUp 600ms ease forwards;
  animation-delay: 360ms;
}

/* 3-column grid: left 1/3 tall + right 2/3 with 2 stacked cards */
.hp-tech__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 12px;
}

/* Left 1/3: tall image card spanning both rows */
.hp-tech__img-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
}
.hp-tech__img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-tech__img-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-40);
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  z-index: 2;
}
.hp-tech__img-card-content .hp-tech__card-eyebrow {
  display: block;
  margin-bottom: 12px;
}
.hp-tech__img-card-content .hp-tech__card-title {
  font-size: 36px;
  margin-bottom: 12px;
}
.hp-tech__img-card-content .hp-tech__card-body {
  max-width: 280px;
}

/* Shared card base */
.hp-tech__card {
  background: #111112;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: border-color 200ms ease;
  --gx: 50%; --gy: 50%;
}
.hp-tech__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--gx) var(--gy), rgba(120,160,255,0.14) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
  z-index: 2;
}
.hp-tech__card:hover { border-color: rgba(153,174,239,0.2); }
.hp-tech__card:hover::after { opacity: 1; }

/* Top-right: Agentic AI — spans col 2-3, row 1 */
.hp-tech__card--agentic {
  display: flex;
  flex-direction: column;
  grid-column: 2 / 4;
  grid-row: 1;
  background-image: url('assets/tech-bg-agentic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hp-tech__card--agentic .hp-tech__card-text {
  flex: 1;
  padding: var(--sp-40);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

/* MCP — hidden in 3-column layout */
.hp-tech__card--mcp {
  display: none;
}

/* Bottom-right: Voice AI — spans col 2-3, row 2 */
.hp-tech__card--voice {
  display: flex;
  flex-direction: column;
  grid-column: 2 / 4;
  grid-row: 2;
  background-image: url('assets/tech-bg-voice.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hp-tech__card--voice .hp-tech__card-text {
  flex: 1;
  padding: var(--sp-40);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: right;
  position: relative;
  z-index: 1;
}

/* Card content shared */
.hp-tech__card-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: block;
  line-height: 1.6;
}

.hp-tech__card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hp-tech__card-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.hp-tech__card--agentic .hp-tech__card-body,
.hp-tech__card--voice .hp-tech__card-body {
  max-width: 400px;
}


/* ── RIGHT EXPERTISE ── */
.hp-expertise {
  padding: var(--sp-160) 0;
}

.hp-expertise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-80);
  align-items: center;
}

.hp-cap-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
}

.hp-cap-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-24);
}

.hp-cap-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-cap-item__icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.hp-cap-item__label {
  font-family: var(--font-eyebrow);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  padding-top: 4px;
}

.hp-expertise__right {}

.hp-expertise__h2 {
  font-size: 56px;
  line-height: 1.08;
  margin: var(--sp-16) 0 var(--sp-24);
}

.hp-expertise__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}


/* ── PROCESS ── */
.hp-process {
  padding: var(--sp-160) 0;
}

.hp-process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-80);
}

.hp-process__left {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.hp-process__h2 {
  font-size: 56px;
  line-height: 1.1;
  margin-top: var(--sp-16);
}

.hp-process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-32);
}

.hp-process__step {
  display: flex;
  gap: var(--sp-24);
  align-items: flex-start;
  padding-bottom: 0;
}

.hp-process__step-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hp-process__step-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.hp-process__step-title {
  font-family: var(--font-action);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hp-process__step-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}


/* ── WHY KEUJI ── */
.hp-why {
  padding: var(--sp-160) 0;
}

.hp-why__h2 {
  font-size: 64px;
  line-height: 1.08;
  margin-bottom: var(--sp-64);
}

.hp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
}

.hp-why__card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
  padding-top: 0;
}

.hp-why__card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-why__card-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  stroke: white;
}

.hp-why__card-title {
  font-family: var(--font-action);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: white;
}

.hp-why__card-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}


/* ── CONTACT / FINAL CTA ── */
.hp-contact {
  position: relative;
  overflow: hidden;
  padding: var(--sp-160) 0;
}

.hp-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-80);
  align-items: start;
  width: 100%;
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 var(--content-px);
}

.hp-contact__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-24);
}

.hp-contact__h2 {
  font-size: 72px;
  line-height: 1.05;
}

.hp-contact__body {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.hp-contact__watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 690px;
  font-style: italic;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ── CONTACT FORM ── */
.hp-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 496px;
  max-width: 100%;
  margin-left: auto;
}

.hpf-row { /* plain block row */ }
.hpf-row--2col {
  display: grid;
  grid-template-columns: 240px 240px;
  gap: 16px;
  align-items: start;
}

.hpf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hpf-label {
  font-family: var(--font-action);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.hpf-input,
.hpf-select,
.hpf-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 200ms ease, background 200ms ease;
}

.hpf-input {
  height: 46px;
}

.hpf-input::placeholder,
.hpf-textarea::placeholder { color: rgba(255,255,255,0.28); }

.hpf-input:focus,
.hpf-select:focus,
.hpf-textarea:focus {
  outline: none;
  border-color: rgba(153,174,239,0.5);
  background: rgba(255,255,255,0.07);
}

.hpf-select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  height: 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.hpf-select:invalid { color: rgba(255,255,255,0.28); }
.hpf-select option { background: #1a1a1a; color: white; }

.hpf-textarea {
  resize: vertical;
  min-height: 100px;
}

.hpf-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  padding: 6px 0;
}

.hpf-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  user-select: none;
}

.hpf-radio-label input[type="radio"] {
  accent-color: var(--color-blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

/* Error state */
.hpf-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #ff6b6b;
  display: none;
}

.hpf-field.is-error > .hpf-input,
.hpf-field.is-error > .hpf-select,
.hpf-field.is-error > .hpf-textarea { border-color: rgba(255,100,100,0.7); }
.hpf-field.is-error .hpf-error { display: block; }

/* Success state */
.hp-contact__success { padding: var(--sp-64) 0; }

.hp-contact__success-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  margin-bottom: var(--sp-16);
}

.hp-contact__success-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 991px) {
  /* Verticals */
  .hp-verticals__h2 { font-size: 44px; }

  /* Hero — single column at large tablet, explicit 24px padding */
  .hp-hero__main {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
    padding: 0 24px var(--sp-48);
  }
  .hp-hero__logos { padding: 24px 24px 80px; gap: var(--sp-32); }
  .hp-hero__h1 { font-size: 60px; }
  .hp-hero__body { max-width: 560px; }

  .hp-stats__grid { gap: var(--sp-32); }
  .hp-stat__number { font-size: 72px; }

  .hp-approach__h2 { font-size: 40px; }
  .hp-gtm__h2,
  .hp-enterprise__h2,
  .hp-tech__h2,
  .hp-expertise__h2,
  .hp-why__h2 { font-size: 52px; }

  .hp-process__h2 { font-size: 44px; }

  .hp-tech__grid { grid-template-rows: 240px 240px; }
  .hp-tech__card-title { font-size: 34px; }

  /* Why Keuji — 2 columns at large tablet */
  .hp-why__grid { grid-template-columns: repeat(2, 1fr); }

  .hp-contact__h2 { font-size: 48px; }
  .hp-contact__watermark { font-size: 400px; }
  .hp-contact__inner { grid-template-columns: 1fr 1.4fr; gap: var(--sp-64); }
  .hpf-row--2col { grid-template-columns: 1fr; }
  .hp-contact__form .btn { width: 100%; }
}

@media (max-width: 767px) {
  /* Hero */
  .hp-hero__main {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
    padding: 0 24px var(--sp-48);
  }
  .hp-hero__body { max-width: 100%; }
  .hp-hero__h1 { font-size: 48px; }
  .hp-hero__logos { padding: 24px 24px 64px; grid-template-columns: 1fr; gap: var(--sp-16); }
  .hp-hero__logos-label { white-space: normal; }
  .hp-logos-marquee { width: 100%; }

  /* Verticals */
  .hp-verticals__h2 { font-size: 40px; }
  .hp-vertical-item__label { font-size: 18px; }
  .hp-verticals__grid { grid-template-columns: 1fr; gap: var(--sp-48); }

  /* Stats */
  .hp-stats__grid { grid-template-columns: 1fr; text-align: left; }
  .hp-stat__number { font-size: 64px; }
  .hp-stat__body { margin: 0; }

  /* Approach */
  .hp-approach__header { grid-template-columns: 1fr; gap: var(--sp-32); }
  .hp-approach__h2 { font-size: 40px; }

  /* ICP */
  .hp-icp__grid { grid-template-columns: 1fr; }

  /* GTM */
  .hp-gtm__grid { grid-template-columns: 1fr; }
  .hp-gtm__h2 { font-size: 40px; }

  .hp-enterprise__h2 { font-size: 40px; }

  /* Tech */
  .hp-tech__grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .hp-tech__img-card { display: none; }
  .hp-tech__card--agentic,
  .hp-tech__card--voice { grid-column: auto; grid-row: auto; }
  .hp-tech__card--agentic .hp-tech__card-text,
  .hp-tech__card--voice .hp-tech__card-text { padding: var(--sp-32); }
  .hp-tech__card--mcp {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    background-image: url('assets/tech-bg-tall.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hp-tech__card--mcp .hp-tech__card-text { padding: var(--sp-32); position: relative; z-index: 1; }
  .hp-tech__card-title { font-size: 32px; }
  .hp-tech__h2 { font-size: 40px; }

  /* Right Expertise */
  .hp-expertise__inner { grid-template-columns: 1fr; }
  .hp-expertise__h2 { font-size: 40px; }

  /* Process */
  .hp-process__inner { grid-template-columns: 1fr; }
  .hp-process__left { position: static; margin-bottom: var(--sp-48); }
  .hp-process__h2 { font-size: 36px; }

  /* Why Keuji */
  .hp-why__grid { grid-template-columns: 1fr; }
  .hp-why__h2 { font-size: 40px; }

  /* Contact */
  .hp-contact__h2 { font-size: 40px; }
  .hp-contact__inner { grid-template-columns: 1fr; gap: var(--sp-48); }
  .hp-contact__form { width: 100%; }
  .hp-contact__left .btn { width: 100%; }
  .hp-contact__watermark { font-size: 220px; }
}

@media (max-width: 479px) {
  .hp-verticals__h2 { font-size: 32px; }
  .hp-vertical-item__label { font-size: 16px; }
  .hp-vertical-item { gap: var(--sp-16); padding: var(--sp-16) 0; }

  .hp-hero__main { padding: 0 16px var(--sp-48); }
  .hp-hero__logos { padding: 20px 16px 56px; }
  .hp-hero__h1 { font-size: 40px; }
  .hp-stat__number { font-size: 56px; }
  .hp-approach__h2,
  .hp-gtm__h2,
  .hp-enterprise__h2,
  .hp-expertise__h2,
  .hp-why__h2,
  .hp-tech__h2 { font-size: 32px; }
  .hp-process__h2 { font-size: 30px; }
  .hp-contact__h2 { font-size: 32px; }
  .hp-contact__watermark { font-size: 140px; }
  .hpf-radio-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (hover: none) {
  .hp-icp__card:hover::after,
  .hp-gtm__card:hover::after,
  .hp-tech__card:hover::after { opacity: 0; }
}
