/* ================================================================
   RICHEVER FLOWER SOLUTIONS — Design System v7 "Botanical Luxury"
   ================================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600;1,700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  /* Core Colors */
  --c-forest:       #095d40;
  --c-forest-dark:  #06392b;
  --c-forest-deep:  #042218;
  --c-emerald:      #16735c;
  --c-teal:         #288286;
  --c-gold:         #ddb564;
  --c-gold-soft:    #e8c97e;
  --c-gold-light:   #f0d9a4;
  --c-gold-pale:    #faf3e0;
  --c-white:        #ffffff;
  --c-off-white:    #fafbfd;
  --c-bg:           #f4f6fc;
  --c-bg-warm:      #f8f5ef;
  --c-text:         #0d3a28;
  --c-text-mid:     #2d5a46;
  --c-text-light:   #5a7a6a;
  --c-text-muted:   #8aab98;

  /* Gradients */
  --g-forest:         linear-gradient(145deg, #042218 0%, #06392b 40%, #095d40 75%, #16735c 100%);
  --g-gold:           linear-gradient(135deg, #b8862a 0%, #ddb564 40%, #f0d9a4 100%);
  --g-hero-overlay:   linear-gradient(160deg, rgba(4,34,24,0.92) 0%, rgba(9,93,64,0.72) 55%, rgba(22,115,92,0.42) 100%);
  --g-dark-section:   linear-gradient(180deg, #042218 0%, #06392b 100%);

  /* Shadows */
  --shadow-xs: 0 2px 8px  rgba(7,48,36,0.06);
  --shadow-sm: 0 4px 16px rgba(7,48,36,0.08);
  --shadow-md: 0 8px 32px rgba(7,48,36,0.12);
  --shadow-lg: 0 16px 56px rgba(7,48,36,0.16);
  --shadow-xl: 0 28px 80px rgba(7,48,36,0.22);
  --shadow-gold: 0 8px 32px rgba(221,181,100,0.35);

  /* Borders */
  --border-soft: rgba(9,93,64,0.1);
  --border-mid:  rgba(9,93,64,0.18);
  --border-gold: rgba(221,181,100,0.38);

  /* Radius */
  --r-xs:   6px;
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  /* Transitions */
  --t:        0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:   0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-slow:   0.65s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-h: 76px;
}

/* ================================================================
   2. BASE RESET
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lexend', 'Source Sans 3', system-ui, sans-serif;
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
ul { list-style: none; }
figure { margin: 0; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
  color: var(--c-forest-dark);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw,   3.5rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-family: 'Lexend', sans-serif; font-weight: 600; }
h5 { font-size: 1rem; font-family: 'Lexend', sans-serif; font-weight: 600; }
p  { line-height: 1.78; color: var(--c-text-mid); }

/* ================================================================
   4. KEYFRAME ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(2.5deg); }
  66%       { transform: translateY(-7px)  rotate(-1.5deg); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(221,181,100,0.25), 0 0 32px rgba(221,181,100,0.1); }
  50%       { box-shadow: 0 0 32px rgba(221,181,100,0.5), 0 0 64px rgba(221,181,100,0.2); }
}

@keyframes gradient-bg {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

@keyframes shimmer-btn {
  0%   { left: -100%; }
  100% { left: 200%; }
}

@keyframes petal-fall {
  0%   { transform: translateY(-80px) rotate(0deg)   scale(0.8); opacity: 0; }
  10%  { opacity: 0.55; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(110vh) rotate(400deg) scale(1.1); opacity: 0; }
}

/* ================================================================
   5. UIKit STRUCTURAL OVERRIDES
   ================================================================ */
.uk-container {
  max-width: 1240px;
  padding-inline: clamp(20px, 5vw, 72px);
}

.uk-section {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.uk-section-large {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

/* ================================================================
   6. LAYOUT
   ================================================================ */
#wrapper { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ================================================================
   7. SESSION APPEAR (from session-effects.js)
   ================================================================ */
.session-appear-pending {
  opacity: 0;
  transform: translateY(28px);
}

.session-appear-inview {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Nested pending items become visible when their parent section comes into view */
.session-appear-inview .session-appear-pending {
  opacity: 1;
  transform: none;
  transition: opacity 0.72s ease 0.32s, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.32s;
}

/* Staggered children */
.session-appear-inview .session-hover-item:nth-child(1) { transition-delay: 0.05s; }
.session-appear-inview .session-hover-item:nth-child(2) { transition-delay: 0.12s; }
.session-appear-inview .session-hover-item:nth-child(3) { transition-delay: 0.19s; }
.session-appear-inview .session-hover-item:nth-child(4) { transition-delay: 0.26s; }
.session-appear-inview .session-hover-item:nth-child(5) { transition-delay: 0.33s; }

/* Compare board FX */
.why-compare-board.compare-fx-active .why-compare-row {
  animation: fadeUp 0.5s ease both;
}
.why-compare-board.compare-fx-active .why-compare-row:nth-child(2) { animation-delay: 0.07s; }
.why-compare-board.compare-fx-active .why-compare-row:nth-child(3) { animation-delay: 0.14s; }
.why-compare-board.compare-fx-active .why-compare-row:nth-child(4) { animation-delay: 0.21s; }
.why-compare-board.compare-fx-active .why-compare-row:nth-child(5) { animation-delay: 0.28s; }
.why-compare-board.compare-fx-active .why-compare-row:nth-child(6) { animation-delay: 0.35s; }
.why-compare-board.compare-fx-active .why-compare-row:nth-child(7) { animation-delay: 0.42s; }

/* ================================================================
   8. SCROLL PROGRESS BAR
   ================================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-forest) 0%, var(--c-emerald) 30%, var(--c-gold) 70%, var(--c-gold-light) 100%);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ================================================================
   9. HEADER
   ================================================================ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  transition: background-color var(--t), box-shadow var(--t);
  background: transparent;
}

/* Homepage hero — dark gradient overlay */
.homepage header {
  background: linear-gradient(180deg, rgba(4,34,24,0.72) 0%, transparent 100%);
}

/* Scrolled state + inner pages */
header.is-scrolled,
.page-solutions header,
.page-why header,
.page-contact header {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px) saturate(1.9);
  -webkit-backdrop-filter: blur(24px) saturate(1.9);
  box-shadow: 0 1px 0 rgba(9,93,64,0.1), var(--shadow-sm);
}

.header-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* === LOGO === */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-link img {
  height: 42px;
  width: auto;
  transition: transform var(--t-spring);
}
.logo-link:hover img { transform: scale(1.05); }

.logo-subtitle {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-text-light);
  max-width: 120px;
  line-height: 1.3;
  display: none;
}

/* Show subtitle on scrolled or inner pages */
header.is-scrolled .logo-subtitle,
.page-solutions .logo-subtitle,
.page-why .logo-subtitle,
.page-contact .logo-subtitle { display: block; }

/* === HEADER RIGHT === */
.header-right { display: flex; align-items: center; gap: 16px; }

/* === LANGUAGE SWITCHER === */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(9,93,64,0.06);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  padding: 3px;
}

/* On dark homepage header */
.homepage header:not(.is-scrolled) .lang-switcher {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-text-light);
  transition: all var(--t);
  white-space: nowrap;
}

.lang-btn:hover { color: var(--c-forest); }

.lang-btn.is-active {
  background: var(--c-forest);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.homepage header:not(.is-scrolled) .lang-btn { color: rgba(255,255,255,0.75); }
.homepage header:not(.is-scrolled) .lang-btn:hover { color: #fff; }
.homepage header:not(.is-scrolled) .lang-btn.is-active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Flag icons */
.flag-icon { display: inline-block; font-size: 0.95rem; line-height: 1; }
.flag-vi::before { content: '🇻🇳'; }
.flag-en::before { content: '🇬🇧'; }

/* === TOP NAV === */
.top-nav { display: flex; align-items: center; }

/* === BOTTOM NAV (desktop) === */
.bottom-nav { display: none; }
@media (min-width: 1024px) { .bottom-nav { display: block; } }

.menu-wrapper { display: flex; align-items: center; }
.menu-nav { display: flex; align-items: center; gap: 2px; }
.menu-nav > li { position: relative; }

.menu-nav > li > a {
  display: flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-text);
  border-radius: var(--r-sm);
  transition: all var(--t);
  white-space: nowrap;
  position: relative;
}

/* Underline bar */
.menu-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-spring);
}
.menu-nav > li.active > a::after,
.menu-nav > li:hover  > a::after { transform: scaleX(1); }

