:root {
  --c1: #0d1b2a;
  --c2: #f5a623;
  --c1-light: #1a2e45;
  --c2-light: #ffc35a;
  --c2-pale: #fff8ec;
  --c1-muted: #2a3f55;
  --txt-dark: #0d1b2a;
  --txt-light: #f9f4ec;
  --txt-muted: #6b7f93;
  --glass-bg: rgba(13,27,42,0.55);
  --glass-bg2: rgba(245,166,35,0.12);
  --glass-border: rgba(245,166,35,0.28);
  --glass-border2: rgba(255,255,255,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(13,27,42,0.10), 0 1px 3px rgba(13,27,42,0.08);
  --shadow-md: 0 6px 24px rgba(13,27,42,0.14), 0 2px 8px rgba(13,27,42,0.10), 0 0 0 1px rgba(245,166,35,0.06);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.18), 0 4px 16px rgba(13,27,42,0.12), 0 0 0 1px rgba(245,166,35,0.08);
  --shadow-glow: 0 0 32px rgba(245,166,35,0.22), 0 8px 32px rgba(13,27,42,0.18);
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;
  --grad-main: linear-gradient(135deg, var(--c1) 0%, var(--c1-muted) 100%);
  --grad-accent: linear-gradient(135deg, var(--c2) 0%, #ff8c00 100%);
  --grad-hero: linear-gradient(135deg, #0d1b2a 0%, #1a2e45 60%, #0d1b2a 100%);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Onest', sans-serif;
  background: var(--c2-pale);
  color: var(--txt-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


h1, h2, h3, h4, h5 { font-family: 'Onest', sans-serif; line-height: 1.15; font-weight: 800; color: var(--txt-dark); }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }
p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--txt-muted); line-height: 1.75; }

.txt-light h1, .txt-light h2, .txt-light h3, .txt-light h4 { color: var(--txt-light); }
.txt-light p { color: rgba(249,244,236,0.75); }


.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 0 var(--sp-md);
  height: 68px;
  display: flex; align-items: center;
  transition: background 0.35s ease;
}

.hdr::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--grad-accent);
  transition: left 0.45s cubic-bezier(0.4,0,0.2,1), right 0.45s cubic-bezier(0.4,0,0.2,1);
  transform: none;
}

.hdr.scrolled::after { left: 0; right: 0; }

.hdr-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.hdr-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.hdr-logo img, .hdr-logo svg { height: 36px; width: auto; }
.hdr-logo-txt { font-size: 1.1rem; font-weight: 800; color: var(--txt-light); letter-spacing: -0.02em; }
.hdr-logo-txt span { color: var(--c2); }

.hdr-nav { display: flex; align-items: center; gap: 2rem; }
.hdr-nav a {
  font-size: 0.9rem; font-weight: 500; color: rgba(249,244,236,0.78);
  transition: color 0.25s ease; position: relative; padding: 0.25rem 0;
}
.hdr-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--c2); transition: width 0.3s ease; border-radius: 2px;
}
.hdr-nav a:hover { color: var(--c2); }
.hdr-nav a:hover::after { width: 100%; }

.hdr-right { display: flex; align-items: center; gap: 1rem; }

.hdr-cta {
  background: var(--grad-accent);
  color: var(--c1) !important;
  font-weight: 700; font-size: 0.88rem;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.hdr-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); opacity: 0.92; }


.lang-sw {
  display: flex; align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 20px; padding: 0.25rem 0.6rem;
}
.lang-btn {
  font-size: 0.78rem; font-weight: 600; color: rgba(249,244,236,0.55);
  transition: color 0.22s ease; padding: 0.1rem 0.2rem;
}
.lang-btn.active { color: var(--c2); }
.lang-btn:hover { color: var(--txt-light); }
.lang-div { color: rgba(249,244,236,0.3); font-size: 0.75rem; }


