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

*,
*::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.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(36, 52, 86, 0.08), transparent 50%),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 40%, #f3efe8 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin: 0;
  overflow: visible;
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font: 600 0.95rem/1.2 var(--font);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(240, 90, 40, 0.28);
}

.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}

.btn-join {
  border-radius: 10px;
  padding: 0.72rem 1.15rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(240, 90, 40, 0.25);
}

.btn-join:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.join-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(30, 42, 68, 0.06);
}

.brand img {
  width: min(230px, 52vw);
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #5a6475;
  font-family: var(--font);
  letter-spacing: 0.01em;
  line-height: 1.22;
}

.header-cta {
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #667085;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: 600 0.82rem/1.2 var(--font);
  cursor: pointer;
}

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

.nav a {
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a.is-active,
.nav a:hover {
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-header.menu-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1rem, 3vw, 2.5rem) clamp(5.5rem, 12vw, 8rem);
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(640px, 1fr) minmax(240px, 320px);
  gap: clamp(0.75rem, 2vw, 2rem);
  align-items: start;
  justify-content: center;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.hero-col-left {
  align-items: flex-start;
  padding-top: 0;
}

.hero-col-right {
  align-items: flex-end;
  padding-top: 0;
}

.hero-col-left .hero-step,
.hero-col-right .hero-step {
  width: 100%;
  max-width: 310px;
}

.hero-col-left .step-2 {
  align-self: flex-end;
  max-width: 286px;
  transform: translateX(28%);
}

.hero-col-right .step-4 {
  align-self: flex-start;
  max-width: 286px;
  transform: translateX(-28%);
}

.hero-col-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding-top: 0.15rem;
  min-width: 0;
}

.hero-title {
  margin: 0;
  width: 100%;
  max-width: 640px;
  text-align: center;
  color: #ff6a24;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 4vw, 78px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-step {
  margin: 0;
  line-height: 0;
  background: #fff;
  box-shadow: 0 16px 36px rgba(30, 42, 68, 0.22);
}

.hero-step picture {
  display: block;
  line-height: 0;
}

.hero-step img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-flip {
  width: min(100%, 620px);
  aspect-ratio: 611 / 254;
  perspective: 1400px;
  cursor: pointer;
}

.hero-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.hero-flip:hover .hero-flip-inner,
.hero-flip:focus-within .hero-flip-inner {
  transform: rotateX(180deg);
}

.hero-flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(30, 42, 68, 0.14);
}

.hero-flip-face picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-flip-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-flip-back {
  transform: rotateX(180deg);
}

.hero-swoosh {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(90px, 13vw, 150px);
  pointer-events: none;
  line-height: 0;
}

.swoosh-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.process {
  margin-top: -1px;
  background: #fff3ea;
  position: relative;
}

.chat-widget {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
}

.chat-bubble {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: min(240px, 72vw);
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(30, 42, 68, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  pointer-events: none;
}

.chat-bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  box-shadow: 4px 4px 10px rgba(30, 42, 68, 0.08);
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-fab {
  display: block;
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(240, 90, 40, 0.35);
  cursor: pointer;
  transition: transform 0.25s ease;
}

.chat-fab:hover {
  transform: translateY(-3px) scale(1.04);
}

.chat-fab.is-bouncing {
  animation: chat-bounce 0.55s ease-in-out infinite;
}

@keyframes chat-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.chat-fab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-intro {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto 2.5rem;
  max-width: 620px;
}

.section-intro.light {
  color: var(--white);
}

.section-intro .eyebrow,
.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-intro.light .eyebrow {
  color: #ffb089;
}

.section-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.section-intro p:last-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-intro.light p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.process,
.products,
.advantages {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.story-section {
  background: #fff3ea;
}

.story-wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 620px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.15;
  max-width: 12ch;
}

.story-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 56ch;
}

