/* ============================================
   SYNULVORAAI DIGITAL - Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-dark-bg: #0f1117;
  --color-dark-surface: #161b27;
  --color-dark-border: rgba(255, 255, 255, 0.08);
  --color-light-bg: #f7f6f2;
  --color-light-surface: #ffffff;
  --color-light-border: rgba(0, 0, 0, 0.08);
  --color-primary: #c8a96e;
  --color-primary-dark: #a8893e;
  --color-primary-light: #e2c88a;
  --color-accent: #4a7c6f;
  --color-accent-light: #5a9e8e;
  --color-text-dark: #e8e4dc;
  --color-text-dark-muted: rgba(232, 228, 220, 0.6);
  --color-text-light: #1a1a2e;
  --color-text-light-muted: #5a5a72;
  --color-nav-glass: rgba(15, 17, 23, 0.75);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.22), 0 6px 16px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 24px rgba(200, 169, 110, 0.18);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-card-hover:
    0 12px 36px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --nav-height: 80px;
  --nav-height-scrolled: 60px;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  background: var(--color-light-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* MVP.css overrides */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}
a:hover {
  color: var(--color-primary-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
}
address {
  font-style: normal;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2em;
}
p:last-child {
  margin-bottom: 0;
}

/* --- Layout Utilities --- */
.Container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.Section--dark {
  background: var(--color-dark-bg);
  color: var(--color-text-dark);
}
.Section--light {
  background: var(--color-light-bg);
  color: var(--color-text-light);
}

/* --- Section Header --- */
.SectionHeader {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.SectionHeader-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.25);
  padding: 0.35em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.SectionHeader-label--light {
  color: var(--color-primary-light);
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.3);
}
.SectionHeader-heading {
  color: inherit;
  margin-bottom: 1rem;
}
.SectionHeader-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-light-muted);
  font-size: 1.05rem;
}
.SectionHeader-sub--light {
  color: var(--color-text-dark-muted);
}

/* --- Buttons --- */
.Btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8em 1.8em;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  position: relative;
  overflow: hidden;
}
.Btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.Btn:hover::after {
  opacity: 1;
}

.Btn--primary {
  background: var(--color-primary);
  color: var(--color-dark-bg);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}
.Btn--primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-dark-bg);
  box-shadow: 0 6px 24px rgba(200, 169, 110, 0.45);
  transform: translateY(-2px);
}
.Btn--ghost {
  background: transparent;
  color: var(--color-text-dark);
  border-color: rgba(255, 255, 255, 0.3);
}
.Btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.Btn--accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(74, 124, 111, 0.3);
}
.Btn--accent:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
}
.Btn--large {
  padding: 1em 2.4em;
  font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-nav-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-dark-border);
  transition: all var(--transition-base);
}
.SiteHeader-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition-base);
}
.SiteHeader.is-scrolled .SiteHeader-inner {
  padding: 0.8rem 2rem;
}
.SiteHeader.is-scrolled {
  background: rgba(15, 17, 23, 0.95);
}

.SiteHeader-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.SiteHeader-logoImg {
  width: 36px;
  height: 36px;
  transition:
    width var(--transition-base),
    height var(--transition-base);
}
.SiteHeader.is-scrolled .SiteHeader-logoImg {
  width: 28px;
  height: 28px;
}
.SiteHeader-logoText {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
  transition: font-size var(--transition-base);
}
.SiteHeader.is-scrolled .SiteHeader-logoText {
  font-size: 1.1rem;
}

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.SiteHeader-navLink {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 2px;
}
.SiteHeader-navLink::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}
.SiteHeader-navLink:hover {
  color: var(--color-text-dark);
}
.SiteHeader-navLink:hover::after,
.SiteHeader-navLink.is-active::after {
  width: 100%;
}
.SiteHeader-navLink.is-active {
  color: var(--color-primary);
}

.SiteHeader-menuToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}
.SiteHeader-menuBar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================
   MOBILE MENU - Split Screen
   ============================================ */
.MobileMenu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.MobileMenu.is-open {
  opacity: 1;
  pointer-events: all;
}
.MobileMenu-left {
  width: 55%;
  background: var(--color-dark-surface);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}
