:root {
  --red: #d92c2c;
  --red-dark: #b91f1f;
  --ink: #1a1c20;
  --body-c: #5a6068;
  --muted: #8d939b;
  --bg: #ffffff;
  --gray: #f3f4f5;
  --gray-2: #e8eaeb;
  --dark: #24262a;
  --dark-2: #33363b;
  --line: #e4e6e8;
  --r-sm: 14px;
  --r: 20px;
  --r-lg: 30px;
  --max: 1660px;
  --gutter: 44px;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --shadow: 0 20px 50px -24px rgba(20, 22, 26, .2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body-c);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 500; letter-spacing: -0.015em; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-mid { max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: box-shadow .25s;
}

.site-header.scrolled { box-shadow: 0 4px 26px rgba(20,22,26,.07); }

.site-header .wrap {
  max-width: 1860px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 86px;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav > a,
.site-nav .drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--body-c);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color .15s, background .15s;
}

.site-nav > a:hover,
.site-nav .drop-toggle:hover { color: var(--ink); background: var(--gray); }

.site-nav > a.active,
.site-nav .has-drop.active .drop-toggle { color: var(--ink); background: var(--gray-2); }

.drop-toggle .chev { width: 11px; height: 7px; transition: transform .2s; opacity: .7; }
.has-drop.open .drop-toggle .chev { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

.header-actions .nav-cta {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s;
}

.header-actions .nav-cta:hover { background: var(--red-dark); }

.has-drop { position: relative; }

.drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 640px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 26px 60px -18px rgba(20,22,26,.28);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.has-drop.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.drop-menu a {
  display: block;
  text-decoration: none;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  transition: background .15s;
}

.drop-menu a:hover { background: var(--gray); }

.drop-menu .dm-title {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}

.drop-menu .dm-sub {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drop-menu .dm-all {
  grid-column: 1 / -1;
  margin-top: 6px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  padding-top: 16px;
  color: var(--red);
  font-weight: 600;
  font-size: 14.5px;
}

.site-nav .mobile-cta { display: none; }

.nav-toggle { display: none; background: none; border: none; padding: 10px 4px; cursor: pointer; }

.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  margin: 6px 0;
  transition: transform .2s, opacity .2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.btn svg { width: 15px; height: 15px; flex: 0 0 auto; }

.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #000; border-color: #000; }

.btn-outline { border-color: #d6d8da; color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }

.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--gray-2); border-color: var(--gray-2); }

.btn-outline-w { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero { padding: 78px 0 96px; position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5.4fr);
  gap: 70px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--red);
  background: #fdeaea;
  border-radius: 999px;
  padding: 9px 20px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(44px, 5.4vw, 94px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 15ch;
}

.hero h1 em { font-style: normal; color: var(--red); }

.hero .sub {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 40px;
}

.hero .btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero .btn { padding: 18px 36px; font-size: 16px; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}

.hero-fact .n {
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.hero-fact .n span { color: var(--red); }
.hero-fact .t { font-size: 14.5px; margin-top: 8px; max-width: 20ch; }

.hero-visual { position: relative; }

.hero-visual img {
  width: 100%;
  height: clamp(440px, 46vw, 660px);
  object-fit: cover;
  border-radius: var(--r-lg);
}

.hero-visual .float-card {
  position: absolute;
  left: -34px;
  bottom: 40px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 24px 60px -20px rgba(20,22,26,.3);
  padding: 22px 26px;
  max-width: 260px;
}

.hero-visual .float-card .k { font-size: 13.5px; color: var(--muted); margin-bottom: 4px; }
.hero-visual .float-card .v { font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.35; }

.promo-strip { padding: 0 0 96px; }

.promo-inner {
  background: var(--gray);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 40px;
  align-items: center;
  padding: 16px;
}

.promo-inner .txt { padding: 46px 24px 46px 50px; }

.promo-inner h2 {
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 18ch;
}

.promo-inner p { font-size: 17px; max-width: 52ch; margin-bottom: 22px; }

.promo-inner ul { list-style: none; margin-bottom: 28px; }

.promo-inner ul li {
  position: relative;
  padding: 5px 0 5px 26px;
  font-size: 16px;
}

.promo-inner ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.promo-inner .img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r);
}