.menu-nav > li > a:hover,
.menu-nav > li.active > a { color: var(--c-forest); }

/* Dark homepage nav */
.homepage header:not(.is-scrolled) .menu-nav > li > a { color: rgba(255,255,255,0.88); }
.homepage header:not(.is-scrolled) .menu-nav > li > a:hover,
.homepage header:not(.is-scrolled) .menu-nav > li.active > a { color: #fff; }

/* Submenu caret */
.has-submenu > a { padding-right: 24px; }
.has-submenu > a::before {
  content: '';
  position: absolute;
  right: 8px; top: 50%;
  margin-top: 2px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(-50%);
}

/* === SUBMENU === */
.menu-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 246px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 8px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(9,93,64,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
  z-index: 400;
}

.has-submenu:hover .menu-submenu,
.has-submenu:focus-within .menu-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.menu-submenu li a {
  display: block;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-light);
  border-radius: var(--r-xs);
  transition: all var(--t);
}

.menu-submenu li a:hover {
  background: var(--c-gold-pale);
  color: var(--c-forest);
  padding-left: 20px;
}

/* === MOBILE TOGGLE === */
.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  color: var(--c-forest);
  background: rgba(9,93,64,0.07);
  transition: all var(--t);
}
.mobile-menu-button:hover { background: rgba(9,93,64,0.14); }
.homepage header:not(.is-scrolled) .mobile-menu-button { color: #fff; background: rgba(255,255,255,0.14); }
@media (min-width: 1024px) { .mobile-menu-button { display: none; } }

/* ================================================================
   10. MOBILE OFFCANVAS
   ================================================================ */
.richever-mobile-offcanvas .uk-offcanvas-bar {
  background: var(--c-forest-dark);
  padding: 30px 22px;
  width: 290px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.richever-mobile-menu-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.richever-mobile-menu-title img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.richever-mobile-menu-title strong { display: block; font-size: 0.95rem; font-family: 'Playfair Display', serif; color: #fff; }
.richever-mobile-menu-title small { font-size: 0.7rem; color: rgba(255,255,255,0.45); }

.uk-offcanvas-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  transition: all var(--t);
  font-size: 1.2rem;
}
.uk-offcanvas-close:hover { background: rgba(255,255,255,0.16); color: #fff; }

.richever-mobile-offcanvas .uk-nav-default > li > a {
  padding: 13px 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all var(--t);
  display: block;
}
.richever-mobile-offcanvas .uk-nav-default > li > a:hover,
.richever-mobile-offcanvas .uk-nav-default > li.uk-active > a { color: #fff; padding-left: 10px; }
.richever-mobile-offcanvas .uk-nav-default > li.uk-active > a { color: var(--c-gold); }

.richever-mobile-lang {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.richever-mobile-lang .lang-switcher { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.richever-mobile-lang .lang-btn { color: rgba(255,255,255,0.65); }
.richever-mobile-lang .lang-btn.is-active { background: var(--c-gold); color: var(--c-forest-dark); }

/* ================================================================
   11. HOME BANNER / HERO
   ================================================================ */
.banner-home {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.banner-home .uk-position,
.banner-home .uk-slideshow-items { height: 100%; }

.banner-home .uk-slideshow-items > li {
  overflow: hidden;
  position: relative;
}

/* Dark overlay per slide */
.banner-home .uk-slideshow-items > li::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-hero-overlay);
  z-index: 2;
}

/* Slide image */
.banner-home .uk-slideshow-items > li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 10s ease;
  filter: saturate(1.1) brightness(0.92);
}
.banner-home .uk-slideshow-items > li.uk-active img { transform: scale(1); }

/* Ambient light */
.banner-home::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(221,181,100,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 75%, rgba(9,93,64,0.14) 0%, transparent 50%);
  pointer-events: none;
}

/* Dot navigation */
.banner-pagination {
  position: absolute;
  bottom: 44px; left: 0; right: 0;
  z-index: 10;
}

.uk-dotnav.uk-slideshow-nav {
  display: flex;
  gap: 8px;
}

.uk-dotnav.uk-slideshow-nav > * > * {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all var(--t);
  display: block;
}

.uk-dotnav.uk-slideshow-nav > .uk-active > * {
  width: 28px;
  background: var(--c-gold);
}

/* Hero overlay content */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-overlay .uk-container { width: 100%; }

.hero-content {
  max-width: 720px;
  padding-top: var(--header-h);
  animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.08;
  font-style: italic;
  text-shadow: 0 3px 24px rgba(0,0,0,0.28);
}

/* Scroll line */
.hero-content::after {
  content: '';
  display: block;
  width: 1px; height: 56px;
  background: linear-gradient(180deg, var(--c-gold) 0%, transparent 100%);
  margin-top: 48px;
  animation: float-gentle 2.5s ease infinite;
}

/* ================================================================
   12. SECTION TITLE (shared)
   ================================================================ */
.section-title { margin-bottom: 56px; }

.section-title.uk-text-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title h3 { position: relative; display: inline-block; }

.section-title h3::after {
  content: '';
  display: block;
  height: 3px;
  width: 56px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  margin-top: 14px;
}
.section-title.uk-text-center h3::after { margin-inline: auto; }

/* Small caps eyebrow above title */
.section-title > p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}

/* Title with icon */
.story-title-with-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.story-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: var(--g-forest);
  border-radius: var(--r-md);
  color: var(--c-gold);
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(9,93,64,0.28);
}
.story-title-icon svg { width: 22px; height: 22px; }

/* ================================================================
   13. HOME SHARED STORY
   ================================================================ */
.home-story { position: relative; overflow: hidden; }

/* Decorative floating shapes */
.story-scene { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.story-shape { position: absolute; overflow: hidden; }
.story-shape img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) brightness(0.85); }
.story-shape--diamond { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.story-shape--bubble   { border-radius: 62% 38% 34% 66% / 56% 32% 68% 44%; }

/* Shape positions */
.story-shape--intro-1   { width: 200px; height: 200px; top: -50px; right: -30px; opacity: 0.1;  animation: float 8s  ease-in-out infinite; }
.story-shape--intro-2   { width: 130px; height: 130px; bottom: 30px; right: 6%;  opacity: 0.06; animation: float 11s ease-in-out infinite reverse; }
.story-shape--vision-1  { width: 240px; height: 240px; top: -60px; left: -50px;  opacity: 0.06; animation: float 9s  ease-in-out infinite; }
.story-shape--vision-2  { width: 160px; height: 160px; bottom: -40px; right: -20px; opacity: 0.05; animation: float 12s ease-in-out infinite reverse; }
.story-shape--mission-1 { width: 180px; height: 180px; top: 20px; right: 4%;    opacity: 0.06; animation: float 7s  ease-in-out infinite; }
.story-shape--mission-2 { width: 140px; height: 140px; bottom: 40px; left: 2%;  opacity: 0.04; animation: float 10s ease-in-out infinite reverse; }
.story-shape--core-1    { width: 260px; height: 260px; top: -70px; right: -40px; opacity: 0.06; animation: float 9s  ease-in-out infinite; }
.story-shape--core-2    { width: 190px; height: 190px; bottom: -50px; left: 4%; opacity: 0.04; animation: float 7s  ease-in-out infinite reverse; }

/* ================================================================
   14. HOME — INTRO
   ================================================================ */
.home-story--intro { background: var(--c-bg-warm); }
.home-story .uk-container { position: relative; z-index: 1; }
.home-story-layout { align-items: center; }

.home-story-panel {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Left accent */
.home-story-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--g-forest);
  border-radius: 2px 0 0 2px;
}