.MobileMenu.is-open .MobileMenu-left {
  transform: translateX(0);
}
.MobileMenu-right {
  width: 45%;
  position: relative;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.MobileMenu.is-open .MobileMenu-right {
  transform: translateX(0);
}
.MobileMenu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.MobileMenu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 17, 23, 0.7),
    rgba(74, 124, 111, 0.4)
  );
}
.MobileMenu-brand {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
}
.MobileMenu-brand span {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.MobileMenu-brandSub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-primary-light);
}

.MobileMenu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-text-dark);
  font-size: 1.5rem;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}
.MobileMenu-close:hover {
  color: var(--color-primary);
}

.MobileMenu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.MobileMenu-link {
  color: var(--color-text-dark);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color var(--transition-base);
  position: relative;
}
.MobileMenu-link::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--color-primary);
  border-radius: 2px;
  transition: height var(--transition-base);
}
.MobileMenu-link:hover {
  color: var(--color-primary);
}
.MobileMenu-link:hover::before {
  height: 60%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.PageHero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.PageHero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.PageHero-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.PageHero:hover .PageHero-bgImg {
  transform: scale(1.03);
}
.PageHero-bgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 17, 23, 0.92) 0%,
    rgba(15, 17, 23, 0.75) 55%,
    rgba(15, 17, 23, 0.4) 100%
  );
}
.PageHero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
}
.PageHero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.PageHero-heading {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.PageHero-heading em {
  font-style: normal;
  color: var(--color-primary);
  position: relative;
}
.PageHero-sub {
  font-size: 1.1rem;
  color: var(--color-text-dark-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}
.PageHero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.PageHero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-dark-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Testimonial Card */
.TestimonialCard {
  background: rgba(22, 27, 39, 0.85);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}
.TestimonialCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    transparent
  );
}
.TestimonialCard-quote {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.TestimonialCard-text {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.TestimonialCard-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.TestimonialCard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.15);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
}
.TestimonialCard-info strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.9rem;
}
.TestimonialCard-info span {
  color: var(--color-text-dark-muted);
  font-size: 0.8rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.BenefitsSection {
  padding: var(--space-xl) 0;
}
.BenefitsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.BenefitCard {
  background: var(--color-light-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-light-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.BenefitCard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}
.BenefitCard:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.BenefitCard:hover::after {
  transform: scaleX(1);
}

.BenefitCard-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
}
.BenefitCard-body {
  flex: 1;
}
.BenefitCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
.BenefitCard-text {
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
  margin: 0;
  line-height: 1.6;
}
.BenefitCard-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
}

/* ============================================
   FEATURES PHOTO SECTION
   ============================================ */
.FeaturesPhotoSection {
  padding: var(--space-xl) 0;
}
.FeaturesPhotoSection-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.FeaturesPhotoSection-imageWrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.FeaturesPhotoSection-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.FeaturesPhotoSection-imageWrap:hover .FeaturesPhotoSection-img {
  transform: scale(1.04);
}
.FeaturesPhotoSection-imageBadge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
}
.FeaturesPhotoSection-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.FeaturesPhotoSection-text {
  color: var(--color-text-dark-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.FeatureList {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.FeatureItem {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-dark);
  font-size: 0.95rem;
}
.FeatureItem i {
  color: var(--color-primary);
  font-size: 1rem;
}

/* ============================================
   TABS SECTION
   ============================================ */
.TabsSection {
  padding: var(--space-xl) 0;
}
.TabsInterface {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-light-surface);
  border: 1px solid var(--color-light-border);
}
.TabsInterface-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-light-border);
  background: var(--color-light-bg);
  overflow-x: auto;
  scrollbar-width: none;
}
.TabsInterface-tabs::-webkit-scrollbar {
  display: none;
}
.TabsInterface-tab {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.2rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light-muted);
  transition: all var(--transition-base);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.TabsInterface-tab:hover {
  color: var(--color-primary);
  background: rgba(200, 169, 110, 0.05);
}
.TabsInterface-tab.is-active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background: rgba(200, 169, 110, 0.06);
}
.TabsInterface-panel {
  display: none;
}
.TabsInterface-panel.is-active {
  display: block;
}