.section { padding: 96px 0; }
.section.tight { padding: 60px 0; }
.section.on-gray { background: var(--gray); }

.head-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.head-row h2 {
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.16;
  max-width: 20ch;
}

.head-row .aside { padding-bottom: 4px; }
.head-row .aside p { font-size: 17.5px; max-width: 56ch; margin-bottom: 22px; }

.head-center { text-align: center; max-width: 780px; margin: 0 auto 56px; }

.head-center h2 {
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.16;
  margin-bottom: 20px;
}

.head-center p { font-size: 18px; }

.car-btns { display: flex; gap: 12px; }

.car-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid #d6d8da;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}

.car-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.car-btn svg { width: 18px; height: 18px; }

.bleed-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  padding: 4px max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
  scroll-padding-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter)));
}

.bleed-track::-webkit-scrollbar { display: none; }
.bleed-track { cursor: grab; }
.bleed-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.bleed-track.dragging .slide { pointer-events: none; }

.car-btn:disabled { opacity: .3; cursor: default; }
.car-btn:disabled:hover { background: #fff; border-color: #d6d8da; color: var(--ink); }

.slide {
  flex: 0 0 clamp(300px, 27vw, 440px);
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  background: var(--gray);
}

.slide img {
  width: 100%;
  height: clamp(360px, 32vw, 520px);
  object-fit: cover;
  transition: transform .6s ease;
}

.slide:hover img { transform: scale(1.04); }

.slide .plate {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--r-sm);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.slide h3 { font-size: 19px; font-weight: 600; margin-bottom: 2px; }
.slide .meta { font-size: 13.5px; color: var(--muted); }

.slide .go {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide .go svg { width: 16px; height: 16px; }

.text-band { padding: 110px 0; }

.text-band .lead-line {
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--ink);
  max-width: 30ch;
  margin-bottom: 46px;
  letter-spacing: -0.02em;
}

.text-band .lead-line b { font-weight: 500; color: var(--red); }

.band-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
}