.hdr-ham {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  width: 44px; height: 44px; justify-content: center; align-items: center;
  border-radius: var(--radius-sm);
  transition: background 0.22s ease;
}
.hdr-ham:hover { background: rgba(245,166,35,0.12); }
.hdr-ham span {
  display: block; width: 22px; height: 2px;
  background: var(--txt-light); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mob-overlay {
  position: fixed; inset: 0; background: rgba(13,27,42,0.72);
  backdrop-filter: blur(4px); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

.mob-panel {
  position: fixed; top: 0; right: -100%; width: min(340px, 90vw); height: 100vh;
  background: var(--c1); z-index: 1200;
  padding: 2rem 2rem 3rem;
  display: flex; flex-direction: column; gap: 0;
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 48px rgba(13,27,42,0.35);
  overflow-y: auto;
}
.mob-panel.open { right: 0; }

.mob-close {
  align-self: flex-end; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-light); font-size: 1.4rem;
  border-radius: var(--radius-sm); margin-bottom: 1.5rem;
  transition: background 0.22s ease, color 0.22s ease;
}
.mob-close:hover { background: rgba(245,166,35,0.15); color: var(--c2); }

.mob-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mob-nav a {
  font-size: 1.05rem; font-weight: 600; color: rgba(249,244,236,0.82);
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.22s ease, padding-left 0.22s ease;
}
.mob-nav a:hover { color: var(--c2); padding-left: 1rem; }

.mob-bottom { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.mob-cta {
  background: var(--grad-accent); color: var(--c1);
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-sm);
  text-align: center; transition: opacity 0.22s ease;
}
.mob-cta:hover { opacity: 0.88; }
.mob-lang { display: flex; align-items: center; gap: 0.5rem; }
.mob-lang .lang-btn { font-size: 0.9rem; }


.sec { padding: var(--sp-xl) var(--sp-md); position: relative; overflow: hidden; }
.sec-sm { padding: var(--sp-lg) var(--sp-md); }
.sec-inner { max-width: 1280px; margin: 0 auto; width: 100%; }

.sec-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c2); background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1.2rem;
}
.sec-title { margin-bottom: 1rem; }
.sec-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--txt-muted); max-width: 620px; line-height: 1.75; margin-bottom: 2.5rem; }


.sec-dark { background: var(--c1); }
.sec-dark .sec-tag { color: var(--c2); background: rgba(245,166,35,0.12); }
.sec-dark .sec-title { color: var(--txt-light); }
.sec-dark .sec-sub { color: rgba(249,244,236,0.68); }
.sec-dark h3, .sec-dark h4 { color: var(--txt-light); }
.sec-dark p { color: rgba(249,244,236,0.68); }


.sec-amber { background: var(--c2); }
.sec-amber .sec-tag { color: var(--c1); background: rgba(13,27,42,0.12); border-color: rgba(13,27,42,0.2); }
.sec-amber .sec-title { color: var(--c1); }
.sec-amber .sec-sub { color: rgba(13,27,42,0.72); }
.sec-amber h3, .sec-amber h4 { color: var(--c1); }
.sec-amber p { color: rgba(13,27,42,0.72); }


.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-hero);
  padding: calc(68px + 4rem) var(--sp-md) 5rem;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 1280px; margin: 0 auto; width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c2); background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.28); padding: 0.35rem 0.9rem; border-radius: 20px;
  width: fit-content;
}
.hero-h1 { color: var(--txt-light); }
.hero-h1 span { color: var(--c2); }
.hero-p { color: rgba(249,244,236,0.72); font-size: clamp(1rem, 1.8vw, 1.12rem); max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

.btn-pri {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad-accent); color: var(--c1);
  font-weight: 700; font-size: 0.95rem; padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm); transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.btn-pri:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }

.btn-sec {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245,166,35,0.06); color: var(--c2);
  font-weight: 600; font-size: 0.95rem; padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm); border: 1.5px solid rgba(249,244,236,0.25);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.btn-sec:hover { border-color: var(--c2); color: var(--c2); background: rgba(245,166,35,0.06); }


.hero-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.hb-crd {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.hb-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.hb-crd::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-accent); opacity: 0.6;
}
.hb-crd.wide { grid-column: span 2; }
.hb-crd.tall { grid-row: span 2; }

