/* ════════════════════════════════════════════════════
   Travel Hack 2.0 — Corporate "For Business" redesign
   Homepage-grade: duotone team hero, stat band, photo
   offering cards, marquee, CTA band. Token-based, both
   themes, ≥320px. JS handles reveals — NO persistent
   opacity:0 here, so content is visible without JS.
   ════════════════════════════════════════════════════ */

.corp-main {
  max-width: 1100px;
}

/* ── Duotone team hero ───────────────────────────── */
.corp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  min-height: clamp(420px, 60vh, 620px);
  display: flex;
  align-items: flex-end;
  color: var(--hero-text);
  margin-bottom: clamp(28px, 5vh, 48px);
}
.corp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--corp-hero-img);
  background-size: cover;
  background-position: center 68%;
}
.corp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(31, 100, 128, 0.14), rgba(31, 100, 128, 0.14)),
    linear-gradient(102deg, rgba(10, 15, 30, 0.74) 0%, rgba(10, 15, 30, 0.40) 32%, rgba(10, 15, 30, 0.06) 60%, rgba(10, 15, 30, 0) 100%),
    linear-gradient(rgba(10, 15, 30, 0) 50%, rgba(10, 15, 30, 0.56));
}

.corp-hero-inner {
  padding: clamp(24px, 4.5vw, 56px);
  max-width: 760px;
}
.corp-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #9FD0E4;
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.corp-hero-eyebrow .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(253, 172, 71, 0.55);
}
.corp-hero h1 {
  font-weight: 500;
  font-size: clamp(40px, 6.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--hero-text);
}
.corp-hero h1 em {
  color: var(--amber);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.corp-hero-lead {
  color: var(--hero-dim);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 0 28px;
}
.corp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.corp-hero-cta .btn-ghost { color: var(--hero-text); }

/* ── Proof / stat band ───────────────────────────── */
.corp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 4vh, 40px) clamp(8px, 2vw, 24px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 clamp(48px, 8vh, 80px);
}
.corp-stat {
  flex: 1 1 180px;
  min-width: 150px;
}
.corp-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--text);
  display: inline-block;
}
.corp-stat-unit {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--amber-text);
  margin-left: 2px;
}
.corp-stat-label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: var(--text-dim);
  max-width: 22ch;
}

/* ── Section heads (eyebrow + serif-accent title) ── */
.corp-section-head {
  margin-bottom: clamp(28px, 5vh, 44px);
}
.corp-eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.corp-block-title {
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.corp-block-title em {
  color: var(--amber-text);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ── Photo-topped offering cards ─────────────────── */
.corp-offer-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.corp-offer-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  isolation: isolate;
}
.corp-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.corp-offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(31, 100, 128, 0.30), rgba(10, 15, 30, 0.18));
  mix-blend-mode: multiply;
}
.corp-offer-card .corp-offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin: 0;
}
.corp-offer-text {
  padding: 22px 24px 26px;
}
.corp-offer-card .corp-pain-problem {
  font-size: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .corp-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(19, 35, 61, 0.16);
  }
}
:root[data-theme="night"] .corp-offer-card:hover {
  box-shadow: 0 0 0 1px var(--teal), 0 18px 44px rgba(0, 0, 0, 0.45);
}

/* ── What-we-handle marquee ──────────────────────── */
.corp-marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-2);
  margin: clamp(40px, 6vh, 72px) calc(var(--gutter) * -1);
}
.corp-marquee-track {
  display: inline-flex;
  will-change: transform;
}
.corp-marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 40px);
  color: var(--text-dim);
  padding-left: 0.4em;
}

/* ── Sample callout with photo visual ────────────── */
.corp-sample-callout {
  flex-wrap: nowrap;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.corp-sample-visual {
  flex: 0 0 38%;
  max-width: 320px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 200px;
}
.corp-sample-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.corp-sample-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(31, 100, 128, 0.34), rgba(10, 15, 30, 0.20));
  mix-blend-mode: multiply;
}
.corp-sample-inner {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
}

@media (max-width: 640px) {
  .corp-sample-callout { flex-wrap: wrap; }
  .corp-sample-visual {
    flex-basis: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

/* ── Final duotone CTA band ──────────────────────── */
.corp-cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  margin: clamp(48px, 8vh, 80px) 0 0;
  padding: clamp(40px, 7vw, 72px) clamp(24px, 5vw, 56px);
  text-align: center;
  color: var(--hero-text);
}
.corp-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--corp-hero-img);
  background-size: cover;
  background-position: center 35%;
}
.corp-cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(10, 15, 30, 0.90), rgba(31, 100, 128, 0.66) 60%, rgba(10, 15, 30, 0.86));
}
.corp-cta-band-title {
  font-weight: 500;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--hero-text);
}
.corp-cta-band-title em {
  color: var(--amber);
  font-family: var(--font-serif);
  font-style: italic;
}
.corp-cta-band-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.corp-cta-band-row .btn-ghost { color: var(--hero-text); }
.corp-cta-band .whatsapp-line {
  justify-content: center;
  margin-top: 22px;
  color: var(--hero-dim);
}
.corp-cta-band .whatsapp-line a { color: #9FD0E4; }

/* ── Section rhythm ──────────────────────────────── */
.corp-offer-section,
.corp-hiw-section,
.corp-pricing-section {
  margin: clamp(48px, 8vh, 80px) 0;
}

/* ── Narrow screens ──────────────────────────────── */
@media (max-width: 380px) {
  .corp-stat { flex-basis: 100%; }
}