.band-cols p { font-size: 17px; line-height: 1.8; }

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.tile {
  border-radius: var(--r);
  background: var(--gray);
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.tile .ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: #fff;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}

.tile .ico svg { width: 22px; height: 22px; }

.tile h3 { font-size: 17.5px; font-weight: 600; margin-top: 22px; margin-bottom: 5px; }
.tile p { font-size: 14.5px; }

.tile.wide { grid-column: span 2; }
.tile.tall { grid-row: span 2; }

.tile.photo { padding: 0; }
.tile.photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.tile.dark { background: var(--dark); }
.tile.dark h3 { color: #fff; }
.tile.dark p { color: #aeb3b9; }
.tile.dark .ico { background: rgba(255,255,255,.08); color: #fff; }

.offset-band { padding: 20px 0 100px; }

.offset-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 60px;
  align-items: center;
}

.offset-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 46px 44px 48px;
}

.offset-card h2 {
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.offset-card p { color: #aeb3b9; font-size: 16px; margin-bottom: 28px; }

.offset-visual img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.cover-cell { padding: 0; text-align: center; }

.cover-cell .num {
  font-size: clamp(52px, 5.4vw, 88px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cover-cell .num span { color: var(--red); }
.cover-cell .lbl { font-size: 16.5px; margin-top: 18px; max-width: 24ch; margin-left: auto; margin-right: auto; }

.split-promo {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: 0;
  background: var(--gray);
  border-radius: var(--r-lg);
  overflow: hidden;
  align-items: center;
}

.split-promo .txt { padding: 64px 60px; }

.split-promo h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 18px;
  max-width: 20ch;
}

.split-promo p { font-size: 17px; margin-bottom: 30px; max-width: 50ch; }

.split-promo .img { padding: 16px; height: 100%; }

.split-promo .img img {
  width: 100%; height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--r);
}

.cta-full {
  background: var(--dark);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.cta-full h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-full p { color: #aeb3b9; max-width: 60ch; margin: 0 auto 34px; font-size: 18px; }

.cta-full .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.page-head { padding: 72px 0 0; }

.page-head .crumb { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.page-head .crumb a { text-decoration: none; color: var(--muted); }
.page-head .crumb a:hover { color: var(--ink); }
.page-head .crumb b { font-weight: 400; color: #ccd0d3; padding: 0 8px; }

.page-head h1 {
  font-size: clamp(38px, 4.6vw, 76px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 20ch;
  margin-bottom: 24px;
}

.page-head .lede { font-size: 19px; max-width: 68ch; font-weight: 400; }

.page-wide-img { margin-top: 52px; }

.page-wide-img img {
  width: 100%;
  height: clamp(280px, 34vw, 480px);
  object-fit: cover;
  border-radius: var(--r-lg);
}

.div-block { padding: 84px 0; border-top: 1px solid var(--line); }
.div-block:first-of-type { border-top: none; }

.div-top {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 46px;
}

.div-top .num {
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 14px;
}

.div-top h2 {
  font-size: clamp(28px, 2.9vw, 44px);
  font-weight: 500;
  line-height: 1.14;
}

.div-top .intro { font-size: 17.5px; line-height: 1.8; }

.div-top .kbli-badge {
  display: inline-block;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  background: #fdeaea;
  border-radius: 999px;
  padding: 7px 18px;
}

.div-body { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 50px; align-items: start; }

.div-body img { width: 100%; height: clamp(280px, 26vw, 400px); object-fit: cover; border-radius: var(--r-lg); }

.spec-list { list-style: none; }

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.spec-list li:first-child { border-top: none; padding-top: 0; }

.spec-list li::before {
  content: "";
  flex: 0 0 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--red);
}

.cap-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 4fr) minmax(0, 6fr);
  gap: 50px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.cap-row .idx { font-size: 15px; font-weight: 600; color: var(--red); padding-top: 8px; }

.cap-row h2 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.15;
}

.cap-row .tagline { font-size: 15px; color: var(--muted); margin-top: 12px; }

.cap-row .detail p { font-size: 17px; line-height: 1.8; margin-bottom: 22px; }

.cap-row .detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.cap-row .detail li {
  font-size: 15.5px;
  color: var(--ink);
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.rule-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 4fr) minmax(0, 6fr);
  gap: 44px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.rule-row .n { font-size: 15px; font-weight: 600; color: var(--red); padding-top: 6px; }
.rule-row h3 { font-size: clamp(21px, 2vw, 28px); font-weight: 500; line-height: 1.2; }
.rule-row p { font-size: 17px; line-height: 1.8; }

.data-rows { border-top: 1px solid var(--line); }

.data-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.data-row .k { font-size: 15px; color: var(--muted); }
.data-row .v { font-size: 17px; color: var(--ink); }
.data-row .v a { color: var(--red); font-weight: 600; text-decoration: none; }
.data-row .v a:hover { text-decoration: underline; }

.kbli-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.kbli-item {
  background: var(--gray);
  border-radius: var(--r);
  padding: 26px 28px 28px;
}

.on-gray .kbli-item { background: #fff; }

.kbli-item .code { font-size: 22px; font-weight: 500; color: var(--red); margin-bottom: 8px; letter-spacing: -0.01em; }
.kbli-item .desc { font-size: 15px; line-height: 1.65; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.step-card { background: #fff; border-radius: var(--r); padding: 34px 32px 38px; }
.section:not(.on-gray) .step-card { background: var(--gray); }

.step-card .no { font-size: 14px; font-weight: 600; color: var(--red); margin-bottom: 18px; }
.step-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.step-card p { font-size: 15.5px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 28px;
  align-items: start;
}

.contact-info { background: var(--dark); color: #fff; border-radius: var(--r-lg); padding: 48px 46px; }

.contact-info h2 { color: #fff; font-size: 27px; font-weight: 500; margin-bottom: 10px; }
.contact-info > p { font-size: 15.5px; color: #aeb3b9; margin-bottom: 30px; }

.ci-item { padding: 20px 0; border-top: 1px solid var(--dark-2); }

.ci-item .k { font-size: 13.5px; color: #ef9494; margin-bottom: 6px; }
.ci-item .v { font-size: 16.5px; line-height: 1.65; color: #fff; }
.ci-item .v a { color: #fff; text-decoration: none; border-bottom: 1.5px solid var(--red); }
.ci-item .v small { display: block; font-size: 13.5px; color: #9299a1; margin-top: 4px; }

.contact-form-wrap { background: var(--gray); border-radius: var(--r-lg); padding: 48px 50px; }

.contact-form-wrap h2 { font-size: 27px; font-weight: 500; margin-bottom: 8px; }
.contact-form-wrap .sub { font-size: 14.5px; color: var(--muted); margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field { margin-bottom: 20px; }

.field label { display: block; font-size: 14.5px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  padding: 15px 18px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .15s;
}

.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6068' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field textarea { min-height: 150px; resize: vertical; }

.form-note { font-size: 13.5px; color: var(--muted); margin-top: 16px; }

.btn .spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.btn[disabled] { opacity: .75; cursor: default; }

.form-success { display: none; padding: 16px 0 6px; }
.form-success.show { display: block; }

.form-success .fs-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #e8f6ec;
  color: #1d9d4b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.form-success .fs-icon svg { width: 28px; height: 28px; }
.form-success h4 { font-size: 23px; font-weight: 500; margin-bottom: 8px; }
.form-success p { font-size: 16px; margin-bottom: 20px; }

.form-success .fs-again {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
}

.form-success .fs-again:hover { text-decoration: underline; }

.map-frame { margin-top: 28px; }

.map-frame iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: var(--r-lg);
  filter: grayscale(60%);
}

.legal { max-width: 860px; padding-bottom: 24px; }

.legal .updated { font-size: 14.5px; color: var(--muted); margin-bottom: 42px; }

.legal h2 { font-size: 24px; font-weight: 500; margin: 46px 0 14px; }
.legal p, .legal li { margin-bottom: 15px; font-size: 17px; line-height: 1.8; }
.legal ul { padding-left: 24px; margin-bottom: 18px; }
.legal ul li { margin-bottom: 8px; }
.legal a { color: var(--red); font-weight: 500; }

.site-footer { background: var(--gray); }

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 9.2fr) minmax(0, 2.8fr);
  gap: 52px;
  align-items: start;
  padding: 78px 0 56px;
}

.footer-cols {
  display: grid;
  grid-template-columns: minmax(0, 3.4fr) minmax(0, 2.6fr) minmax(0, 2.4fr) minmax(0, 2.8fr);
  gap: 40px;
}

.site-footer .f-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }

.site-footer .f-brand .brand-logo { height: 42px; }

.site-footer h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.site-footer p { font-size: 15px; line-height: 1.75; max-width: 42ch; }

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 11px; }

.site-footer a { color: var(--body-c); text-decoration: none; font-size: 15.5px; }
.site-footer a:hover { color: var(--red); }

.footer-contact {
  background: var(--dark);
  border-radius: var(--r);
  padding: 26px 28px 20px;
  color: #fff;
}

.footer-contact h4 { color: #fff; font-size: 18px; font-weight: 500; margin-bottom: 6px; }
.footer-contact .fc-sub { font-size: 13px; color: #9299a1; margin-bottom: 14px; max-width: none; }

.fc-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--dark-2);
}

.fc-row .fc-ico {
  flex: 0 0 22px;
  color: var(--red);
  margin-top: 3px;
}

.fc-row .fc-ico svg { width: 19px; height: 19px; }

.fc-row .fc-k { display: block; font-size: 12px; color: #8f959d; margin-bottom: 3px; }
.fc-row .fc-v { display: block; font-size: 14px; color: #fff; line-height: 1.5; word-break: break-word; }
.fc-row .fc-v a { color: #fff; font-size: 14px; }
.fc-row .fc-v a:hover { color: var(--red); }

.footer-contact .fc-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: #8f959d;
  line-height: 1.6;
  max-width: none;
}

.ext-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ext-link svg { width: 12px; height: 12px; flex: 0 0 auto; opacity: .55; }
.ext-link:hover svg { opacity: 1; }

.site-footer .col-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 34ch;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 40px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom .fb-addr { color: var(--body-c); font-weight: 500; }
.footer-bottom .fb-meta { color: var(--muted); }

.footer-bottom a { color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 70px;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.16;
  margin-bottom: 18px;
}

.faq-intro p { font-size: 17px; margin-bottom: 26px; max-width: 40ch; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  color: var(--ink);
  padding: 26px 60px 26px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  transition: color .15s;
}

.faq-q:hover { color: var(--red); }

.faq-q .sign {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .3s;
}

.on-gray .faq-q .sign { background: #fff; }

.faq-q .sign::before,
.faq-q .sign::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: opacity .25s, background .2s;
}

.faq-q .sign::before { width: 13px; height: 1.5px; }
.faq-q .sign::after { width: 1.5px; height: 13px; }

.faq-item.open .faq-q { color: var(--red); }
.faq-item.open .faq-q .sign { background: var(--red); transform: translateY(-50%) rotate(180deg); }
.faq-item.open .faq-q .sign::before { background: #fff; }
.faq-item.open .faq-q .sign::after { opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  font-size: 16.5px;
  line-height: 1.8;
  padding: 0 60px 28px 0;
  max-width: 68ch;
}

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pageOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

body { animation: pageIn .5s cubic-bezier(.22,.61,.36,1); }

body.page-leaving { animation: pageOut .26s ease forwards; }

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}

html.js [data-reveal].revealed { opacity: 1; transform: none; }

html.js [data-reveal][data-delay="1"] { transition-delay: .1s; }
html.js [data-reveal][data-delay="2"] { transition-delay: .2s; }
html.js [data-reveal][data-delay="3"] { transition-delay: .3s; }

@keyframes revealFallback { to { opacity: 1; transform: none; } }
html.js [data-reveal] { animation: revealFallback 0s linear 4s forwards; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body, body.page-leaving { animation: none; opacity: 1; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; animation: none; }
}

.cookie-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  display: flex;
  justify-content: center;
  padding: 0 20px 22px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.cookie-overlay.show { opacity: 1; visibility: visible; transform: none; }

.cookie-modal {
  pointer-events: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 18px 50px -12px rgba(20, 22, 26, .28);
  max-width: 520px;
  width: 100%;
  padding: 22px 24px 24px;
}

.cookie-modal h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.cookie-modal .ck-intro { font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; }

.ck-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.ck-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 1px; }
.ck-desc { font-size: 12.5px; line-height: 1.45; }

.ck-switch { position: relative; flex: 0 0 auto; cursor: pointer; display: block; }
.ck-switch.locked { cursor: default; }

.ck-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: inherit; }

.ck-switch .track {
  display: block;
  width: 42px; height: 24px;
  border-radius: 999px;
  background: #d6d8da;
  position: relative;
  transition: background .2s;
}

.ck-switch .track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.25);
  transition: transform .2s;
}

.ck-switch input:checked + .track { background: var(--red); }
.ck-switch input:checked + .track::after { transform: translateX(18px); }
.ck-switch.locked .track { background: var(--red); opacity: .5; }

.ck-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.ck-actions .btn { padding: 11px 22px; font-size: 13.5px; }

@media (max-width: 560px) {
  .cookie-overlay { padding: 0 12px 12px; }
  .cookie-modal { padding: 20px 20px 22px; }
  .ck-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 1400px) {
  .bento { grid-auto-rows: 200px; }
}

@media (max-width: 1180px) {
  :root { --gutter: 30px; }
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { max-width: 18ch; }
  .hero-visual img { height: 400px; }
  .hero-visual .float-card { left: 20px; bottom: 20px; }
  .hero-facts { gap: 30px; }
  .promo-strip { padding-bottom: 70px; }
  .promo-inner { grid-template-columns: 1fr; gap: 0; }
  .promo-inner .txt { padding: 34px 20px 26px; }
  .promo-inner .img img { height: 320px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .head-row { grid-template-columns: 1fr; gap: 28px; }
  .band-cols { grid-template-columns: 1fr; gap: 26px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile.tall { grid-row: span 1; }
  .offset-grid { grid-template-columns: 1fr; gap: 34px; }
  .offset-visual img { height: 340px; }
  .cover-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .split-promo { grid-template-columns: 1fr; }
  .split-promo .txt { padding: 44px 36px 20px; }
  .div-top, .div-body { grid-template-columns: 1fr; gap: 30px; }
  .cap-row { grid-template-columns: 70px 1fr; gap: 24px; }
  .cap-row .detail { grid-column: 2; }
  .rule-row { grid-template-columns: 60px 1fr; gap: 20px; }
  .rule-row p { grid-column: 2; }
  .kbli-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .data-row { grid-template-columns: 1fr; gap: 6px; }
  .section { padding: 70px 0; }
  .text-band { padding: 76px 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .site-header .wrap { grid-template-columns: auto auto; justify-content: space-between; height: 76px; }
  .brand-logo { height: 32px; }
  .header-actions { display: none; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    box-shadow: 0 24px 40px rgba(20,22,26,.13);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px 30px 26px;
    gap: 2px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .site-nav.open { display: flex; }
  .site-nav > a, .site-nav .drop-toggle { padding: 14px 12px; border-radius: 12px; font-size: 16px; justify-content: space-between; width: 100%; }

  .has-drop { width: 100%; }

  .drop-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: var(--gray);
    border-radius: var(--r-sm);
    padding: 6px;
    margin: 4px 0 8px;
    grid-template-columns: 1fr;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .has-drop.open .drop-menu { display: grid; transform: none; }
  .drop-menu a { padding: 12px 14px; }
  .drop-menu .dm-sub { display: none; }
  .drop-menu .dm-all { padding-top: 12px; margin-top: 4px; }

  .site-nav .mobile-cta {
    display: block;
    margin: 16px 0 0;
    text-align: center;
    background: var(--red);
    color: #fff;
    padding: 15px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
  }

  .bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .tile.wide { grid-column: span 1; }
  .cover-grid { grid-template-columns: 1fr; gap: 30px; }
  .kbli-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 54px 0 40px; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-contact { padding: 30px 26px 32px; }
  .faq-q { font-size: 17px; padding-right: 52px; }
  .faq-a p { padding-right: 20px; }
  .hero h1 { letter-spacing: -0.028em; }
  .cap-row .detail ul { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 34px 28px; }
  .split-promo .txt { padding: 34px 26px 14px; }
  .offset-card { padding: 34px 28px 36px; }
  .cta-full { padding: 80px 0; }
  .ck-actions .btn { flex: 1 1 auto; justify-content: center; }
}

.page-head .kbli-badge {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  background: #fdeaea;
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 22px;
}

.div-intro { max-width: 1000px; }
.div-intro p { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.75; margin-bottom: 26px; }
.div-intro p:last-child { margin-bottom: 0; }

.kbli-item .rng-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.buyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

.buyer-row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 30px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.buyer-row h3 { font-size: 18.5px; font-weight: 500; line-height: 1.3; }
.buyer-row p { font-size: 15.5px; }

@media (max-width: 1060px) {
  .buyer-grid { grid-template-columns: 1fr; gap: 0; }
  .div-more { margin-top: 22px; }
}

@media (max-width: 820px) {
  .buyer-row { grid-template-columns: 1fr; gap: 8px; }
}

.div-side { display: flex; flex-direction: column; align-items: flex-start; }
.div-more { margin-top: 28px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.lang-switch .ls-label {
  font-size: 13px;
  color: var(--muted);
  margin-right: 2px;
}

.lang-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body-c);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}

.lang-opt:hover { border-color: var(--body-c); color: var(--ink); }

.lang-opt.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.lang-opt .flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  display: block;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset;
}

@media (max-width: 820px) {
  .lang-switch { margin-top: 22px; padding-top: 20px; flex-wrap: wrap; }
}