.hb-ico { font-size: 1.8rem; color: var(--c2); margin-bottom: 0.75rem; }
.hb-num { font-size: 2.2rem; font-weight: 800; color: var(--c2); line-height: 1; margin-bottom: 0.3rem; }
.hb-label { font-size: 0.82rem; font-weight: 600; color: rgba(249,244,236,0.85); text-transform: uppercase; letter-spacing: 0.06em; }
.hb-desc { font-size: 0.88rem; color: rgba(249,244,236,0.62); margin-top: 0.4rem; }

.hb-crd.img-crd { padding: 0; overflow: hidden; }
.hb-crd.img-crd img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.hb-crd.img-crd .hb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.75) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
}


.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.bento-2 { grid-template-columns: repeat(2, 1fr); }
.bento-4 { grid-template-columns: repeat(4, 1fr); }

.crd {
  background: #fff;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative; overflow: hidden;
}
.crd:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,0.3); }

.crd.span2 { grid-column: span 2; }
.crd.span3 { grid-column: span 3; }
.crd.dark { background: var(--c1); border-color: rgba(245,166,35,0.15); }
.crd.dark .crd-txt { color: rgba(249,244,236,0.68); }
.crd.dark h3, .crd.dark h4 { color: var(--txt-light); }
.crd.amber { background: var(--c2); border-color: rgba(13,27,42,0.1); }
.crd.amber .crd-txt { color: rgba(13,27,42,0.72); }
.crd.amber h3, .crd.amber h4 { color: var(--c1); }
.crd.glass {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.crd.glass .crd-txt { color: rgba(249,244,236,0.68); }
.crd.glass h3, .crd.glass h4 { color: var(--txt-light); }

.crd:has(img) { padding: 0; }
.crd:has(img) .crd-body { padding: 1.8rem; }
.crd:has(.crd-img) .crd-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.crd:has(.crd-img) .crd-img img { width: 100%; height: 220px; object-fit: cover; }

.crd-ico {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(245,166,35,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--c2); margin-bottom: 1.2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.crd:hover .crd-ico { background: rgba(245,166,35,0.22); transform: scale(1.08); }
.crd.dark .crd-ico { background: rgba(245,166,35,0.15); }

.crd-txt { font-size: 0.95rem; color: var(--txt-muted); line-height: 1.7; margin-top: 0.6rem; }
.crd-num { font-size: 2.8rem; font-weight: 800; color: var(--c2); line-height: 1; }
.crd-unit { font-size: 0.82rem; font-weight: 600; color: var(--txt-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }


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

.cmp-col {
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
}
.cmp-col.col-a { background: var(--c1); border: 1px solid rgba(245,166,35,0.2); }
.cmp-col.col-b { background: var(--c2); }
.cmp-col.col-a h3 { color: var(--txt-light); }
.cmp-col.col-b h3 { color: var(--c1); }
.cmp-col.col-a p { color: rgba(249,244,236,0.65); }
.cmp-col.col-b p { color: rgba(13,27,42,0.72); }

.cmp-head {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.8rem;
  padding-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cmp-col.col-b .cmp-head { border-bottom-color: rgba(13,27,42,0.15); }

.cmp-badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 20px;
}
.col-a .cmp-badge { background: rgba(245,166,35,0.15); color: var(--c2); }
.col-b .cmp-badge { background: rgba(13,27,42,0.12); color: var(--c1); }

.cmp-list { display: flex; flex-direction: column; gap: 0.85rem; }
.cmp-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.92rem; line-height: 1.55;
}
.col-a .cmp-item { color: rgba(249,244,236,0.78); }
.col-b .cmp-item { color: rgba(13,27,42,0.78); }

.cmp-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
}
.col-a .cmp-dot { background: rgba(245,166,35,0.18); color: var(--c2); }
.col-b .cmp-dot { background: rgba(13,27,42,0.12); color: var(--c1); }


.tabs-wrap { position: relative; }
.tab-nav {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; border-bottom: 2px solid rgba(13,27,42,0.1);
  padding-bottom: 0;
}
.sec-dark .tab-nav { border-bottom-color: rgba(255,255,255,0.1); }

.tab-btn {
  font-size: 0.92rem; font-weight: 600; padding: 0.7rem 1.4rem;
  color: var(--txt-muted); border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative; bottom: -2px;
  border-bottom: 3px solid transparent;
}
.tab-btn:hover { color: var(--c2); background: rgba(245,166,35,0.06); }
.tab-btn.active { color: var(--c2); border-bottom-color: var(--c2); background: rgba(245,166,35,0.06); }
.sec-dark .tab-btn { color: rgba(249,244,236,0.55); }
.sec-dark .tab-btn:hover { color: var(--c2); }
.sec-dark .tab-btn.active { color: var(--c2); }

.tab-panel { display: none; animation: fadeUp 0.35s ease forwards; }
.tab-panel.active { display: block; }


.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; align-items: start;
  padding-bottom: 2rem; position: relative;
}
.tl-item:not(:last-child)::before {
  content: ''; position: absolute; left: 39px; top: 40px; bottom: 0;
  width: 2px; background: rgba(245,166,35,0.25);
}
.tl-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-accent); color: var(--c1);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.sec-dark .tl-item:not(:last-child)::before { background: rgba(245,166,35,0.2); }
.tl-body h4 { margin-bottom: 0.4rem; }