.TabPanel-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 400px;
}
.TabPanel-text {
  padding: 3rem;
}
.TabPanel-text h3 {
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.TabPanel-text p {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.TabPanel-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.TabPanel-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}
.TabPanel-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  min-width: 6px;
}
.TabPanel-image {
  position: relative;
  overflow: hidden;
}
.TabPanel-img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.TabPanel-image:hover .TabPanel-img {
  transform: scale(1.04);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.TimelineSection {
  padding: var(--space-xl) 0;
}
.TimelineSection-heading {
  color: var(--color-text-dark);
}
.Timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.Timeline-line {
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-primary),
    var(--color-accent),
    transparent
  );
}
.Timeline-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}
.Timeline-item:last-child {
  margin-bottom: 0;
}
.Timeline-marker {
  flex-shrink: 0;
  width: 120px;
  display: flex;
  justify-content: flex-end;
  padding-right: 2rem;
  padding-top: 0.25rem;
}
.Timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}
.Timeline-card {
  flex: 1;
  background: rgba(22, 27, 39, 0.6);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-left: 1rem;
  position: relative;
  transition: all var(--transition-base);
}
.Timeline-card::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 1.2rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-dark-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
}
.Timeline-card:hover {
  background: rgba(22, 27, 39, 0.9);
  border-color: rgba(200, 169, 110, 0.3);
  transform: translateX(4px);
}
.Timeline-cardTitle {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}
.Timeline-cardText {
  font-size: 0.9rem;
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */
.ServiceAreasSection {
  padding: var(--space-xl) 0;
}
.ServiceAreasSection-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ServiceAreasSection-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.ServiceAreasSection-intro {
  color: var(--color-text-light-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}
.AreaList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.AreaItem {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--color-light-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-light-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.AreaItem:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.AreaItem-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.AreaItem-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}
.AreaItem-desc {
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  margin: 0;
  line-height: 1.6;
}

.MapVisual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.MapVisual-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.MapVisual:hover .MapVisual-img {
  transform: scale(1.04);
}
.MapVisual-pin {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 17, 23, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-primary);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================
   CTA SECTION
   ============================================ */
.CtaSection {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.CtaSection-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.CtaSection-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.CtaSection-bgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 17, 23, 0.92) 0%,
    rgba(15, 17, 23, 0.8) 100%
  );
}
.CtaSection-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 0;
}
.CtaSection-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}
.CtaSection-text {
  color: var(--color-text-dark-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.CtaSection-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   INNER HERO (sub pages)
   ============================================ */
.InnerHero {
  padding: calc(var(--nav-height) + 4rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.InnerHero--short {
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
}
.InnerHero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.InnerHero-bgImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.InnerHero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 17, 23, 0.88),
    rgba(15, 17, 23, 0.7)
  );
}
.InnerHero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.InnerHero-heading {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}
.InnerHero-sub {
  font-size: 1.1rem;
  color: var(--color-text-dark-muted);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   STORY SECTION (origini.html)
   ============================================ */
.StorySection {
  padding: var(--space-xl) 0;
}
.StorySection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.StorySection-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}
.StorySection-text p {
  color: var(--color-text-light-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.StorySection-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.StorySection-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.StorySection-image:hover .StorySection-img {
  transform: scale(1.04);
}

/* Values Section */
.ValuesSection {
  padding: var(--space-xl) 0;
}
.ValuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.ValueCard {
  background: rgba(22, 27, 39, 0.6);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.ValueCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.ValueCard:hover {
  background: rgba(22, 27, 39, 0.9);
  transform: translateY(-4px);
}
.ValueCard:hover::before {
  transform: scaleX(1);
}
.ValueCard-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 169, 110, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.ValueCard-title {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}
.ValueCard-text {
  font-size: 0.9rem;
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin: 0;
}

/* Mission Section */
.MissionSection {
  padding: var(--space-xl) 0;
}
.MissionSection-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.MissionSection-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.MissionSection-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.MissionSection-image:hover .MissionSection-img {
  transform: scale(1.04);
}
.MissionSection-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}
.MissionSection-text p {
  color: var(--color-text-light-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   DEMO SECTION
   ============================================ */
.DemoSection {
  padding: var(--space-xl) 0;
}
.DemoSection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.DemoSection-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.DemoSection-text {
  color: var(--color-text-light-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.DemoFeatureList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.DemoFeature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.DemoFeature i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.DemoFeature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}
.DemoFeature p {
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CHAT FORM
   ============================================ */
.ChatForm {
  background: var(--color-light-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-border);
}
.ChatForm-header {
  background: var(--color-dark-surface);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ChatForm-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.2);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.ChatForm-headerText strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.9rem;
}
.ChatForm-headerText span {
  color: var(--color-text-dark-muted);
  font-size: 0.8rem;
}

.ChatForm-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ChatBubble {
  max-width: 90%;
}
.ChatBubble--company {
  align-self: flex-start;
  background: var(--color-light-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-light-border);
}
.ChatBubble--company p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}
.ChatBubble--company p a {
  color: var(--color-accent);
}
.ChatBubble--user {
  align-self: flex-end;
  width: 100%;
  max-width: 100%;
}
.ChatBubble--user input,
.ChatBubble--user textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  border: 2px solid var(--color-light-border);
  background: rgba(200, 169, 110, 0.05);
  font-size: 0.9rem;
  color: var(--color-text-light);
  transition: border-color var(--transition-base);
  resize: vertical;
  min-height: 44px;
}
.ChatBubble--user input:focus,
.ChatBubble--user textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
}
.ChatBubble--privacy {
  max-width: 100%;
}
.PrivacyCheck {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  line-height: 1.5;
}
.PrivacyCheck input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  margin-top: 2px;
}
.ChatForm-send {
  align-self: flex-end;
  background: var(--color-primary);
  color: var(--color-dark-bg);
  border: none;
  border-radius: var(--radius-md);
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
  box-shadow: 0 4px 12px rgba(200, 169, 110, 0.3);
}
.ChatForm-send:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.45);
}

