.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.container-xs {
  width: 100%;
  max-width: var(--container-xs);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section-pad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-pad-lg {
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-pad-sm {
  padding-top: 64px;
  padding-bottom: 64px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes line-draw {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes counter-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

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

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

@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

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

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }
[data-reveal][data-delay="6"] { transition-delay: 0.6s; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), backdrop-filter 0.4s;
  max-width: 100vw;
  overflow-x: clip;
}

.site-header.scrolled {
  background: rgba(47, 90, 70, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(47, 90, 70, 0.22);
}

.site-header.header-light {
  background: transparent;
}

.site-header.header-solid {
  background: var(--c-primary);
  box-shadow: 0 2px 20px rgba(47, 90, 70, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--grad-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 20px;
  height: 20px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  display: block;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color 0.22s, background 0.22s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--c-white);
}

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

.nav-links a.active {
  color: var(--c-accent);
}

.nav-cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}

.burger:hover {
  background: rgba(255,255,255,0.10);
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.32s var(--ease-out), opacity 0.22s;
  display: block;
}

.burger.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(38, 75, 58, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 40px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--ease-out);
  max-width: 100vw;
  overflow-x: hidden;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-white);
  padding: 12px 24px;
  border-radius: var(--r-md);
  transition: color 0.22s, background 0.22s;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover {
  color: var(--c-accent);
  background: rgba(255,255,255,0.06);
}

.mobile-menu-cta {
  margin-top: 24px;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  color: var(--c-white);
  font-size: 20px;
  transition: background 0.22s;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.20);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(47,90,70,0.82) 0%, rgba(47,90,70,0.55) 50%, rgba(47,90,70,0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
}

.hero-inner {
  max-width: 720px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-top: 24px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.76);
  line-height: 1.72;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  animation: scroll-bounce 2s ease-in-out infinite;
  display: block;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

.announce-band {
  background: var(--c-primary);
  padding: 14px 0;
  overflow: hidden;
  max-width: 100vw;
}

.announce-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}

.announce-band p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}

.announce-band strong {
  color: var(--c-accent);
  font-weight: 600;
}

.announce-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(217,201,122,0.14);
  border: 1px solid rgba(217,201,122,0.32);
  border-radius: var(--r-full);
  padding: 5px 12px;
  white-space: nowrap;
}

.marquee-section {
  background: var(--c-primary);
  padding: 52px 0;
  overflow: hidden;
  max-width: 100vw;
  position: relative;
}

.js-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  max-width: 100vw;
}

.js-mq-row {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}

.js-mq-row.fwd {
  animation: marquee-fwd 55s linear infinite;
}

.js-mq-row.rev {
  animation: marquee-rev 55s linear infinite;
}

.mq-item {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0.12;
  flex-shrink: 0;
}

.mq-sep {
  opacity: 0.08;
  color: var(--c-accent);
  font-size: clamp(20px, 3vw, 38px);
  flex-shrink: 0;
}

.value-section {
  background: var(--c-bg);
  overflow: hidden;
  max-width: 100vw;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.value-left {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.value-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-primary);
}

.value-statement em {
  font-style: normal;
  color: var(--c-accent-alt);
  display: block;
}

.value-divider {
  width: 48px;
  height: 2px;
  background: var(--grad-accent);
  margin: 28px 0;
  border-radius: var(--r-full);
}

.value-lead {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.78;
}

.value-pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.value-pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.value-pillar-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 6px;
}

.value-pillar-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.value-right {
  padding-top: 8px;
}

.value-editorial {
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.82;
}

.value-editorial p + p {
  margin-top: 24px;
}

.value-pullquote {
  border-left: 3px solid var(--c-accent);
  padding: 20px 24px;
  margin: 36px 0;
  background: var(--c-bg-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.value-pullquote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.value-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.value-kw {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(47,90,70,0.08);
  border: 1px solid rgba(47,90,70,0.16);
  border-radius: var(--r-full);
  padding: 6px 14px;
}

.signature-section {
  background: var(--c-primary);
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

.signature-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.signature-inner {
  position: relative;
  z-index: 1;
}

.signature-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.signature-quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.signature-quote-text em {
  font-style: normal;
  color: var(--c-accent);
}

.signature-quote-src {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
}

.signature-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
}

.signature-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 56px;
}

.signature-stat {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.signature-stat:first-child {
  padding-left: 0;
}

.signature-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.stat-unit {
  color: var(--c-accent);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  line-height: 1.4;
}

.showcase-section {
  background: var(--grad-light);
  overflow: hidden;
  max-width: 100vw;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.showcase-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
  max-width: 520px;
  line-height: 1.12;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.showcase-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--c-primary);
  cursor: pointer;
  transition: transform 0.42s var(--ease-out), box-shadow 0.42s var(--ease-out);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.showcase-card.featured {
  grid-row: 1 / 3;
  min-height: 580px;
}

.showcase-card.standard {
  min-height: 270px;
}

.showcase-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.64s var(--ease-out);
}

.showcase-card:hover .showcase-card-img {
  transform: scale(1.04);
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,48,44,0.88) 0%, rgba(38,48,44,0.1) 55%);
}