.frm { display: flex; flex-direction: column; gap: 1.2rem; }
.frm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.frm-grp { display: flex; flex-direction: column; gap: 0.45rem; }
.frm-grp label { font-size: 0.85rem; font-weight: 600; color: var(--txt-dark); }
.sec-dark .frm-grp label { color: var(--txt-light); }

.frm-grp input, .frm-grp textarea, .frm-grp select {
  font-family: 'Onest', sans-serif; font-size: 0.95rem;
  padding: 0.85rem 1.1rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(13,27,42,0.15);
  background: #fff; color: var(--txt-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none; width: 100%;
}
.frm-grp input:focus, .frm-grp textarea:focus, .frm-grp select:focus {
  border-color: var(--c2); box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.frm-grp textarea { min-height: 130px; resize: vertical; }
.frm:has(:focus) {  }
.frm-grp:has(input:focus) label, .frm-grp:has(textarea:focus) label { color: var(--c2); }

.frm-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.frm-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--c2); flex-shrink: 0; }
.frm-check label { font-size: 0.85rem; color: var(--txt-muted); line-height: 1.55; }
.frm-check label a { color: var(--c2); text-decoration: underline; }
.sec-dark .frm-check label { color: rgba(249,244,236,0.65); }


.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }


.ftr {
  background: var(--c1); color: var(--txt-light);
  padding: var(--sp-lg) var(--sp-md) 2rem;
}
.ftr-inner { max-width: 1280px; margin: 0 auto; }
.ftr-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.ftr-brand { display: flex; flex-direction: column; gap: 1rem; }
.ftr-logo { display: flex; align-items: center; gap: 0.6rem; }
.ftr-logo-txt { font-size: 1.1rem; font-weight: 800; color: var(--txt-light); letter-spacing: -0.02em; }
.ftr-logo-txt span { color: var(--c2); }
.ftr-tagline { font-size: 0.9rem; color: rgba(249,244,236,0.55); line-height: 1.65; max-width: 280px; }
.ftr-contact { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.ftr-contact a { font-size: 0.88rem; color: rgba(249,244,236,0.65); transition: color 0.22s ease; display: flex; align-items: center; gap: 0.5rem; }
.ftr-contact a:hover { color: var(--c2); }

.ftr-col h5 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c2); margin-bottom: 1rem; }
.ftr-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.ftr-col ul li a { font-size: 0.88rem; color: rgba(249,244,236,0.62); transition: color 0.22s ease; }
.ftr-col ul li a:hover { color: var(--txt-light); }

