:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --surface-dark: #1f232d;
  --text: #161c26;
  --muted: #6e7684;
  --line: rgba(22, 28, 38, 0.08);
  --accent: #f47f2c;
  --accent-dark: #db6821;
  --green: #55b947;
  --shadow: 0 24px 60px rgba(28, 34, 43, 0.08);
  --container: min(1180px, calc(100vw - 40px));
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(244, 127, 44, 0.12), transparent 18%),
    linear-gradient(180deg, #f6f2ec 0%, #f7f5f1 220px, #ffffff 220px, #f8f6f2 100%);
}

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

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

.page-shell {
  overflow: clip;
}

.topbar {
  padding: 0 0 18px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.topbar-row {
  width: var(--container);
  margin: 0 auto;
  min-height: 84px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255, 250, 245, 0.82);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  box-shadow: 0 12px 30px rgba(22, 28, 38, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(244, 127, 44, 0.1), rgba(22, 28, 38, 0.06));
  border: 1px solid rgba(22, 28, 38, 0.08);
  flex: none;
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.footer-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
}

.brand-copy span {
  font-size: 0.77rem;
  color: var(--muted);
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer-column a:hover {
  color: var(--accent-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.nav-cta {
  min-width: 116px;
  padding: 13px 22px;
  border: 1px solid rgba(22, 28, 38, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

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

.hero {
  width: 100%;
  margin: 0;
  padding-top: 16px;
}

.hero-media-wrap {
  width: 100%;
  padding: 0;
}

.hero-media {
  position: relative;
  min-height: 650px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 23, 30, 0.12), rgba(17, 23, 30, 0.62)),
    url("./assets/images/hero.png") center/cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.26;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.26), rgba(10, 12, 18, 0.56));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 134px 28px 158px;
  text-align: center;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow.accent {
  color: #83ba63;
}

.hero h1 {
  margin: 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 9.8ch;
}

.hero-subtitle {
  max-width: 620px;
  margin: 20px auto 0;
  line-height: 1.8;
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.88);
}

.button {
  cursor: pointer;
  padding: 14px 26px;
  border: 1px solid transparent;
}

.button-primary {
  margin-top: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 16px 28px rgba(244, 127, 44, 0.28);
}

.button-primary:hover {
  box-shadow: 0 22px 34px rgba(244, 127, 44, 0.35);
}

.button-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 28px rgba(244, 127, 44, 0.2);
}

.button-light {
  color: var(--text);
  background: #fff;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.hero-cards {
  margin: -62px auto 0;
  width: min(980px, calc(100% - 28px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  z-index: 2;
}

.hero-card,
.reason-card,
.process-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.hero-card {
  min-height: 174px;
  padding: 24px 20px;
  background: var(--surface);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-card p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-card-dot {
  width: 18px;
  height: 18px;
  margin-bottom: 16px;
  display: inline-flex;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(85, 185, 71, 0.12);
}

.hero-card:hover,
.reason-card:hover,
.process-card:hover,
.split-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(22, 28, 38, 0.12);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding-top: 112px;
}

.intro-grid,
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
}

.intro-copy h2,
.section-head h2,
.feature-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.intro-copy p,
.section-lead,
.reason-card p,
.process-card p,
.feature-copy p,
.footer-brand p,
.footer-column a,
.copyright {
  line-height: 1.82;
  color: var(--muted);
}

.intro-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
}

.intro-visual {
  position: relative;
  padding: 28px 0 0 52px;
}

.intro-visual img,
.feature-media img,
.highlight-tile img {
  width: 100%;
  height: auto;
}

.accent-orbit {
  position: absolute;
  top: 0;
  right: -16px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--accent);
  z-index: -1;
}

.info-banner {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 24px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(22, 28, 38, 0.08);
}

.info-banner img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.info-banner-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.info-banner-copy p,
.info-banner-copy span {
  margin: 0;
}

.info-banner-copy a {
  color: var(--accent-dark);
  font-weight: 700;
}

.section-head {
  position: relative;
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.backword {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 1;
  color: rgba(22, 28, 38, 0.04);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}

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

.reason-card {
  min-height: 188px;
  padding: 26px 22px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(22, 28, 38, 0.06);
}

.reason-card-featured {
  box-shadow: 0 22px 44px rgba(22, 28, 38, 0.1);
}

.reason-card h3,
.process-card h3,
.split-panel h2,
.highlight-overlay h3,
.footer-column h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
}

.split-panels {
  width: 100%;
  margin-top: 112px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-panel {
  min-height: 360px;
  padding: 48px;
  color: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.split-panel h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.12;
  max-width: 14ch;
}

.split-panel-accent {
  background:
    linear-gradient(135deg, rgba(244, 127, 44, 0.88), rgba(244, 127, 44, 0.62)),
    url("./assets/images/split-private.png") center/cover no-repeat;
}

.split-panel-dark {
  background:
    linear-gradient(135deg, rgba(31, 35, 45, 0.88), rgba(31, 35, 45, 0.62)),
    url("./assets/images/split-corporate.png") center/cover no-repeat;
}

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

.process-card {
  min-height: 264px;
  padding: 24px 24px 0;
  position: relative;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(22, 28, 38, 0.06);
}

.process-card h3 {
  font-size: 1.5rem;
  line-height: 1.18;
}

.step {
  display: inline-block;
  margin-bottom: 18px;
  color: #83ba63;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-block {
  padding-top: 120px;
}

.feature-media img {
  box-shadow: var(--shadow);
}

.feature-copy {
  position: relative;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.feature-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-family: "Space Grotesk", sans-serif;
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #f3efe8;
}

.highlight-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.highlight-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(16, 20, 28, 0.8));
  color: #fff;
}

.highlight-overlay.plain {
  background: none;
  color: #fff;
  inset: auto 0 18px;
}

.highlight-overlay span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.contact-panel {
  padding: 34px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(135deg, #63c148, #51b73d),
    url("./assets/images/detail.png") center/cover no-repeat;
  color: #fff;
}

.contact-panel h2 {
  max-width: 680px;
}

.footer {
  margin-top: 86px;
  background: #20242d;
  color: #fff;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-mark {
  width: 54px;
  height: 54px;
}

.footer-brand p,
.footer-column a,
.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 28px;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-cards,
  .reasons-grid,
  .highlight-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-grid,
  .split-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 24px, 1000px);
  }

  .topbar-row {
    flex-wrap: wrap;
    justify-content: center;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-media {
    min-height: 560px;
    border-radius: 0;
  }

  .hero-content {
    padding: 96px 18px 126px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 16vw, 4rem);
    max-width: 100%;
  }

  .hero-cards,
  .reasons-grid,
  .highlight-row,
  .feature-stats {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    margin-top: -42px;
    width: calc(100% - 12px);
  }

  .section {
    padding-top: 78px;
  }

  .intro-visual {
    padding: 24px 0 0;
  }

  .accent-orbit {
    width: 130px;
    height: 130px;
    right: 0;
  }

  .info-banner {
    grid-template-columns: 1fr;
  }

  .split-panel,
  .contact-panel {
    padding: 28px 22px;
  }

  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