.home-story-panel p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--c-text-mid);
}

/* Image */
.home-story-intro-visual { position: relative; }

.home-story-intro-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.home-story-intro-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(9,93,64,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.home-story-intro-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.home-story-intro-media:hover img { transform: scale(1.05); }

/* Gold accent frame */
.home-story-intro-visual::before {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 120px; height: 120px;
  border: 3px solid var(--c-gold);
  border-radius: var(--r-md);
  z-index: -1;
  opacity: 0.45;
}
.home-story-intro-visual::after {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 80px; height: 80px;
  border: 2px solid var(--c-emerald);
  border-radius: var(--r-sm);
  z-index: -1;
  opacity: 0.25;
}

/* ================================================================
   15. HOME — VISION (Dark)
   ================================================================ */
.home-story--vision {
  background: var(--g-dark-section);
  position: relative;
}
.home-story--vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(221,181,100,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 92% 12%, rgba(22,115,92,0.18) 0%, transparent 55%);
  pointer-events: none;
}

.home-story--vision .story-title-with-icon { color: #fff; }
.home-story--vision .section-title h3::after { background: linear-gradient(90deg, var(--c-gold), transparent); }

/* Glass panel */
.home-story-panel--glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  max-width: 840px;
  margin: 0 auto;
}
.home-story-panel--glass::before {
  background: linear-gradient(180deg, var(--c-gold) 0%, rgba(221,181,100,0.25) 100%);
}
.home-story-panel--glass p {
  color: rgba(255,255,255,0.83);
  font-size: 1.08rem;
  line-height: 1.88;
}
.home-story-panel--glass p + p {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ================================================================
   16. HOME — MISSION
   ================================================================ */
.home-story--mission { background: var(--c-bg); }
.home-story-panel--mission-list { max-width: 880px; margin: 0 auto; }

.home-story-lead {
  font-size: 1.12rem;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--c-forest);
  margin-bottom: 28px;
}

.home-story-list { display: flex; flex-direction: column; gap: 16px; }

.home-story-list > li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.home-story-list > li::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(9,93,64,0.03);
  transition: width var(--t-slow);
  pointer-events: none;
}

.home-story-list > li:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.home-story-list > li:hover::before { width: 100%; }

.mission-bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--g-forest);
  border-radius: var(--r-sm);
  color: var(--c-gold);
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.mission-bullet-icon svg { width: 20px; height: 20px; }

.home-story-list > li > span:last-child {
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--c-text-mid);
  padding-top: 6px;
  position: relative;
  z-index: 1;
}

/* ================================================================
   17. HOME — CORE VALUES (Dark)
   ================================================================ */
.home-story--core {
  background: var(--c-forest-dark);
  position: relative;
}
.home-story--core::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(221,181,100,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(22,115,92,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.home-story--core .story-title-with-icon { color: #fff; }
.home-story--core .section-title h3::after { background: linear-gradient(90deg, var(--c-gold), transparent); }

.home-core-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all var(--t);
  cursor: default;
}

/* Gold top-line on hover */
.home-core-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-spring);
}

.home-core-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(221,181,100,0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32), 0 0 0 1px rgba(221,181,100,0.12);
}
.home-core-card:hover::before { transform: scaleX(1); }

.home-core-card h4 {
  color: var(--c-gold-light);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Lexend', sans-serif;
  line-height: 1.3;
}
.home-core-card p { color: rgba(255,255,255,0.58); font-size: 0.9rem; line-height: 1.72; }

/* Grid match */
.home-story--core .uk-grid-match > div { display: flex; }
.home-story--core .uk-grid-match > div > article { flex: 1; }

/* ================================================================
   18. INNER PAGE HERO
   ================================================================ */