.ftr-bot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.ftr-copy { font-size: 0.82rem; color: rgba(249,244,236,0.4); }
.ftr-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.ftr-legal a { font-size: 0.82rem; color: rgba(249,244,236,0.45); transition: color 0.22s ease; }
.ftr-legal a:hover { color: var(--c2); }


.pg-hero {
  background: var(--grad-hero); min-height: 42vh;
  display: flex; align-items: flex-end; padding: calc(68px + 3rem) var(--sp-md) 4rem;
  position: relative; overflow: hidden;
}
.pg-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,166,35,0.1) 0%, transparent 65%);
}
.pg-hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.pg-hero h1 { color: var(--txt-light); }
.pg-hero .pg-sub { color: rgba(249,244,236,0.68); font-size: clamp(1rem,1.8vw,1.15rem); max-width: 580px; margin-top: 1rem; }
.pg-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.pg-breadcrumb a { font-size: 0.82rem; color: rgba(249,244,236,0.5); transition: color 0.22s ease; }
.pg-breadcrumb a:hover { color: var(--c2); }
.pg-breadcrumb span { font-size: 0.82rem; color: rgba(249,244,236,0.3); }
.pg-breadcrumb .cur { font-size: 0.82rem; color: var(--c2); font-weight: 600; }


.quote-crd {
  background: var(--c1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  position: relative; overflow: hidden; max-width: 680px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.quote-crd::before {
  content: '\201C'; font-size: 12rem; font-weight: 800; color: rgba(245,166,35,0.08);
  position: absolute; top: -2rem; left: 1rem; line-height: 1;
  font-family: Georgia, serif;
}
.quote-crd blockquote { font-size: clamp(1.2rem,2.5vw,1.65rem); font-weight: 600; color: var(--txt-light); line-height: 1.55; position: relative; z-index: 1; }
.quote-crd cite { display: block; margin-top: 1.5rem; font-size: 0.88rem; color: var(--c2); font-style: normal; font-weight: 600; }


.thanks-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 4rem var(--sp-md); }
.thanks-inner { text-align: center; max-width: 640px; }
.thanks-inner h2 { margin: 2rem 0 1rem; }
.thanks-inner p { margin-bottom: 2rem; }


.legal-body { max-width: 800px; }
.legal-body h2 { font-size: clamp(1.3rem,2.5vw,1.8rem); margin: 2.5rem 0 1rem; color: var(--c1); }
.legal-body h3 { font-size: clamp(1rem,2vw,1.25rem); margin: 2rem 0 0.75rem; color: var(--c1); }
.legal-body p { margin-bottom: 1.2rem; }
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.legal-body ul li { list-style: disc; font-size: 0.95rem; color: var(--txt-muted); margin-bottom: 0.5rem; line-height: 1.65; }
.legal-date { font-size: 0.85rem; color: var(--txt-muted); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(13,27,42,0.1); }


.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-ico {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: rgba(245,166,35,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--c2); flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 0.25rem; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--txt-muted); font-weight: 600; }
.contact-item p { font-size: 0.95rem; color: var(--txt-dark); margin: 0; }
.contact-item a { color: var(--c2); }


.grad-line {
  height: 3px; background: var(--grad-accent);
  border-radius: 3px; margin: 2rem 0;
}
.grad-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--grad-accent); display: inline-block;
}
.accent-bar {
  width: 60px; height: 4px; background: var(--grad-accent);
  border-radius: 4px; margin-bottom: 1.2rem;
}


.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: none; }


.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }


@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}

.hero-tag { animation: heroFadeUp 0.6s ease 0.1s both; }
.hero-h1 { animation: heroFadeUp 0.65s ease 0.2s both; }
.hero-p { animation: heroFadeUp 0.65s ease 0.32s both; }
.hero-btns { animation: heroFadeUp 0.65s ease 0.44s both; }
.hero-bento { animation: heroFadeIn 0.9s ease 0.35s both; }