.story-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-card {
  position: relative;
  width: min(100%, 620px);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(145deg, #fff 0%, #fde9dd 100%);
  box-shadow: 0 26px 60px rgba(30, 42, 68, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 14px;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 154, 92, 0.18), transparent 30%, rgba(36, 52, 86, 0.08) 100%);
  pointer-events: none;
}

.brand-video {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #111;
  object-fit: cover;
}

.video-poster picture {
  display: block;
  width: 100%;
  height: 100%;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  border: 0;
  padding: 14px;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.video-poster > img,
.video-poster picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-card.is-playing .video-poster {
  opacity: 0;
  pointer-events: none;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  transition: transform 0.25s ease;
}

.video-poster:hover .video-play {
  transform: scale(1.05);
}

.video-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 204, 171, 0.42) 0%,
    rgba(255, 154, 92, 0.34) 45%,
    rgba(255, 123, 53, 0.3) 100%
  );
  backdrop-filter: blur(3px);
  box-shadow:
    0 12px 24px rgba(255, 122, 53, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.video-play-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.video-note {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 1rem auto 0;
  padding: 0 0.35rem;
  color: var(--orange);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.advantages {
  padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(1.2rem, 3vw, 2rem);
  background: #fff;
}

.advantages-showcase {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.advantages-visual {
  margin: 0;
  display: flex;
  justify-content: center;
}

.advantages-visual picture {
  display: block;
  width: min(100%, 560px);
}

.advantages-visual img {
  width: min(100%, 560px);
  display: block;
  border-radius: 34px 34px 86px 34px;
  box-shadow:
    0 28px 60px rgba(30, 42, 68, 0.18),
    0 10px 24px rgba(30, 42, 68, 0.08);
}

.advantages-copy h2 {
  margin: 0 0 1.25rem;
  color: var(--orange);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.1;
}

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

.advantage-list li {
  position: relative;
  padding-left: 2rem;
  color: #7c8aa3;
  font-size: 0.98rem;
  line-height: 1.45;
}

.advantage-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  width: 1.15rem;
  height: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff8f4a;
  border-radius: 2px;
  color: #ff8f4a;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
  box-sizing: border-box;
}

.stats-band {
  margin-top: -0.4rem;
  padding: 0 0 3rem;
  background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
}

.stats-shell {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1.75rem 0 1.95rem;
  background: linear-gradient(180deg, #ff9861 0%, #ff8c57 100%);
  overflow: hidden;
}

.stats-shell::before,
.stats-shell::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.stats-shell::before {
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 24' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 15C78 8 158 5 244 8.5C332 12 416 18.5 503 18C592 17.5 673 8.5 762 7C853 5.4 943 14.5 1031 15.6C1120 16.7 1214 9 1301 7.4C1360 6.3 1407 8.4 1440 10V0H0Z'/%3E%3C/svg%3E");
}

.stats-shell::after {
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 24' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 8.5C73 15.2 161 18.7 248 14.8C335 11 420 4 505 5.2C592 6.5 676 17.5 763 18.2C851 18.9 939 9.8 1026 8.6C1115 7.3 1207 14 1293 15.7C1354 16.9 1404 14.2 1440 12.4V24H0Z'/%3E%3Cpath d='M0 9.4C75 16 162 19.3 249 15.6C335 11.9 419 4.9 505 6.1C592 7.4 676 18.2 763 18.9C852 19.6 940 10.8 1027 9.4C1116 8.1 1208 14.8 1294 16.5C1355 17.7 1404 15.1 1440 13.2' fill='none' stroke='%23f5b28a' stroke-width='1.6' stroke-linecap='round' opacity='.95'/%3E%3Cpath d='M35 12.5C87 14.8 127 15.5 165 13.7M356 11.9C398 9.4 440 8.9 484 10.4M700 16.9C736 18.2 771 18.2 812 16.7M1040 9.7C1071 8.7 1105 8.9 1142 10.1M1285 15.4C1314 16.1 1339 15.8 1363 14.8' fill='none' stroke='%23fff7f3' stroke-width='1.25' stroke-linecap='round' opacity='.95'/%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  width: min(calc(100% - 2.4rem), 1180px);
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.4rem, 4vw, 3rem);
}

.stat-card {
  text-align: center;
  color: #fff;
}

.stat-value {
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 400;
}

.service-showcase {
  padding: clamp(3.4rem, 8vw, 5.8rem) 0 clamp(4rem, 8vw, 6.5rem);
  background: linear-gradient(180deg, #fff8f3 0%, #fff 28%, #fff 100%);
}

.service-wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  text-align: center;
}

.service-eyebrow {
  margin: 0 0 0.7rem;
  color: #44557a;
  font-size: 0.95rem;
  font-weight: 500;
}

.service-wrap h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2rem);
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  justify-items: center;
}