.page-hero {
  position: relative;
  height: clamp(300px, 38vh, 460px);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
  margin-top: var(--header-h);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(4,34,24,0.92) 0%, rgba(9,93,64,0.72) 50%, rgba(22,115,92,0.5) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(0deg, rgba(4,34,24,0.55) 0%, transparent 100%);
}
.page-hero .uk-container { position: relative; z-index: 2; }
.page-hero .hero-content { animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-style: italic;
  text-shadow: 0 3px 18px rgba(0,0,0,0.28);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* ================================================================
   19. SOLUTIONS PAGE
   ================================================================ */
.solutions-catalog-section { background: var(--c-bg); }

.solution-session {
  padding-block: clamp(52px, 6vw, 84px);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.solution-session:last-child { border-bottom: none; }

/* Alternating layout */
.solution-session.is-alt .solution-session-layout { direction: rtl; }
.solution-session.is-alt .solution-session-layout > * { direction: ltr; }
.solution-session.is-alt { background: rgba(9,93,64,0.018); }

.solution-session-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.solution-session-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(221,181,100,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.solution-session-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.solution-session-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}

.solution-session-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  flex-shrink: 0;
  background: var(--g-forest);
  border-radius: var(--r-md);
  color: var(--c-gold);
  box-shadow: 0 8px 22px rgba(9,93,64,0.25);
}
.solution-session-icon svg { width: 26px; height: 26px; }

.solution-session-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 5px;
}
.solution-session-card h4 {
  color: var(--c-forest-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.solution-session-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.solution-session-list > li {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--c-text-mid);
  padding-left: 14px;
  border-left: 2px solid var(--border-soft);
  transition: border-color var(--t), padding-left var(--t);
}
.solution-session-list > li:hover { border-color: var(--c-gold); padding-left: 18px; }
.solution-session-list strong { color: var(--c-forest); font-weight: 600; }

.solution-session-note {
  font-size: 0.88rem;
  font-weight: 500;
  font-style: italic;
  color: var(--c-emerald);
  padding: 13px 18px;
  background: rgba(9,93,64,0.05);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-emerald);
}

/* ALBUM SLIDER */
.solution-album {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--c-forest-deep);
}
.solution-album::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.solution-album-track { position: relative; width: 100%; overflow: hidden; }
.solution-album-slide { display: none; margin: 0; }
.solution-album-slide.is-active { display: block; animation: fadeIn 0.55s ease; }
.solution-album-slide img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.solution-album:hover .solution-album-slide.is-active img { transform: scale(1.04); }

.solution-album-controls {
  position: absolute;
  bottom: 18px; right: 18px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.solution-album-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--t);
}
.solution-album-control:hover {
  background: var(--c-gold);
  color: var(--c-forest-dark);
  border-color: var(--c-gold);
  transform: scale(1.1);
}
.solution-album-control svg { width: 18px; height: 18px; stroke-width: 2; }

/* ================================================================
   20. WHY CHOOSE — BRAND
   ================================================================ */
.why-brand-session { background: var(--c-bg-warm); }
.why-brand-shell { align-items: center; }

.why-brand-panel {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-brand-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--g-forest);
  border-radius: 2px 0 0 2px;
}

.why-brand-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: var(--g-forest);
  border-radius: var(--r-md);
  color: var(--c-gold);
  margin-bottom: 22px;
  box-shadow: 0 8px 22px rgba(9,93,64,0.25);
}
.why-brand-panel-icon svg { width: 27px; height: 27px; }

.why-brand-panel > p { font-size: 1rem; line-height: 1.82; color: var(--c-text-mid); margin-bottom: 26px; }

.why-brand-definition {
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  margin-bottom: 22px;
}
.why-brand-definition h4 { color: var(--c-forest); font-size: 0.95rem; margin-bottom: 6px; }
.why-brand-definition p  { color: var(--c-text-muted); font-size: 0.88rem; }

.why-brand-metrics { display: flex; flex-direction: column; gap: 14px; }
.why-brand-metrics > article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--c-bg);
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: all var(--t);
}
.why-brand-metrics > article:hover { background: rgba(9,93,64,0.04); border-color: var(--border-mid); transform: translateX(5px); }

.why-metric-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--g-forest);
  border-radius: var(--r-sm);
  color: var(--c-gold);
  flex-shrink: 0;
}
.why-metric-icon svg { width: 17px; height: 17px; }
.why-brand-metrics > article strong { display: block; font-size: 0.87rem; font-weight: 700; color: var(--c-forest-dark); margin-bottom: 2px; }
.why-brand-metrics > article span   { font-size: 0.8rem; color: var(--c-text-light); line-height: 1.4; }

.why-brand-side { position: relative; }
.why-brand-side::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 90px; height: 90px;
  border: 2px solid var(--c-gold);
  border-radius: var(--r-md);
  opacity: 0.38;
  z-index: -1;
}

.why-brand-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.why-brand-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(9,93,64,0.12) 0%, transparent 55%);
}
.why-brand-media img {
  width: 100%; height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.why-brand-side:hover .why-brand-media img { transform: scale(1.04); }

/* ================================================================
   21. WHY CHOOSE — COMPARE TABLE
   ================================================================ */
.why-compare-section { background: var(--c-forest-dark); position: relative; overflow: hidden; }
.why-compare-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(221,181,100,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(22,115,92,0.12) 0%, transparent 50%);
}
.why-compare-section .section-title h3 { color: #fff; }
.why-compare-section .section-title h3::after { background: linear-gradient(90deg, var(--c-gold), transparent); }

.why-compare-board {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.why-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, rgba(221,181,100,0.16) 0%, rgba(9,93,64,0.32) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.why-compare-header > span {
  padding: 18px 22px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.why-compare-header > span:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.08); }

.why-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  transition: background var(--t);
}
.why-compare-row:hover { background: rgba(255,255,255,0.025); }
.why-compare-row:last-child { border-bottom: none; }

.why-compare-row h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 22px;
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  font-family: 'Lexend', sans-serif;
  border-right: 1px solid rgba(255,255,255,0.055);
}
.why-criterion-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-xs);
  color: var(--c-gold-soft);
  flex-shrink: 0;
}
.why-criterion-icon svg { width: 14px; height: 14px; }

.why-compare-row p { padding: 17px 22px; font-size: 0.84rem; line-height: 1.6; }
.why-compare-row .is-self { color: rgba(255,255,255,0.38); border-right: 1px solid rgba(255,255,255,0.055); }
.why-compare-row .is-rich { color: var(--c-gold-light); font-weight: 500; position: relative; padding-left: 34px; }
.why-compare-row .is-rich::before {
  content: '✓';
  position: absolute;
  left: 12px; top: 17px;
  color: var(--c-gold);
  font-weight: 800;
  font-size: 0.88rem;
}