/* ============================================
   MATERIALS SECTION
   ============================================ */
.MaterialsSection {
  padding: var(--space-xl) 0;
}
.MaterialsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.MaterialCard {
  background: var(--color-light-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-light-border);
  transition: all var(--transition-base);
}
.MaterialCard:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.MaterialCard-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.MaterialCard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.MaterialCard:hover .MaterialCard-img {
  transform: scale(1.06);
}
.MaterialCard-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: var(--color-dark-bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border-radius: 100px;
}
.MaterialCard-body {
  padding: 1.5rem;
}
.MaterialCard-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.MaterialCard-text {
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.MaterialCard-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--color-text-light-muted);
}
.MaterialCard-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Glossary */
.GlossarySection {
  padding: var(--space-xl) 0;
}
.GlossaryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.GlossaryItem {
  background: rgba(22, 27, 39, 0.6);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-base);
}
.GlossaryItem:hover {
  background: rgba(22, 27, 39, 0.85);
  border-color: rgba(200, 169, 110, 0.25);
  transform: translateY(-3px);
}
.GlossaryItem-term {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.GlossaryItem-def {
  font-size: 0.88rem;
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.ContactSection {
  padding: var(--space-xl) 0;
}
.ContactSection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ContactSection-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}
.ContactInfoList {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.ContactInfoItem {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ContactInfoItem-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.ContactInfoItem-body strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light-muted);
  margin-bottom: 0.2rem;
}
.ContactInfoItem-body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}
.ContactInfoItem-body a {
  color: var(--color-text-light);
}
.ContactInfoItem-body a:hover {
  color: var(--color-primary);
}
.ContactMap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ============================================
   THANKS PAGE
   ============================================ */