.ck-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--c1);
  border-top: 1px solid rgba(245,166,35,0.25);
  padding: 1rem 1.5rem;
  box-shadow: 0 -8px 32px rgba(13,27,42,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.ck-bar.visible { transform: none; }

.ck-main { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.ck-txt { font-size: 0.88rem; color: rgba(249,244,236,0.78); flex: 1; min-width: 200px; }
.ck-txt a { color: var(--c2); text-decoration: underline; }
.ck-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; flex-shrink: 0; }

.ck-btn {
  font-family: 'Onest', sans-serif; font-size: 0.82rem; font-weight: 600;
  padding: 0.55rem 1.1rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.22s ease; border: none;
}
.ck-accept { background: var(--grad-accent); color: var(--c1); }
.ck-accept:hover { opacity: 0.88; transform: translateY(-1px); }
.ck-reject { background: rgba(255,255,255,0.1); color: rgba(249,244,236,0.78); border: 1px solid rgba(255,255,255,0.15); }
.ck-reject:hover { background: rgba(255,255,255,0.15); }
.ck-customize { background: transparent; color: var(--c2); border: 1px solid rgba(245,166,35,0.35); }
.ck-customize:hover { background: rgba(245,166,35,0.08); }

.ck-cats {
  display: none; flex-wrap: wrap; gap: 1rem; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}
.ck-cats.open { display: flex; }
.ck-cat { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(249,244,236,0.72); }
.ck-cat input { accent-color: var(--c2); }
.ck-save { background: var(--c2); color: var(--c1); font-family: 'Onest', sans-serif; font-size: 0.82rem; font-weight: 700; padding: 0.5rem 1.1rem; border-radius: var(--radius-sm); cursor: pointer; border: none; margin-left: auto; transition: opacity 0.22s ease; }
.ck-save:hover { opacity: 0.88; }


.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.w-full { width: 100%; }


.duo-img { position: relative; overflow: hidden; }
.duo-img img { width: 100%; height: 100%; object-fit: cover; }
.duo-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.45) 0%, rgba(245,166,35,0.25) 100%);
  mix-blend-mode: multiply; pointer-events: none;
}


.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feat-row.rev { direction: rtl; }
.feat-row.rev > * { direction: ltr; }
.feat-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.feat-img img { width: 100%; height: 420px; object-fit: cover; }
.feat-content { display: flex; flex-direction: column; gap: 1.2rem; }


.ico-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.ico-item { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.ico-item .ico-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(245,166,35,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--c2);
}


.week-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
.week-cell {
  background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.18);
  border-radius: var(--radius-md); padding: 1rem 0.75rem; text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.week-cell:hover { background: rgba(245,166,35,0.18); transform: translateY(-2px); }
.week-num { font-size: 1.3rem; font-weight: 800; color: var(--c2); }
.week-lbl { font-size: 0.72rem; color: rgba(249,244,236,0.6); margin-top: 0.2rem; }


@media (max-width: 1100px) {
  .hdr-nav { gap: 1.4rem; }
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bento-4 { grid-template-columns: repeat(2, 1fr); }
  .week-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-ham { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-bento { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .crd.span3 { grid-column: span 2; }
  .feat-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-row.rev { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cmp-grid { grid-template-columns: 1fr; }
  .frm-row { grid-template-columns: 1fr; }
  .week-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  :root { --sp-xl: 4rem; --sp-lg: 2.5rem; }
  .sec { padding: 3.5rem 1.2rem; }
  .bento { grid-template-columns: 1fr; }
  .crd.span2, .crd.span3 { grid-column: span 1; }
  .hero-bento { grid-template-columns: 1fr; }
  .hb-crd.wide { grid-column: span 1; }
  .ftr-top { grid-template-columns: 1fr; gap: 2rem; }
  .ftr-bot { flex-direction: column; align-items: flex-start; }
  .ck-main { flex-direction: column; align-items: flex-start; }
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-nav { gap: 0.25rem; }
  .tab-btn { font-size: 0.82rem; padding: 0.6rem 0.9rem; }
  .quote-crd { padding: 2.5rem 1.8rem; }
  .pg-hero { min-height: 35vh; }
}