/* ================================================================
   22. WHY CHOOSE — FIT TARGET
   ================================================================ */
.why-fit-target-section { background: var(--c-bg); }

.why-fit-target-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 22px;
  text-align: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all var(--t-spring);
}
.why-fit-target-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.why-fit-target-icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--g-forest);
  border-radius: var(--r-md);
  color: var(--c-gold);
  box-shadow: 0 8px 22px rgba(9,93,64,0.25);
  transition: transform var(--t-spring);
}
.why-fit-target-card:hover .why-fit-target-icon { transform: rotate(-8deg) scale(1.12); }
.why-fit-target-icon svg { width: 28px; height: 28px; }
.why-fit-target-card p { font-size: 0.87rem; font-weight: 500; color: var(--c-text-mid); line-height: 1.55; }

/* ================================================================
   23. WHY CHOOSE — DIFFERENCE (Dark animated)
   ================================================================ */
.why-difference-section {
  position: relative;
  background-color: var(--c-forest-dark);
  background-image: linear-gradient(135deg, #042218 0%, #0a4731 50%, #042218 100%);
  background-size: 200% 200%;
  animation: gradient-bg 14s ease infinite;
}
.fit-difference-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(22,115,92,0.18) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M32 8l8 8-8 8-8-8zM32 40l8 8-8 8-8-8z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.fit-difference-shell { position: relative; z-index: 1; }
.fit-difference-shell .section-title h3 { color: #fff; }
.fit-difference-shell .section-title h3::after { background: linear-gradient(90deg, var(--c-gold), transparent); }

.fit-difference-grid { margin-top: 28px; }

.fit-difference-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  transition: all var(--t);
  height: 100%;
}
.fit-difference-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(221,181,100,0.22);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.fit-difference-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(221,181,100,0.12);
  border-radius: var(--r-sm);
  color: var(--c-gold);
  border: 1px solid rgba(221,181,100,0.18);
}
.fit-difference-icon svg { width: 20px; height: 20px; }
.fit-difference-content h4 { color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; font-family: 'Lexend', sans-serif; }
.fit-difference-content p  { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.62; }

.why-difference-highlight {
  background: rgba(221,181,100,0.07);
  border: 1px solid rgba(221,181,100,0.18);
  border-radius: var(--r-xl);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
  height: 100%;
  justify-content: center;
}
.why-difference-highlight-icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: rgba(221,181,100,0.12);
  border-radius: 50%;
  color: var(--c-gold);
  animation: pulse-glow 3.5s ease infinite;
}
.why-difference-highlight-icon svg { width: 30px; height: 30px; }
.why-difference-highlight p {
  font-size: 1.08rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--c-gold-light);
  line-height: 1.65;
}

/* ================================================================
   24. WHY CHOOSE — PROCESS
   ================================================================ */
.fit-process { background: var(--c-bg-warm); position: relative; }

.fit-process-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
  color: var(--c-text-mid);
  line-height: 1.82;
}

.fit-process-track { position: relative; }

.fit-process-line {
  position: absolute;
  top: 52px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold) 25%, var(--c-emerald) 50%, var(--c-gold) 75%, transparent);
  opacity: 0.35;
}
@media (max-width: 767px) { .fit-process-line { display: none; } }

.fit-process-list { gap: 28px !important; }

.fit-process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.fit-bevel-corner {
  width: 86px; height: 86px;
  background: var(--g-forest);
  clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(9,93,64,0.3);
  transition: transform var(--t-spring), box-shadow var(--t);
  position: relative;
  z-index: 1;
}
.fit-bevel-content { display: flex; align-items: center; justify-content: center; }
.fit-process-item:hover .fit-bevel-corner {
  transform: translateY(-7px) scale(1.06);
  box-shadow: 0 22px 44px rgba(9,93,64,0.42), var(--shadow-gold);
}
.fit-process-node-icon { color: var(--c-gold); }
.fit-process-node-icon svg { width: 28px; height: 28px; }
.fit-process-caption { font-weight: 700; font-size: 0.87rem; color: var(--c-forest-dark); line-height: 1.4; max-width: 176px; }
.fit-process-desc    { font-size: 0.8rem; color: var(--c-text-light); line-height: 1.62; max-width: 176px; }

.fit-process-highlight {
  text-align: center;
  margin-top: 56px;
  font-size: 1rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--c-forest);
  padding: 18px 36px;
  background: rgba(9,93,64,0.06);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-soft);
  max-width: 580px;
  margin-inline: auto;
}

/* ================================================================
   25. WHY CHOOSE — SCOPE
   ================================================================ */
.why-scope-section { background: var(--c-bg); }

.fit-scope-title {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--c-forest-dark);
  max-width: 580px;
  margin: 8px auto 0;
  line-height: 1.3;
}

.why-scope-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--t-spring);
}
.why-scope-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.why-scope-media {
  overflow: hidden;
  height: 216px;
  position: relative;
  flex-shrink: 0;
}
.why-scope-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.why-scope-card:hover .why-scope-media img { transform: scale(1.08); }
.why-scope-media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(0deg, #fff 0%, transparent 100%);
}

.why-scope-head { display: flex; align-items: flex-start; gap: 13px; padding: 22px 22px 10px; }
.why-scope-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--g-forest);
  border-radius: var(--r-sm);
  color: var(--c-gold);
  flex-shrink: 0;
}
.why-scope-icon svg { width: 19px; height: 19px; }
.why-scope-card h4 { font-size: 0.94rem; font-weight: 700; color: var(--c-forest-dark); font-family: 'Lexend', sans-serif; line-height: 1.35; }
.why-scope-card > p { padding: 0 22px 22px; font-size: 0.86rem; color: var(--c-text-light); line-height: 1.65; flex: 1; }

/* ================================================================
   26. WHY CHOOSE — CONCLUSION
   ================================================================ */
.why-conclusion-section { background: var(--c-forest-deep); position: relative; overflow: hidden; }
.why-conclusion-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(221,181,100,0.07) 0%, transparent 70%);
}