.showcase-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.showcase-card-region {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
  display: block;
}

.showcase-card-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.showcase-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.64);
  line-height: 1.6;
  max-width: 320px;
}

.showcase-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  transition: background 0.22s, transform 0.32s var(--ease-out);
  backdrop-filter: blur(8px);
}

.showcase-card:hover .showcase-card-arrow {
  background: var(--c-accent);
  color: var(--c-primary);
  transform: rotate(45deg);
}

.insight-section {
  background: var(--c-bg);
  overflow: hidden;
  max-width: 100vw;
}

.insight-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
  align-items: start;
}

.insight-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.insight-sidebar-label {
  margin-bottom: 20px;
}

.insight-sidebar-title {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--c-primary);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 24px;
}

.insight-sidebar-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-text-muted);
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.insight-sidebar-meta span {
  display: block;
}

.insight-content {
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.84;
}

.insight-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.insight-content h3:first-child {
  margin-top: 0;
}

.insight-content p + p {
  margin-top: 20px;
}

.insight-content ul {
  margin-top: 16px;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insight-content ul li {
  padding-left: 20px;
  position: relative;
  color: var(--c-text-muted);
}

.insight-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: var(--r-full);
}

.insight-highlight {
  background: linear-gradient(135deg, rgba(47,90,70,0.07) 0%, rgba(110,143,118,0.07) 100%);
  border-left: 3px solid var(--c-primary);
  padding: 22px 28px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 32px 0;
}

.insight-highlight p {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.52;
  letter-spacing: -0.01em;
  margin: 0 !important;
}

.services-section {
  background: var(--c-bg-contrast);
  overflow: hidden;
  max-width: 100vw;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}

.services-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.services-intro {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.78;
  padding-top: 4px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(47,90,70,0.14);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(47,90,70,0.10);
  cursor: pointer;
  transition: background 0.22s;
  border-radius: var(--r-sm);
}

.service-row:hover {
  background: rgba(47,90,70,0.04);
  padding-left: 16px;
  padding-right: 16px;
}

.service-row-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--c-accent-alt);
  font-weight: 500;
}

.service-row-body {}

.service-row-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color 0.22s;
}

.service-row:hover .service-row-title {
  color: var(--c-primary);
}

.service-row-desc {
  font-size: 13.5px;
  color: var(--c-text-muted);
  line-height: 1.62;
}

.service-row-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(47,90,70,0.10);
  border-radius: var(--r-full);
  padding: 4px 10px;
  display: inline-block;
  white-space: nowrap;
}

.service-tag.accent {
  color: var(--c-accent-alt);
  background: rgba(140,107,88,0.10);
}

.timeline-section {
  background: var(--grad-light);
  overflow: hidden;
  max-width: 100vw;
}

.timeline-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.timeline-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-top: 16px;
  margin-bottom: 18px;
}

.timeline-intro {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.72;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--c-accent), rgba(217,201,122,0.15));
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 28px 0;
  position: relative;
}

.timeline-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-num {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-primary);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--c-bg);
}

.timeline-content {
  padding-top: 8px;
  padding-bottom: 8px;
}

.timeline-step {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-alt);
  margin-bottom: 8px;
}

.timeline-item-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.timeline-item-text {
  font-size: 14.5px;
  color: var(--c-text-muted);
  line-height: 1.74;
}

.proof-section {
  background: var(--c-primary);
  overflow: hidden;
  max-width: 100vw;
}

.proof-header {
  text-align: center;
  margin-bottom: 64px;
}

.proof-section-title {
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  margin-top: 14px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: background 0.32s, transform 0.36s var(--ease-out);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-stars span {
  color: var(--c-accent);
  font-size: 14px;
}

.testimonial-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--grad-forest);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.44);
}

.proof-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.proof-logo-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.22s;
}

.proof-logo-item:hover {
  color: rgba(255,255,255,0.6);
}

