:root {
  --orange: #f05a28;
  --orange-deep: #d94818;
  --orange-soft: #ff9a5c;
  --ink: #1e2a44;
  --ink-soft: #4a5568;
  --muted: #6b7280;
  --line: rgba(30, 42, 68, 0.1);
  --paper: #f7f4ef;
  --white: #ffffff;
  --navy: #243456;
  --navy-deep: #1a2438;
  --sky: #e8f3f4;
  --shadow: 0 24px 60px rgba(30, 42, 68, 0.12);
  --radius: 16px;
  --max: 1160px;
  --font: "Outfit", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(240, 90, 40, 0.1), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(36, 52, 86, 0.07), transparent 50%),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 42%, #f3efe8 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--font);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ===== First screen: top bars + hero ===== */
.site-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}

.topbar {
  background: transparent;
  color: #fff;
}

.topbar-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 40px;
  width: auto;
  max-width: min(190px, 48vw);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switch {
  display: inline-flex;
  padding: 0.15rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang-btn.is-active {
  background: var(--orange);
  color: #fff;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  padding: 0 11px;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(240, 90, 40, 0.92);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  background: transparent;
  color: #fff;
  border-bottom: 0;
}

.main-nav-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.main-nav-links {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem 1.15rem;
  flex-wrap: wrap;
}

.main-nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.1rem 0.55rem;
  border-radius: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: color 0.25s ease;
}

.main-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav-links a:hover,
.main-nav-links a.is-active {
  color: #fff;
  background: transparent;
}

.main-nav-links a:hover::after,
.main-nav-links a.is-active::after {
  transform: scaleX(1);
}

/* Mobile menu — height + fade + staggered links (no display:none snap) */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(10, 16, 28, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: relative;
  z-index: 61;
  transition:
    grid-template-rows 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    visibility 0.35s;
}

.mobile-nav-panel {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 0.75rem;
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(18, 26, 42, 0.96), rgba(26, 36, 56, 0.94));
  border-radius: 0 0 16px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
}

.mobile-nav.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav.is-open .mobile-nav-panel {
  padding: 0.55rem 0.75rem 1rem;
}

.mobile-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open a:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav.is-open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: 0.14s; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: 0.18s; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: 0.22s; }
.mobile-nav.is-open a:nth-child(6) { transition-delay: 0.26s; }

.mobile-nav:not(.is-open) a {
  transition-delay: 0s;
  transition-duration: 0.22s;
}

.mobile-nav a:hover,
.mobile-nav a:active,
.mobile-nav a.is-active {
  background: rgba(240, 90, 40, 0.9);
  color: #fff;
}

.site-header .mobile-nav-panel {
  width: min(100% - 1.5rem, var(--max));
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

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

  .mobile-nav,
  .nav-backdrop {
    display: none !important;
  }
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.site-top {
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-top.is-scrolled,
.site-top.menu-open {
  background: rgba(18, 26, 42, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* Hero screen */
.hero-screen {
  position: relative;
  display: flex;
  align-items: stretch;
  color: #fff;
  overflow: hidden;
  padding-top: 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.12) 28%, rgba(40, 24, 16, 0.5) 68%, rgba(55, 32, 20, 0.82) 100%);
}

.hero-screen-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4.5rem 0 1.25rem;
  gap: 0;
}

.hero-content {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  padding-bottom: 0.25rem;
}

.hero-content h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.85rem);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 1.1rem;
}

.hero-accent {
  color: #ff7a1a;
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
}

.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 0.22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' fill='none'%3E%3Cpath d='M2 8c20-6 40 4 60-2s38-4 56 2' stroke='%23ff7a1a' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  opacity: 0.95;
  max-width: 46rem;
  margin: 0 auto;
}