.why-conclusion-shell {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-conclusion-accent { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.why-conclusion-icon {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  background: rgba(221,181,100,0.12);
  border-radius: 50%;
  color: var(--c-gold);
  animation: pulse-glow 3.5s ease infinite;
}
.why-conclusion-icon svg { width: 26px; height: 26px; }
.why-conclusion-line { width: 1px; height: 44px; background: linear-gradient(180deg, var(--c-gold) 0%, transparent 100%); }

.why-conclusion-text {
  font-size: clamp(0.98rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.85;
  padding-top: 6px;
}
.why-conclusion-text strong { color: var(--c-gold-light); font-style: normal; font-weight: 700; }

/* ================================================================
   27. CONTACT — COOPERATE
   ================================================================ */
.contact-cooperate-section { background: var(--c-bg); }

.contact-cooperate-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-cooperate-overview,
.contact-cooperate-points {
  background: #fff;
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.contact-cooperate-overview h4,
.contact-cooperate-points h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--c-forest-dark);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-gold);
  display: inline-block;
}

.contact-cooperate-overview p {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--c-text-mid);
  margin-bottom: 10px;
}
.contact-cooperate-cta {
  margin-top: 18px;
  padding: 13px 18px;
  background: rgba(9,93,64,0.05);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-emerald);
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

.icon-list { display: flex; flex-direction: column; gap: 10px; }
.icon-list > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.65;
  padding: 10px 13px;
  border-radius: var(--r-sm);
  background: var(--c-bg);
  border: 1px solid transparent;
  transition: all var(--t);
}
.icon-list > li::before { content: '→'; color: var(--c-gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.icon-list > li:hover { background: rgba(9,93,64,0.04); border-color: var(--border-soft); transform: translateX(5px); }

/* ================================================================
   28. CONTACT HUB (Dark)
   ================================================================ */
.contact-hub-section { background: var(--c-forest-dark); position: relative; overflow: hidden; }
.contact-hub-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(221,181,100,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(22,115,92,0.1) 0%, transparent 50%);
}
.contact-hub-section .section-title h3 { color: #fff; }
.contact-hub-section .section-title h3::after { background: linear-gradient(90deg, var(--c-gold), transparent); }

.contact-ttc-shell {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.contact-ttc-form-card {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.contact-ttc-form-card h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Lexend', sans-serif;
}

.contact-ttc-form { display: flex; flex-direction: column; gap: 18px; }
.contact-ttc-field { display: flex; flex-direction: column; gap: 7px; }
.contact-ttc-field span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.contact-ttc-field input,
.contact-ttc-field textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  transition: all var(--t);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.contact-ttc-field input::placeholder,
.contact-ttc-field textarea::placeholder { color: rgba(255,255,255,0.28); }
.contact-ttc-field input:focus,
.contact-ttc-field textarea:focus {
  border-color: var(--c-gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(221,181,100,0.14);
}
.contact-ttc-field textarea { resize: vertical; min-height: 120px; }

.contact-ttc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Submit button */
.contact-ttc-submit {
  background: linear-gradient(135deg, #b8862a 0%, var(--c-gold) 45%, var(--c-gold-soft) 100%);
  background-size: 200% auto;
  color: var(--c-forest-deep);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all var(--t-spring);
  box-shadow: var(--shadow-gold);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.contact-ttc-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer-btn 2.5s linear infinite;
}
.contact-ttc-submit:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(221,181,100,0.52);
}
.contact-ttc-submit:active { transform: translateY(0) scale(0.99); }

.contact-ttc-status { font-size: 0.84rem; color: rgba(255,255,255,0.65); min-height: 20px; }

.contact-ttc-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 48px);
}
.contact-ttc-info-card h4 { color: #fff; font-size: 1.08rem; font-weight: 700; margin-bottom: 24px; font-family: 'Lexend', sans-serif; }

.contact-ttc-contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-ttc-contact-list > li { display: flex; align-items: flex-start; gap: 14px; }

.contact-ttc-info-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(221,181,100,0.1);
  border-radius: var(--r-sm);
  color: var(--c-gold);
  flex-shrink: 0;
  border: 1px solid rgba(221,181,100,0.18);
}
.contact-ttc-info-icon svg { width: 19px; height: 19px; }

.contact-ttc-contact-list > li > div p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  margin-bottom: 3px;
}
.contact-ttc-contact-list > li > div a { color: rgba(255,255,255,0.82); font-size: 0.97rem; font-weight: 500; }
.contact-ttc-contact-list > li > div a:hover { color: var(--c-gold); }

.contact-ttc-company-block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.contact-ttc-company-block h5 { color: var(--c-gold-light); font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.contact-ttc-company-block p  { color: rgba(255,255,255,0.38); font-size: 0.8rem; }

.contact-ttc-social { display: flex; gap: 10px; margin-top: 22px; }
.contact-ttc-social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--t-spring);
  overflow: hidden;
}
.contact-ttc-social-btn img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.contact-ttc-social-btn:hover {
  background: rgba(221,181,100,0.14);
  border-color: rgba(221,181,100,0.28);
  transform: translateY(-4px) scale(1.08);
}

/* ================================================================
   29. FOOTER
   ================================================================ */