.cta-section {
  background: linear-gradient(140deg, #2F5A46 0%, #6E8F76 100%);
  position: relative;
  overflow: hidden;
  max-width: 100vw;
  text-align: center;
}

.cta-bg-decoration {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217,201,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-bg-decoration-2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 680px;
  margin: 16px auto 20px;
}

.cta-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.cta-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.contact-section {
  background: var(--c-bg);
  overflow: hidden;
  max-width: 100vw;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-title {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.03em;
  margin-top: 14px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.contact-info-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.76;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(47,90,70,0.10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 14.5px;
  color: var(--c-text);
  font-weight: 500;
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--c-bg-contrast);
  border-radius: var(--r-md);
  font-size: 14.5px;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color 0.24s, box-shadow 0.24s;
  outline: none;
  resize: vertical;
  line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(47, 90, 70, 0.12);
  background: var(--c-white);
}

.form-group textarea {
  min-height: 130px;
}

.site-footer {
  background: var(--c-text);
  overflow: hidden;
  max-width: 100vw;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-top: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.44);
  line-height: 1.72;
  max-width: 260px;
  margin-bottom: 28px;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.44);
  font-size: 15px;
  transition: background 0.22s, color 0.22s;
  text-decoration: none;
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.16);
  color: var(--c-white);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 20px;
}

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

.footer-col-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.56);
  transition: color 0.22s;
  line-height: 1.5;
}

.footer-col-links a:hover {
  color: var(--c-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  transition: color 0.22s;
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.6);
}

.page-hero {
  background: var(--c-primary);
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 72px;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(47,90,70,0.90) 0%, rgba(47,90,70,0.70) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.page-breadcrumb a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.44);
  transition: color 0.22s;
}

.page-breadcrumb a:hover {
  color: rgba(255,255,255,0.7);
}

.page-breadcrumb span {
  color: rgba(255,255,255,0.22);
  font-size: 11px;
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 720px;
  margin-bottom: 20px;
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  max-width: 560px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--c-bg);
  overflow: hidden;
}

.legal-body {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.82;
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-primary);
  margin-top: 48px;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.legal-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-body p + p {
  margin-top: 16px;
}

.legal-body ul, .legal-body ol {
  margin: 16px 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-body ul li {
  list-style: disc;
  color: var(--c-text-muted);
}

.legal-body ol li {
  list-style: decimal;
  color: var(--c-text-muted);
}

.legal-body strong {
  color: var(--c-text);
  font-weight: 600;
}

.legal-toc {
  background: var(--c-bg-2);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-bottom: 48px;
}

.legal-toc-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}

.legal-toc ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

.legal-toc ol li {
  list-style: decimal;
  font-size: 14px;
  color: var(--c-text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-bg-contrast);
}

.faq-item {
  border-bottom: 1px solid var(--c-bg-contrast);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.22s;
}

.faq-question:hover .faq-q-text {
  color: var(--c-primary);
}

.faq-q-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  transition: color 0.22s;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: rgba(47,90,70,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
  font-size: 16px;
  transition: background 0.22s, transform 0.32s var(--ease-out);
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.44s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 14.5px;
  color: var(--c-text-muted);
  line-height: 1.74;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,90,70,0.08);
  border: 1px solid rgba(47,90,70,0.18);
  border-radius: var(--r-md);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary);
}

.cert-badge svg {
  color: var(--c-accent);
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

@media (max-width: 1080px) {
  .container, .container-sm, .container-xs {
    padding-left: 28px;
    padding-right: 28px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .value-left {
    position: static;
  }

  .insight-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .insight-sidebar {
    position: static;
  }

  .signature-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .signature-stat {
    border-right: none;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding-bottom: 24px;
  }

  .signature-stat:nth-child(3),
  .signature-stat:last-child {
    border-bottom: none;
  }

  .signature-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-pad { padding-top: 72px; padding-bottom: 72px; }
  .section-pad-lg { padding-top: 80px; padding-bottom: 80px; }

  .container, .container-sm, .container-xs {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 52px);
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .showcase-card.featured {
    grid-row: auto;
    min-height: 360px;
  }

  .showcase-card.standard {
    min-height: 220px;
  }

  .showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .service-row-tags {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .signature-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 36px;
  }

  .signature-stat {
    text-align: left;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--r-md);
    border: none;
  }

  .timeline-track::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .proof-logos-row {
    gap: 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .announce-band-inner {
    gap: 12px;
    flex-direction: column;
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(28px, 9vw, 40px); }

  .signature-stats {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu a {
    font-size: 22px;
  }

  .contact-form-wrap {
    padding: 22px 16px;
  }
}

section,
header,
footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