.hero-cta-block {
  width: 100%;
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
  align-items: stretch;
  padding: 0.75rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero-cta-copy {
  width: 100%;
  margin: 0;
  text-align: left;
  color: #fff;
}

.hero-cta-copy h2 {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.28rem;
}

.hero-cta-copy .subtitle {
  font-size: clamp(0.8rem, 1.35vw, 0.9rem);
  opacity: 0.92;
  margin-bottom: 0.25rem;
}

.hero-cta-copy .desc {
  font-size: clamp(0.74rem, 1.15vw, 0.82rem);
  opacity: 0.8;
  margin-bottom: 0.55rem;
  max-width: 36rem;
}

.hero-cta-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.55rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-cta-panel .cta-stats {
  gap: 0.45rem;
}

.hero-cta-panel .cta-stat {
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-cta-panel .cta-stat.wide {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0.06));
  border-color: rgba(16, 185, 129, 0.22);
}

.hero-cta-panel .cta-stat .num {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.08rem;
  line-height: 1.1;
}

.hero-cta-panel .cta-stat .label {
  opacity: 0.85;
  font-size: 0.72rem;
}

.hero-cta-panel .mini-bars {
  margin-top: 0.45rem;
  height: 56px;
  border-radius: 10px;
  padding: 0.45rem;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 760px) {
  .hero-screen-inner {
    padding: 5.5rem 0 1.5rem;
    gap: 0;
    justify-content: flex-start;
  }

  .hero-cta-block {
    margin-top: 2.75rem;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.85rem;
    padding: 0.85rem;
  }

  .hero-cta-panel .cta-stat .num {
    font-size: 1.3rem;
  }

  .hero-cta-panel .mini-bars {
    height: 68px;
  }
}

/* Subpage compact header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.site-header .mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}

.site-header .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.site-header .nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
}

.site-header .nav a:hover {
  background: rgba(240, 90, 40, 0.9);
  color: #fff;
}

.site-header .nav a.is-active {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--orange);
}

.site-header .header-tools .lang-switch {
  background: rgba(255, 255, 255, 0.12);
}

.site-header .header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 960px) {
  .site-header .nav {
    display: flex;
  }
}

/* Feature strip */
.feature-strip {
  padding: 1.25rem 0;
  border-bottom: 0;
  background: transparent;
}

.story-section .feature-strip.story-features {
  padding: 0 0 0.35rem;
  margin-bottom: 0.25rem;
}

.story-section .story-features .strip-item {
  padding: 0.65rem 0.5rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

@media (min-width: 700px) {
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .strip-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0.75rem;
}

.strip-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240, 90, 40, 0.12);
  color: var(--orange);
  flex-shrink: 0;
}

.strip-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.strip-item p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Brand story visual banner — peach shell + person in notch */
.story-section {
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  overflow: visible;
}

.story-banner {
  position: relative;
  max-width: 100%;
}

.story-person {
  position: absolute;
  right: clamp(1.75rem, 4.5vw, 3.75rem);
  top: clamp(0.5rem, 1.5vw, 1.25rem);
  z-index: 0;
  width: clamp(190px, 22vw, 280px);
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 24px rgba(30, 42, 68, 0.18));
}

.story-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: clamp(3.25rem, 6vw, 4.75rem);
  min-height: clamp(300px, 44vw, 460px);
  overflow: hidden; /* keep copy inside peach silhouette */
}

.story-shell-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(240, 90, 40, 0.12));
  pointer-events: none;
}

.story-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding:
    clamp(1.55rem, 3.6vw, 2.5rem)
    clamp(1.5rem, 3.8vw, 2.6rem)
    clamp(1.7rem, 3.6vw, 2.6rem)
    clamp(1.5rem, 3.8vw, 2.6rem);
}

/* Forces text to wrap around the notch, then fill full orange width below */
.story-notch-gap {
  float: right;
  width: clamp(200px, 30%, 340px);
  height: clamp(150px, 26vw, 230px);
  shape-outside: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 58%);
  shape-margin: 0.65rem;
  margin: 0 0 0.35rem 0.75rem;
  pointer-events: none;
}

.story-title {
  margin: 0 0 clamp(0.9rem, 2vw, 1.25rem);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.story-body p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 1.7;
}