.site-footer {
  background: var(--c-forest-deep);
  position: relative;
  overflow: hidden;
  padding-block: 44px;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--c-gold) 50%, transparent 100%);
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(9,93,64,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.footer-grid { position: relative; z-index: 1; align-items: center; }
.footer-brand { display: flex; align-items: center; }
.footer-logo { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: 0.8; transition: opacity var(--t); }
.footer-logo:hover { opacity: 1; }

.footer-company-name { font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.footer-company-name strong { color: rgba(255,255,255,0.82); font-weight: 600; }
.footer-company-tax { font-size: 0.73rem; color: rgba(255,255,255,0.3); margin-bottom: 14px; letter-spacing: 0.05em; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  transition: color var(--t);
}
.footer-contact-item:hover { color: rgba(255,255,255,0.78); }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--c-gold); }
.footer-contact-icon {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-icon svg { width: 15px; height: 15px; }

/* Google Translate holder */
.google-translate-holder { display: none; }

/* ================================================================
   30. UTILITIES & MISC
   ================================================================ */
.section-footnote { font-size: 0.88rem; color: var(--c-text-muted); text-align: center; margin-top: 28px; }

/* ================================================================
   31. RESPONSIVE — TABLET
   ================================================================ */
@media (max-width: 1023px) {
  .bottom-nav { display: none; }
  .mobile-menu-button { display: flex; }
  .top-nav { display: flex; }

  .contact-ttc-shell { grid-template-columns: 1fr; }
  .why-brand-shell .uk-width-3-5\@l,
  .why-brand-shell .uk-width-2-5\@l { width: 100%; }
}

/* ================================================================
   32. RESPONSIVE — MOBILE
   ================================================================ */
@media (max-width: 767px) {
  :root { --header-h: 66px; }

  .hero-content h1 { font-size: 2.2rem; }
  .page-hero { background-attachment: scroll; }

  .home-story-layout .uk-width-1-3\@l,
  .home-story-layout .uk-width-2-3\@l { width: 100% !important; padding-left: 0; }
  .home-story-layout { flex-direction: column; }
  .home-story-intro-visual { order: -1; }

  .why-brand-shell .uk-width-3-5\@l,
  .why-brand-shell .uk-width-2-5\@l { width: 100% !important; }

  .why-compare-board { overflow-x: auto; }
  .why-compare-header, .why-compare-row { min-width: 580px; }
  .why-conclusion-shell { flex-direction: column; align-items: flex-start; }

  .solution-session.is-alt .solution-session-layout { direction: ltr; }

  .contact-cooperate-shell { grid-template-columns: 1fr; }
  .contact-ttc-row { grid-template-columns: 1fr; }

  .footer-grid .uk-width-1-2\@s { width: 100%; }
  .footer-grid { gap: 28px; }
}

/* ================================================================
   33. RESPONSIVE — SMALL MOBILE
   ================================================================ */
@media (max-width: 479px) {
  .hero-content h1 { font-size: 1.88rem; }
  .section-title { margin-bottom: 38px; }
  .home-story-panel, .solution-session-card,
  .why-brand-panel, .contact-ttc-form-card,
  .contact-ttc-info-card { padding: 22px; }
}

/* ================================================================
   34. REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   35. FOCUS / ACCESSIBILITY
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ================================================================
   PHASE 2 — EDITORIAL REDESIGN COMPONENTS
   ================================================================ */

/* ----------------------------------------------------------------
   HOME — EDITORIAL INTRO
   ---------------------------------------------------------------- */
.ed-intro {
  background: var(--c-bg-warm);
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.ed-intro-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.ed-intro-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--border-mid);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.ed-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-forest);
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 4px;
  margin-bottom: 22px;
}
.ed-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-text);
  margin-bottom: 28px;
}
.ed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ed-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-forest);
  background: white;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  transition: background var(--t), color var(--t);
}
.ed-tags span:hover {
  background: var(--c-forest);
  color: white;
}
.ed-intro-media {
  position: relative;
}
.ed-intro-media figure {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ed-intro-media figure img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s var(--t);
}
.ed-intro-media:hover figure img {
  transform: scale(1.04);
}
.ed-media-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--c-forest);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  border: 3px solid white;
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------
   HOME — VISION MANIFESTO
   ---------------------------------------------------------------- */
.vision-manifesto {
  background: var(--g-forest);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.vm-glyph {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 280px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
}
.vm-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 28px;
}
.vm-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
  max-width: 820px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.vm-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 36px;
}
.vm-divider::before,
.vm-divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.55;
}
.vm-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}
.vm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.vm-pills span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  border: 1px solid rgba(221,181,100,0.38);
  border-radius: var(--r-pill);
  padding: 8px 24px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.05);
}

/* ----------------------------------------------------------------
   HOME — MISSION PANEL & STRIPS
   ---------------------------------------------------------------- */
.mission-panel {
  background: var(--c-off-white);
  padding: 100px 0 0;
}
.mp-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-forest);
  background: rgba(9,93,64,0.08);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  margin-bottom: 16px;
}
.core-stage .section-badge {
  color: var(--c-gold);
  background: rgba(221,181,100,0.1);
}
.mp-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--c-forest-deep);
  font-weight: 700;
  margin-bottom: 12px;
}
.mp-header p {
  color: var(--c-text-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.mission-strips {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ms-strip {
  display: grid;
  grid-template-columns: 120px 80px 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border-soft);
  transition: background var(--t);
  position: relative;
}
.ms-strip:last-child {
  border-bottom: 1px solid var(--border-soft);
}
.ms-strip:hover {
  background: rgba(9,93,64,0.025);
}
.ms-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-mid);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  transition: -webkit-text-stroke-color var(--t), color var(--t);
}
.ms-strip:hover .ms-num {
  color: var(--c-gold);
  -webkit-text-stroke-color: var(--c-gold);
}
.ms-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  border-left: 1px solid var(--border-soft);
  border-right: 1px solid var(--border-soft);
}
.ms-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: var(--c-forest);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--t);
}
.ms-strip:hover .ms-icon-box svg {
  stroke: var(--c-gold);
}
.ms-body {
  padding: 32px 48px;
}
.ms-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-forest-deep);
  margin-bottom: 10px;
}
.ms-body p {
  font-size: 0.92rem;
  color: var(--c-text-mid);
  line-height: 1.8;
  max-width: 680px;
}

/* ----------------------------------------------------------------
   HOME — CORE STAGE
   ---------------------------------------------------------------- */
.core-stage {
  background: var(--g-dark-section);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}
.core-stage::before {
  content: 'CORE';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 800;
  font-family: 'Lexend', sans-serif;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.025);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.cs-header {
  text-align: center;
  margin-bottom: 56px;
}
.cs-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: white;
  font-weight: 700;
  margin-top: 12px;
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.cs-item {
  padding: 44px 32px 40px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--t);
  overflow: hidden;
}
.cs-item:last-child {
  border-right: none;
}
.cs-item:hover {
  background: rgba(255,255,255,0.04);
}
.cs-item-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.cs-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(221,181,100,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t);
}
.cs-item:hover .cs-item-icon {
  background: rgba(221,181,100,0.22);
}
.cs-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cs-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.35;
}
.cs-item-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.cs-item-line {
  display: block;
  margin-top: 28px;
  height: 2px;
  width: 36px;
  background: var(--c-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-spring);
}
.cs-item:hover .cs-item-line {
  transform: scaleX(1);
}

/* ================================================================
   SOLUTIONS PAGE — SHOWCASE LAYOUT
   ================================================================ */