.service-card {
  width: min(100%, 300px);
  min-height: 360px;
  padding: 2.15rem 1.45rem 2rem;
  border-radius: 24px 24px 24px 72px;
  background: #fff;
  box-shadow:
    0 10px 26px rgba(43, 55, 88, 0.06),
    0 2px 6px rgba(43, 55, 88, 0.03);
}

.service-card picture {
  display: block;
  width: min(100%, 160px);
  height: 118px;
  margin: 0 auto 1.8rem;
}

.service-card img {
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 118px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.8rem;
  transition: transform 0.45s ease, filter 0.45s ease;
  transform-origin: center bottom;
  will-change: transform;
  cursor: pointer;
}

.service-card picture img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
}

.service-card img:hover {
  transform: translateY(-6px);
  filter: none;
}

.service-card h3 {
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-size: 1.45rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #5c6984;
  font-size: 0.98rem;
  line-height: 1.6;
}

.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;
  }
}

.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-frame {
  width: 100%;
  height: calc(100% - 56px);
  border: 0;
  background: #fff;
}

.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-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);
  color: #fff;
}

@media (max-width: 640px) {
  .policy-modal {
    padding: 0.6rem;
  }

  .policy-modal-dialog {
    width: 100%;
    height: 88vh;
    border-radius: 14px;
  }

  .policy-modal-head {
    height: 52px;
    padding: 0 0.8rem 0 0.9rem;
  }

  .policy-modal-title {
    font-size: 0.98rem;
  }

  .policy-modal-frame {
    height: calc(100% - 52px);
  }

  .policy-modal-content {
    height: calc(100% - 52px);
    padding: 0.95rem 0.9rem 1.1rem;
  }

  .contact-modal-actions {
    flex-wrap: wrap;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 640px) {
  [data-reveal] {
    transform: translateY(16px);
  }
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@media (max-width: 960px) {
  .process,
  .products,
  .advantages,
  .service-showcase {
    padding-top: clamp(2.2rem, 5vw, 3.2rem);
    padding-bottom: clamp(2.2rem, 5vw, 3.2rem);
  }

  .service-showcase {
    padding-bottom: clamp(3rem, 6vw, 4rem);
  }

  .story-wrap {
    gap: clamp(1.1rem, 3vw, 2rem);
  }

  .service-cards {
    margin-top: 1.4rem;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 0.5rem 1.2rem 1.2rem;
    background: #fff3ea;
    border-bottom: 1px solid rgba(240, 90, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scaleY(0.98);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0);
    overflow: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      clip-path 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 0.28s;
  }

  .nav a {
    width: 100%;
    padding: 0.85rem 0.35rem;
    text-align: center;
    color: var(--ink);
    font-weight: 700;
    border-bottom: 1px solid rgba(30, 42, 68, 0.12);
    background: transparent;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a.is-active,
  .nav a:hover {
    color: var(--ink);
    background: transparent;
  }

  .nav a.is-active::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .lang-switch {
    display: inline-flex;
    position: static;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
    background: #ffb07a;
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      clip-path 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 0s;
  }

  .site-header.menu-open .nav a {
    text-align: center;
    color: var(--ink);
    font-weight: 700;
    background: transparent;
  }

  .nav a::after {
    display: none;
  }


  .hero-stage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }

  .hero-col-center {
    grid-column: 1 / -1;
    grid-row: 1;
    order: unset;
    gap: 1rem;
    width: 100%;
  }

  .hero-col-left,
  .hero-col-right {
    display: contents;
  }

  .hero-col-left .hero-step,
  .hero-col-right .hero-step {
    max-width: none;
    width: 100%;
    align-self: stretch;
    transform: none;
  }

  .hero-col-left .step-1 {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-col-left .step-2 {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-col-right .step-3 {
    grid-column: 3;
    grid-row: 2;
  }

  .hero-col-right .step-4 {
    grid-column: 4;
    grid-row: 2;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.48rem, 5.2vw, 2.2rem);
    line-height: 1.03;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-title span:first-child {
    display: block;
  }

  .hero-title span:nth-child(2),
  .hero-title span:nth-child(3) {
    display: inline;
  }

  .hero-title span:nth-child(3)::before {
    content: " ";
  }

  .product-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .story-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .story-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .story-copy h2 {
    max-width: none;
  }

  .story-copy p:not(.eyebrow) {
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
  }

  .story-media,
  .video-card,
  .video-note {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .advantages-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .advantages-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .advantage-list {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    text-align: left;
  }

  .advantages-visual,
  .advantages-visual img {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.6rem;
    justify-items: center;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .service-card {
    margin-inline: auto;
  }

  .site-header.menu-open .nav {
    align-items: center;
    text-align: center;
  }

  .site-header.menu-open .nav a {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .process-rail li {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .product-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-header {
    gap: 0.85rem;
    padding: 0.7rem 1rem;
  }

  .brand img {
    width: min(180px, 46vw);
  }

  .site-header.menu-open .nav {
    padding: 0.35rem 1rem 1rem;
  }

  .lang-btn {
    padding: 0.42rem 0.72rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-swoosh {
    height: 72px;
  }

  .process,
  .products,
  .advantages,
  .service-showcase {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .service-showcase {
    padding-bottom: 4.25rem;
  }

  .story-wrap,
  .advantages-showcase,
  .service-cards {
    gap: 0.9rem;
  }

  .hero-stage,
  .hero-col-center,
  .hero-flip {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    text-align: center;
  }

  .story-copy p:not(.eyebrow) {
    font-size: 0.97rem;
    line-height: 1.8;
    text-align: center;
  }

  .advantages-copy h2 {
    font-size: 1.9rem;
    text-align: center;
  }

  .advantages-showcase {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .advantage-list {
    margin-left: auto;
    margin-right: auto;
  }

  .service-wrap,
  .service-wrap h2,
  .service-eyebrow,
  .service-card {
    text-align: center;
  }

  .footer-inner,
  .footer-subscribe,
  .footer-social,
  .copyright,
  .footer-links {
    text-align: center;
  }

  .stats-band {
    padding: 0 0 2.5rem;
  }

  .stats-shell {
    padding: 1.45rem 0 1.65rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    padding: 1.5rem 1.2rem;
  }

  .stat-value {
    font-size: 2.2rem;
  }

  .stat-card p {
    font-size: 0.92rem;
  }

  .service-wrap h2 {
    font-size: 2rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .service-card {
    width: min(100%, 320px);
    min-height: auto;
    padding: 1.8rem 1.3rem 2rem;
    margin-bottom: 0.35rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 0.94rem;
    padding-bottom: 0.15rem;
  }

  .chat-fab {
    width: 58px;
    height: 58px;
  }
}

/* About Us page */
.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;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-flip-inner,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-flip:hover .hero-flip-inner,
  .hero-flip:focus-within .hero-flip-inner {
    transform: none;
  }

  .hero-flip-back {
    display: none;
  }
}