.story-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .story-shell {
    margin-top: 3rem;
    min-height: 0;
    overflow: visible;
    border-radius: 24px;
    background: linear-gradient(160deg, #fff6f0 0%, #ffe4d4 55%, #ffd2ba 100%);
    box-shadow: 0 18px 40px rgba(240, 90, 40, 0.12);
  }

  .story-shell-shape {
    display: none;
  }

  .story-person {
    width: 130px;
    right: 0.5rem;
    top: 0.2rem;
  }

  .story-notch-gap {
    width: 7rem;
    height: 7.5rem;
    shape-outside: inset(0);
    margin: 0 0 0.25rem 0.5rem;
  }

  .story-inner {
    padding: 1.35rem 1.15rem 1.5rem;
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

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

[data-reveal-x="left"] {
  transform: translateX(-36px);
}

[data-reveal-x="right"] {
  transform: translateX(36px);
}

[data-reveal-x].is-visible {
  transform: translateX(0);
}

.hero-content h1,
.hero-content p,
.hero-cta-block {
  animation: hero-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content p {
  animation-delay: 0.12s;
}

.hero-cta-block {
  animation-delay: 0.22s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.strip-item,
.why-card,
.benefit-card,
.howto-card,
.case-card,
.faq-item {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease,
    filter 0.3s ease;
}

/* Why section */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

#why.section {
  padding-top: 1.25rem;
  padding-bottom: 0.35rem;
}

.howto.section {
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
}

.marquee-section.section {
  padding-top: 0.75rem;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  position: relative;
  display: inline-block;
  margin-bottom: 0.85rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--orange);
  opacity: 0.7;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-inline: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(30, 42, 68, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(30, 42, 68, 0.14);
}

.why-visual {
  position: relative;
  height: 168px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #fff;
}

.why-visual.g1 { background: linear-gradient(145deg, #ffb489 0%, #f28b5c 100%); }
.why-visual.g2 { background: linear-gradient(145deg, #7edfd4 0%, #4db8ab 100%); }
.why-visual.g3 { background: linear-gradient(145deg, #9aa8ff 0%, #6f7de8 100%); }
.why-visual.g4 { background: linear-gradient(145deg, #ffa3ae 0%, #f0717f 100%); }
.why-visual.g5 { background: linear-gradient(145deg, #ffd98a 0%, #f0b45a 100%); }
.why-visual.g6 { background: linear-gradient(145deg, #8ec8ff 0%, #5aa0ef 100%); }

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--orange);
}

.why-card:nth-child(1) .why-icon-wrap { color: #e86a35; }
.why-card:nth-child(2) .why-icon-wrap { color: #2f9e92; }
.why-card:nth-child(3) .why-icon-wrap { color: #5b6ad6; }
.why-card:nth-child(4) .why-icon-wrap { color: #e25566; }
.why-card:nth-child(5) .why-icon-wrap { color: #d9922e; }
.why-card:nth-child(6) .why-icon-wrap { color: #3f8fd8; }

.why-icon-wrap svg {
  width: 28px;
  height: 28px;
}

/* How to start — ticket cards */
.howto {
  background: var(--paper);
}

.howto .section-head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.howto .section-head h2::after {
  display: none;
}

.howto-track {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.howto-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 1.35rem 1.25rem 1rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.howto-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 24px rgba(30, 42, 68, 0.1));
}

.howto-card--start {
  background-image: url("../image/dropshipping-platform-howto-bg-left.webp");
}

.howto-card--mid {
  background-image: url("../image/dropshipping-platform-howto-bg.webp");
}

.howto-card--end {
  background-image: url("../image/dropshipping-platform-howto-bg-right.webp");
}

.howto-badge {
  display: inline-flex;
  align-self: flex-start;
  background: #1e2a44;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
}

.howto-text {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  max-width: 14rem;
  margin-bottom: auto;
}

.howto-illust {
  width: min(180px, 72%);
  height: auto;
  margin: 0.75rem auto 0.25rem;
  display: block;
  pointer-events: none;
}

.howto-arrow {
  display: none;
  color: #9aa3b2;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .howto-track {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
  }

  .howto-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 340px;
    padding: 1.5rem 1.35rem 1.1rem;
  }

  .howto-arrow {
    display: grid;
    place-items: center;
    width: 1.6rem;
    margin-top: -0.25rem;
  }

  .howto-illust {
    width: min(168px, 88%);
  }
}

@media (min-width: 1100px) {
  .howto-card {
    min-height: 360px;
  }

  .howto-text {
    font-size: 1.05rem;
  }
}

/* Dual-row image marquee */
.marquee-section {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--paper);
}

.marquee-section .section-head h2::after {
  display: none;
}

.marquee-section .section-head {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.marquee {
  display: grid;
  gap: 1rem;
}

.marquee-row {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  will-change: transform;
}

.marquee-track img {
  width: clamp(200px, 24vw, 280px);
  height: clamp(110px, 12vw, 140px);
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  background: #e8e4dc;
  box-shadow: 0 8px 22px rgba(30, 42, 68, 0.08);
}

.marquee-track--left {
  animation: marquee-left 90s linear infinite;
}

.marquee-track--right {
  animation: marquee-right 95s linear infinite;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track--left,
  .marquee-track--right {
    animation: none;
    transform: translateX(0);
  }
}

.why-visual h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.why-card > p {
  padding: 1.2rem 1.35rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pill-row {
  margin-top: 2.5rem;
  margin-bottom: 0;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.1);
  color: var(--orange-deep);
  font-weight: 600;
  overflow: hidden;
}

.pill span {
  padding: 0.65rem 1rem;
}

.pill strong {
  background: var(--orange);
  color: #fff;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
}

/* Advantages */
.benefits {
  background: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  padding: 1.35rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #fffaf6, #fff);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30, 42, 68, 0.1);
}

.benefit-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
}

.benefit-ico {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(240, 90, 40, 0.12);
  color: var(--orange);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.benefit-card:hover h3 {
  color: var(--orange);
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

.stats-grid {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  background: linear-gradient(160deg, #fff7f2, #fff);
}

.stat-value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.disclaimer {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Cases / growth */
.growth {
  background: rgba(232, 243, 244, 0.45);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(30, 42, 68, 0.06);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-card:hover,
.case-card.is-active {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(30, 42, 68, 0.12);
  border-color: var(--orange);
}

.case-media {
  position: relative;
  height: 180px;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 36, 56, 0.78), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
}

.case-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--orange);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.35rem;
}

.case-media h3 {
  font-size: 1.15rem;
}

.case-body {
  padding: 1rem 1.1rem 1.25rem;
}

.case-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
}

.case-detail {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 14px 36px rgba(30, 42, 68, 0.08);
}

.case-detail-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .case-detail-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.case-detail h3 {
  color: var(--orange-deep);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.case-detail > .lead,
.case-detail-grid .lead {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.detail-block {
  margin-bottom: 1.25rem;
}

.detail-block h4 {
  color: var(--orange-deep);
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.detail-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-block li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.detail-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .result-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.result-card {
  background: #fff7f2;
  border: 1px solid rgba(240, 90, 40, 0.15);
  border-radius: 12px;
  padding: 1rem;
}

.result-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.result-card strong {
  font-size: 1.35rem;
  color: var(--orange-deep);
}

.bars {
  margin-top: 1rem;
  background: #fff7f2;
  border: 1px solid rgba(240, 90, 40, 0.15);
  border-radius: 12px;
  padding: 1rem;
}

.bars h4 {
  margin: 0 0 0.85rem;
  color: var(--orange-deep);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 140px;
  padding: 0 0.5rem;
  border-bottom: 1px solid rgba(240, 90, 40, 0.2);
}

.bar {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #ff8a4c, var(--orange));
  transition: height 0.6s ease;
}

.bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-deep);
  padding: 0 0.5rem;
}

.cta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.02rem;
  opacity: 0.92;
}

.hero-cta-copy .cta-list {
  gap: 0.32rem;
}

.hero-cta-copy .cta-list li {
  font-size: 0.78rem;
  gap: 0.5rem;
}

.hero-cta-copy .check {
  width: 16px;
  height: 16px;
  margin-top: 0.05rem;
}

.hero-cta-copy .check svg {
  width: 9px;
  height: 9px;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #10b981;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cta-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.cta-stat {
  padding: 1.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease;
}

.cta-stat:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cta-stat.wide {
  grid-column: 1 / -1;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.08));
  border-color: rgba(16, 185, 129, 0.28);
}

.cta-stat .num {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.cta-stat .label {
  opacity: 0.8;
  font-size: 0.9rem;
}

.mini-bars {
  margin-top: 1rem;
  height: 150px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
}

.mini-bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #34d399, #10b981);
  opacity: 0.85;
  transition: height 0.5s ease;
}

.mini-bars:hover span:nth-child(1) { height: 45% !important; }
.mini-bars:hover span:nth-child(2) { height: 60% !important; }
.mini-bars:hover span:nth-child(3) { height: 78% !important; }
.mini-bars:hover span:nth-child(4) { height: 96% !important; }

/* FAQ */
.faq-section {
  background: #f7f8fa;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.faq-section .section-head {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.faq-section .section-head h2::after {
  display: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open {
  border-color: rgba(240, 90, 40, 0.35);
  box-shadow: 0 8px 22px rgba(30, 42, 68, 0.06);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.faq-item.is-open .faq-trigger {
  color: var(--orange);
}

.faq-chevron {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: inherit;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 1.1rem;
}

/* Footer (matched to cjldy) */
.site-footer {
  padding: clamp(1.6rem, 4.5vw, 3rem) clamp(1.2rem, 4vw, 2.5rem) clamp(2.2rem, 5vw, 3rem);
  background: #2d3b52;
}

.footer-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.footer-subscribe {
  margin-bottom: 1.4rem;
}

.footer-subscribe-title {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 500;
}

.footer-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
}

.footer-form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 1.2rem;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #2d3b52;
  font-size: 0.95rem;
}

.footer-form input::placeholder {
  color: #9aa3b2;
}

.footer-form button {
  flex-shrink: 0;
  height: 46px;
  padding: 0 1.6rem;
  border: none;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.footer-form button:hover {
  background: #ff7a2f;
}

.subscribe-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100000;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(255, 106, 36, 0.35);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.subscribe-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}



.footer-social {
  margin-bottom: 2rem;
}

.footer-social p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-social-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social-icons a:hover {
  color: var(--orange);
}

.footer-divider {
  width: min(100%, 520px);
  height: 1px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.18);
}

.footer-brand {
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  width: 210px;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .footer-brand img {
    width: 170px;
  }

  .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-form button {
    width: 100%;
  }

  .footer-links {
    justify-content: center;
  }
}

.copyright {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 100020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
}

.policy-modal-dialog {
  position: relative;
  width: min(1040px, 100%);
  height: min(86vh, 760px);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.policy-modal.is-open .policy-modal-dialog {
  transform: scale(1);
}

.policy-modal-head {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem 0 1.2rem;
  border-bottom: 1px solid rgba(30, 42, 68, 0.1);
  background: #fff;
}

.policy-modal-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.policy-modal-close {
  border: 0;
  background: transparent;
  color: #6b7280;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.policy-modal-close:hover {
  color: var(--orange);
  background: rgba(240, 90, 40, 0.08);
}

.policy-modal-content {
  height: calc(100% - 56px);
  overflow: auto;
  padding: 1.2rem 1.25rem 1.4rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.policy-section {
  display: none;
}

.policy-section.is-active {
  display: block;
}

.policy-section p {
  margin: 0 0 0.9rem;
}

.policy-section h4 {
  margin: 1rem 0 0.45rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.policy-section h4:first-child {
  margin-top: 0;
}

.policy-subhead {
  font-weight: 700;
  color: var(--ink);
}

.policy-list {
  margin: 0 0 0.9rem;
  padding-left: 1.2rem;
}

.contact-modal-desc {
  color: #4b5563;
}

.contact-modal-form input,
.contact-modal-form textarea {
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(30, 42, 68, 0.2);
  border-radius: 10px;
  font: 500 0.92rem/1.35 var(--font);
  color: var(--ink);
}

.contact-modal-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-modal-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.contact-send-btn,
.contact-close-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font: 600 0.9rem/1 var(--font);
  cursor: pointer;
}

.contact-send-btn {
  background: var(--orange);
  color: #fff;
}

.contact-close-btn {
  background: rgba(30, 42, 68, 0.12);
  color: var(--ink);
}

.contact-success-tip {
  display: none;
  margin: 0.75rem 0 0;
  color: #16a34a;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 900px;
  margin: auto;
  background: #2d3b52;
  color: rgba(255, 255, 255, 0.92);
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font);
  z-index: 99999;
  display: none;
  box-shadow: 0 18px 50px rgba(30, 42, 68, 0.28);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-text {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-buttons {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font: 600 0.88rem/1.2 var(--font);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn.accept {
  background: var(--orange);
  color: #fff;
}

.cookie-btn.accept:hover {
  background: var(--orange-deep);
}

.cookie-btn.reject {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cookie-btn.settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-btn.settings:hover {
  border-color: var(--orange);
}

/* ===== About & Conduct pages (from cjldy) ===== */
.about-page {
  background: #fff;
}

.about-banner {
  position: relative;
  min-height: clamp(360px, 52vw, 560px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a2333;
}

.about-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.42) 55%, rgba(15, 23, 42, 0.2) 100%);
}

.about-banner-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  max-width: 720px;
  color: #fff;
}

.about-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-banner .about-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.about-banner-text {
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  max-width: 46rem;
}

.about-layout {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  display: grid;
  gap: clamp(2.2rem, 5vw, 4rem);
}

.about-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
}

.about-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.about-row:nth-child(even) .about-media {
  order: 2;
}

.about-row:nth-child(even) .about-copy {
  order: 1;
}

.about-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(30, 42, 68, 0.12);
  background: #f4f6f9;
}

.about-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--ink);
}

.about-copy p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-quote {
  margin-top: 1.1rem !important;
  padding: 0.95rem 1.05rem;
  border-left: 4px solid var(--orange);
  background: rgba(240, 90, 40, 0.06);
  border-radius: 0 12px 12px 0;
  color: var(--ink) !important;
  font-weight: 600;
}

@media (max-width: 960px) {
  .about-row,
  .about-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .about-row:nth-child(even) .about-media,
  .about-row:nth-child(even) .about-copy {
    order: unset;
  }

  .about-banner-content,
  .about-layout,
  .about-copy,
  .about-media {
    text-align: center;
  }

  .about-quote {
    text-align: left;
  }

  .about-media {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .about-banner {
    min-height: 320px;
  }

  .about-banner-text {
    font-size: 1rem;
  }

  .about-copy h2 {
    font-size: 1.45rem;
  }
}

/* Code of Conduct page */
.conduct-page {
  background: #fff;
}

.conduct-hero {
  position: relative;
  min-height: clamp(320px, 42vw, 420px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a2333;
}

.conduct-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.conduct-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.35) 100%);
}

.conduct-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  max-width: 760px;
  color: #fff;
  font-family: "DM Sans", "Outfit", system-ui, sans-serif;
}

.conduct-hero-content h1 {
  margin: 0 0 0.75rem;
  font-family: "DM Sans", "Outfit", system-ui, sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.conduct-hero-content p {
  margin: 0;
  font-family: "DM Sans", "Outfit", system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.conduct-body {
  padding: clamp(2.4rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  background: #fff;
}

.conduct-wrap {
  width: min(1040px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
}

.conduct-panel {
  background: #f7f8fb;
  border: 1px solid rgba(30, 42, 68, 0.08);
  border-radius: 22px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 10px 28px rgba(30, 42, 68, 0.05);
}

.conduct-block h2,
.conduct-panel h2,
.conduct-commitment h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.conduct-panel > p,
.conduct-card p,
.conduct-list p,
.conduct-commitment p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.conduct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.conduct-card {
  background: #fff;
  border: 1px solid rgba(30, 42, 68, 0.08);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 20px rgba(30, 42, 68, 0.04);
}

.conduct-card h3,
.conduct-list h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1.08rem;
}

.conduct-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.6rem);
}

.conduct-list {
  display: grid;
  gap: 1.05rem;
}

.conduct-commitment {
  background: var(--orange);
  color: #fff;
  border-radius: 22px;
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: 0 16px 36px rgba(240, 90, 40, 0.28);
}

.conduct-commitment h2,
.conduct-commitment p {
  color: #fff;
}

.conduct-commitment p {
  opacity: 0.94;
  font-size: 1.08rem;
}

@media (max-width: 960px) {
  .conduct-grid,
  .conduct-two-col {
    grid-template-columns: 1fr;
  }

  .conduct-hero-content,
  .conduct-wrap,
  .conduct-panel,
  .conduct-card,
  .conduct-commitment {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .conduct-hero {
    min-height: 280px;
  }

  .conduct-hero-content h1 {
    font-size: 1.7rem;
  }

  .conduct-hero-content p {
    font-size: 1rem;
  }
}

/* ===== H5 / mobile adaptation ===== */
@media (max-width: 959px) {
  .site-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding-top: env(safe-area-inset-top, 0);
  }

  .site-top .main-nav-inner {
    min-height: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
  }

  .mobile-nav-panel.container {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0 0 18px 18px;
    padding-left: max(0.85rem, env(safe-area-inset-left));
    padding-right: max(0.85rem, env(safe-area-inset-right));
  }

  .hero-screen {
    padding-top: calc(64px + env(safe-area-inset-top, 0px));
    min-height: auto;
  }

  .hero-screen-inner {
    width: min(100% - 1.5rem, 1120px);
    padding: 2.4rem 0 1.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
    line-height: 1.22;
    margin-bottom: 0.85rem;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.55;
    padding-inline: 0.15rem;
  }

  .hero-cta-block {
    margin-top: 1.6rem;
    gap: 0.7rem;
    padding: 0.7rem;
    border-radius: 14px;
  }

  .hero-cta-copy h2 {
    font-size: 1.05rem;
  }

  .hero-cta-copy .subtitle,
  .hero-cta-copy .desc {
    font-size: 0.82rem;
  }

  .hero-cta-panel .cta-stats {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: clamp(2.25rem, 6vw, 3.25rem) 0;
  }

  .section-head {
    margin-bottom: 1.5rem;
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .section-head p {
    font-size: 0.95rem;
    padding-inline: 0.25rem;
  }

  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .story-section .story-features .strip-item {
    padding: 0.55rem 0.15rem;
  }

  .strip-item h3 {
    font-size: 0.9rem;
  }

  .strip-item p {
    font-size: 0.78rem;
  }

  .why-card > p,
  .benefit-card p {
    font-size: 0.9rem;
  }

  .howto-card {
    min-height: 260px;
  }

  .faq-trigger {
    font-size: 0.92rem;
    padding: 0.95rem 1rem;
    gap: 0.75rem;
  }

  .faq-panel > p {
    font-size: 0.88rem;
  }

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    padding: 1rem;
  }

  .cookie-buttons {
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1 1 auto;
    min-height: 42px;
  }

  .policy-modal-dialog {
    width: min(100% - 1.25rem, 720px);
    max-height: min(88vh, 820px);
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: 52px;
  }

  .brand img {
    height: 36px;
    max-width: min(150px, 42vw);
  }

  .hero-bg {
    background-position: center 22%;
  }

  .hero-cta-panel .cta-stat .num {
    font-size: 1.05rem;
  }

  .hero-cta-panel .cta-stat .label {
    font-size: 0.68rem;
  }

  .hero-cta-panel .mini-bars {
    height: 48px;
  }

  .story-person {
    width: min(42vw, 160px);
    right: 0.85rem;
    top: 0.25rem;
  }

  .story-shell {
    margin-top: 2.5rem;
    min-height: 0;
  }

  .story-inner {
    padding: 1.2rem 1rem 1.35rem;
  }

  .story-inner h2 {
    font-size: 1.35rem;
  }

  .story-inner p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .pill {
    flex-direction: column;
    width: 100%;
    border-radius: 14px;
  }

  .pill span,
  .pill strong {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-form input,
  .footer-form button {
    height: 44px;
    font-size: 0.92rem;
  }

  .footer-links {
    gap: 0.65rem 1rem;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .site-footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content h1,
  .hero-content p,
  .hero-cta-block,
  [data-reveal],
  [data-reveal-x],
  .mobile-nav,
  .mobile-nav a,
  .nav-backdrop,
  .nav-toggle span {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  [data-reveal-x] {
    opacity: 1;
    transform: none;
  }

  .mobile-nav.is-open a {
    opacity: 1;
    transform: none;
  }
}