.solutions-intro-hero {
  background: var(--g-dark-section);
  padding: 60px 0 48px;
  text-align: center;
}
.sih-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.solutions-intro-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: white;
  font-weight: 700;
}
.sol-showcase {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.sol-showcase:nth-child(odd) {
  background: var(--c-off-white);
}
.sol-showcase:nth-child(even) {
  background: var(--c-bg-warm);
}
.sol-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sol-showcase.is-alt .sol-showcase-inner {
  direction: rtl;
}
.sol-showcase.is-alt .sol-showcase-inner > * {
  direction: ltr;
}
.sol-text-col {
  position: relative;
}
.sol-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-mid);
  line-height: 0.9;
  margin-bottom: -16px;
  user-select: none;
  pointer-events: none;
}
.sol-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-forest);
  background: rgba(9,93,64,0.08);
  border-radius: var(--r-pill);
  padding: 5px 16px;
  margin-bottom: 12px;
}
.sol-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--c-forest-deep);
  margin-bottom: 28px;
  line-height: 1.3;
}
.sol-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.sol-feat {
  padding: 14px 20px;
  background: white;
  border-left: 3px solid var(--c-forest);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--c-text-mid);
  box-shadow: var(--shadow-xs);
}
.sol-feat strong {
  color: var(--c-forest);
  font-weight: 600;
}
.sol-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-forest);
  padding: 14px 22px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-sm);
  background: rgba(221,181,100,0.07);
}
.sol-media-col {
  position: relative;
}
.sol-media-col .solution-album {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ================================================================
   WHY CHOOSE PAGE — BRAND SHOWCASE
   ================================================================ */
.brand-showcase {
  display: grid;
  grid-template-columns: 1fr 40%;
  min-height: 580px;
}
.brand-showcase-left {
  background: var(--g-forest);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bs-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.bs-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: white;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
}
.bs-body {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 36px;
}
.bs-def-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin-bottom: 6px;
}
.bs-def-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.bs-metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bsm-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bsm-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(221,181,100,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bsm-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bsm-text strong {
  display: block;
  color: white;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.bsm-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.83rem;
}
.brand-showcase-right {
  position: relative;
  overflow: hidden;
}
.brand-showcase-right figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.brand-showcase-right figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--t);
}
.brand-showcase:hover .brand-showcase-right figure img {
  transform: scale(1.04);
}

/* Target list v2 — numbered rows */
.target-section-v2 {
  background: var(--c-bg-warm);
  padding: 80px 0;
}
.ts-header {
  text-align: center;
  margin-bottom: 52px;
}
.ts-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--c-forest-deep);
  font-weight: 700;
  margin-top: 12px;
}
.target-list-v2 {
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
}
.tl-item {
  display: grid;
  grid-template-columns: 72px 60px 1fr;
  align-items: center;
  border-top: 1px solid var(--border-soft);
  transition: background var(--t);
  cursor: default;
}
.tl-item:last-child {
  border-bottom: 1px solid var(--border-soft);
}
.tl-item:hover {
  background: rgba(9,93,64,0.03);
}
.tl-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-mid);
  text-align: center;
  padding: 26px 16px;
  line-height: 1;
  transition: color var(--t), -webkit-text-stroke-color var(--t);
}
.tl-item:hover .tl-num {
  color: var(--c-gold);
  -webkit-text-stroke-color: var(--c-gold);
}
.tl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 0;
  border-left: 1px solid var(--border-soft);
}
.tl-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-forest);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--t);
}
.tl-item:hover .tl-icon svg {
  stroke: var(--c-gold);
}
.tl-text {
  padding: 26px 36px;
  border-left: 1px solid var(--border-soft);
  font-size: 1rem;
  color: var(--c-text-mid);
  line-height: 1.6;
  font-weight: 500;
}

/* Conclusion v2 */
.why-conclusion-v2 {
  background: var(--c-forest-deep);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-conclusion-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(221,181,100,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.wcv-inner {
  position: relative;
  z-index: 1;
}
.wcv-icon {
  width: 56px;
  height: 56px;
  background: rgba(221,181,100,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.wcv-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wcv-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.75;
}
.wcv-text strong {
  color: var(--c-gold-light);
  font-style: normal;
}

/* ================================================================
   CONTACT PAGE — COOPERATE STAGE
   ================================================================ */
.coop-stage {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 640px;
}
.coop-visual {
  background: var(--g-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
}
.coop-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(221,181,100,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.coop-visual-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.coop-flower-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 24px;
  color: var(--c-gold);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: 0.7;
}
.coop-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: white;
  line-height: 1.65;
  margin-bottom: 28px;
}
.coop-gold-line {
  width: 60px;
  height: 2px;
  background: var(--c-gold);
  margin: 0 auto 28px;
  opacity: 0.55;
}
.coop-meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.coop-content {
  background: var(--c-off-white);
  padding: 72px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coop-content-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-forest);
  display: block;
  margin-bottom: 12px;
}
.coop-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--c-forest-deep);
  margin-bottom: 32px;
  line-height: 1.3;
}
.coop-overview {
  margin-bottom: 40px;
}
.coop-overview p {
  font-size: 0.92rem;
  color: var(--c-text-mid);
  line-height: 1.82;
  padding-left: 16px;
  border-left: 2px solid var(--border-mid);
  margin-bottom: 14px;
}
.coop-overview p:last-child {
  margin-bottom: 0;
}
.coop-cta-line {
  color: var(--c-forest) !important;
  font-weight: 600;
  border-left-color: var(--c-gold) !important;
  border-left-width: 3px !important;
  font-size: 0.95rem !important;
}
.coop-commits h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-forest-deep);
  margin-bottom: 18px;
}
.coop-commit-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coop-commit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.6;
}
.coop-commit-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  margin-top: 7px;
}

/* ================================================================
   PHASE 2 — RESPONSIVE
   ================================================================ */
@media (max-width: 1023px) {
  .ed-intro-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ed-intro-num { display: none; }
  .ed-intro-media { display: none; }

  .ms-strip {
    grid-template-columns: 80px 64px 1fr;
  }

  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-item:nth-child(2) { border-right: none; }
  .cs-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .cs-item:nth-child(1), .cs-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .sol-showcase-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sol-showcase.is-alt .sol-showcase-inner { direction: ltr; }

  .brand-showcase { grid-template-columns: 1fr; }
  .brand-showcase-right { min-height: 360px; }
  .brand-showcase-left { padding: 60px 40px; }

  .coop-stage { grid-template-columns: 1fr; }
  .coop-visual { min-height: 300px; }
  .coop-content { padding: 56px 48px; }
}

@media (max-width: 767px) {
  .ed-intro { padding: 72px 0 60px; }
  .mission-strips { padding: 0 16px; }

  .ms-strip {
    grid-template-columns: 60px 1fr;
  }
  .ms-icon-box { display: none; }
  .ms-num { font-size: 2.4rem; padding: 24px 14px; }
  .ms-body { padding: 24px 20px; }

  .cs-grid {
    grid-template-columns: 1fr;
    border-radius: var(--r-md);
  }
  .cs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cs-item:nth-child(3) { border-right: none; }
  .cs-item:last-child { border-bottom: none; }

  .sol-showcase-inner { padding: 0 24px; }
  .sol-num { font-size: 4rem; }

  .brand-showcase-left { padding: 48px 24px; }

  .tl-item { grid-template-columns: 52px 1fr; }
  .tl-icon { display: none; }

  .coop-content { padding: 44px 24px; }
  .vm-glyph { font-size: 140px; }
  .solutions-intro-hero { padding: 48px 20px 36px; }
}