.ThanksSection {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 4rem) var(--space-md) 4rem;
}
.ThanksSection-inner {
  text-align: center;
  max-width: 500px;
}
.ThanksCheck {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}
.ThanksCheck-svg {
  width: 100%;
  height: 100%;
}
.ThanksCheck-circle {
  stroke: var(--color-primary);
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: drawCircle 0.8s ease-out forwards;
  transform-origin: center;
  transform: rotate(-90deg);
}
.ThanksCheck-path {
  stroke: var(--color-accent);
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease-out 0.7s forwards;
}
@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}
.ThanksSection-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-text-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 1.1s forwards;
}
.ThanksSection-sub {
  color: var(--color-text-light-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 1.3s forwards;
}
.ThanksSection .Btn {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 1.5s forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.LegalHero {
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
}
.LegalHero--short {
  padding: calc(var(--nav-height) + 2rem) 0 2.5rem;
}
.LegalHero-content {
  max-width: 800px;
}
.LegalHero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}
.LegalHero-meta {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

.LegalSection {
  padding: var(--space-lg) 0 var(--space-xl);
}
.LegalContent {
  max-width: 860px;
  margin: 0 auto;
}
.LegalBlock {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-light-border);
}
.LegalBlock:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.LegalBlock h2 {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}
.LegalBlock h3 {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin: 1.5rem 0 0.75rem;
}
.LegalBlock p {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.LegalBlock ul {
  margin: 0.75rem 0 1rem 1.5rem;
}
.LegalBlock ul li {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
  list-style: disc;
}
.LegalBlock a {
  color: var(--color-accent);
}
.LegalBlock a:hover {
  color: var(--color-primary);
}

.LegalInfoBox {
  background: var(--color-light-bg);
  border: 1px solid var(--color-light-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}
.LegalInfoBox p {
  color: var(--color-text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.LegalTableWrap {
  overflow-x: auto;
  margin: 1rem 0;
}
.LegalTable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 540px;
}
.LegalTable th {
  background: var(--color-dark-bg);
  color: var(--color-primary);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.LegalTable td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-light-border);
  color: var(--color-text-light-muted);
  vertical-align: top;
  line-height: 1.6;
}
.LegalTable tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.02);
}
.LegalTable tr:hover td {
  background: rgba(200, 169, 110, 0.04);
}

.LegalDefinitions {
  display: grid;
  gap: 0;
  margin: 1rem 0;
}
.LegalDefinitions dt {
  font-weight: 700;
  color: var(--color-text-light);
  font-size: 0.95rem;
  padding: 0.75rem 1rem 0.25rem;
  background: var(--color-light-bg);
  border-top: 1px solid var(--color-light-border);
}
.LegalDefinitions dd {
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0.25rem 1rem 0.75rem;
  background: var(--color-light-bg);
  margin: 0;
  border-bottom: 1px solid var(--color-light-border);
}

/* ============================================
   FOOTER
   ============================================ */
.SiteFooter {
  background: var(--color-dark-bg);
  border-top: 1px solid var(--color-dark-border);
  color: var(--color-text-dark);
  margin-top: auto;
}
.SiteFooter-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
}
.SiteFooter-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.SiteFooter-tagline {
  font-size: 0.88rem;
  color: var(--color-text-dark-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.SiteFooter-address {
  font-size: 0.88rem;
  color: var(--color-text-dark-muted);
  line-height: 1.9;
}
.SiteFooter-address a {
  color: var(--color-text-dark-muted);
}
.SiteFooter-address a:hover {
  color: var(--color-primary);
}
.SiteFooter-navTitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.SiteFooter-navList {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.SiteFooter-navList li a {
  font-size: 0.88rem;
  color: var(--color-text-dark-muted);
  transition: color var(--transition-base);
}
.SiteFooter-navList li a:hover {
  color: var(--color-text-dark);
}
.SiteFooter-info p {
  font-size: 0.82rem;
  color: var(--color-text-dark-muted);
  margin-bottom: 0.3rem;
}
.SiteFooter-bottom {
  border-top: 1px solid var(--color-dark-border);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.SiteFooter-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-dark-muted);
  margin: 0;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.CookieConsent {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 3rem);
  max-width: 480px;
  background: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
}
.CookieConsent.is-expanded {
  max-width: 520px;
}
.CookieConsent-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.CookieConsent-text {
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  margin: 0;
}
.CookieConsent-text a {
  color: var(--color-primary);
}
.CookieConsent-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.CookieConsent-accept {
  background: var(--color-primary);
  color: var(--color-dark-bg);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6em 1.4em;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 40px;
}
.CookieConsent-accept:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}
.CookieConsent-settings {
  background: transparent;
  border: 1px solid var(--color-dark-border);
  color: var(--color-text-dark-muted);
  border-radius: var(--radius-sm);
  padding: 0.6em 1.2em;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 40px;
}
.CookieConsent-settings:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.CookieConsent-panel {
  display: none;
}
.CookieConsent.is-expanded .CookieConsent-compact {
  display: none;
}
.CookieConsent.is-expanded .CookieConsent-panel {
  display: block;
}
.CookieConsent-panelTitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}
.CookieConsent-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-dark-border);
}
.CookieConsent-category:last-of-type {
  border-bottom: none;
}
.CookieConsent-categoryInfo strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  margin-bottom: 0.2rem;
}
.CookieConsent-categoryInfo span {
  font-size: 0.78rem;
  color: var(--color-text-dark-muted);
}
.CookieConsent-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.CookieConsent-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.CookieConsent-toggleSlider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition-base);
}
.CookieConsent-toggleSlider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
}
.CookieConsent-toggle input:checked + .CookieConsent-toggleSlider {
  background: var(--color-primary);
}
.CookieConsent-toggle input:checked + .CookieConsent-toggleSlider::before {
  transform: translateX(20px);
}
.CookieConsent-toggle input:disabled + .CookieConsent-toggleSlider {
  opacity: 0.6;
  cursor: not-allowed;
}
.CookieConsent-panelActions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.CookieConsent-saveAll,
.CookieConsent-saveSelected {
  flex: 1;
  padding: 0.7em 1em;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 40px;
  border: none;
}
.CookieConsent-saveAll {
  background: var(--color-primary);
  color: var(--color-dark-bg);
}
.CookieConsent-saveAll:hover {
  background: var(--color-primary-light);
}
.CookieConsent-saveSelected {
  background: transparent;
  border: 1px solid var(--color-dark-border);
  color: var(--color-text-dark-muted);
}
.CookieConsent-saveSelected:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .PageHero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .PageHero-right {
    display: none;
  }
  .FeaturesPhotoSection-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .FeaturesPhotoSection-imageCol {
    order: -1;
  }
  .ServiceAreasSection-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .SiteFooter-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .TabPanel-content {
    grid-template-columns: 1fr;
  }
  .TabPanel-image {
    height: 260px;
  }
  .TabPanel-img {
    min-height: 260px;
  }
  .StorySection-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .MissionSection-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .DemoSection-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ContactSection-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .Timeline-line {
    left: 80px;
  }
  .Timeline-marker {
    width: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
  }
  .SiteHeader-nav {
    display: none;
  }
  .SiteHeader-menuToggle {
    display: flex;
  }
  .SiteHeader-inner {
    padding: 1rem 1.5rem;
  }
  .SiteHeader.is-scrolled .SiteHeader-inner {
    padding: 0.7rem 1.5rem;
  }

  .BenefitsGrid {
    grid-template-columns: 1fr;
  }
  .ValuesGrid {
    grid-template-columns: 1fr;
  }
  .MaterialsGrid {
    grid-template-columns: 1fr;
  }
  .GlossaryGrid {
    grid-template-columns: 1fr;
  }

  .Timeline {
    padding-left: 0;
  }
  .Timeline-line {
    left: 20px;
  }
  .Timeline-item {
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 3rem;
  }
  .Timeline-marker {
    width: auto;
    padding: 0;
    justify-content: flex-start;
  }
  .Timeline-card {
    margin-left: 0;
  }
  .Timeline-card::before {
    left: -2.5rem;
  }

  .SiteFooter-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }
  .SiteFooter-bottom {
    flex-direction: column;
    text-align: center;
  }

  .TabsInterface-tabs {
    flex-wrap: nowrap;
  }
  .TabsInterface-tab span {
    display: none;
  }
  .TabPanel-text {
    padding: 2rem 1.5rem;
  }

  .PageHero-content {
    padding: var(--space-lg) var(--space-sm);
  }
  .PageHero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .CtaSection-actions {
    flex-direction: column;
    align-items: center;
  }

  .MobileMenu-left {
    width: 60%;
  }
  .MobileMenu-right {
    width: 40%;
  }

  .Container {
    padding: 0 1.25rem;
  }

  .LegalTable {
    font-size: 0.8rem;
  }
  .LegalTable th,
  .LegalTable td {
    padding: 0.6rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .MobileMenu-left {
    width: 75%;
  }
  .MobileMenu-right {
    width: 25%;
  }
  .MobileMenu-brand {
    display: none;
  }
  .PageHero-heading {
    font-size: 2.2rem;
  }
  .CookieConsent {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: none;
  }
}
