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

:root {
  --gold:    #c28e3d;
  --gold-lt: #e8b84b;
  --navy:    #050a15;
  --navy-2:  #080e1e;
  --blue:    #1e6bff;
  --blue-lt: #4d9fff;
  --muted:   #7a8fad;

  --font-main: 'Montserrat', sans-serif;
  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
}

body {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-main);
  overflow-x: hidden;
}

/* ── SKIP LINK ───────────────────────────── */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link.screen-reader-text:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: normal;
  z-index: 999;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: var(--fw-semibold);
  text-decoration: none;
}

/* ── NAV ─────────────────────────────────── */
.site-header nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: padding .5s cubic-bezier(.4,0,.2,1);
}

.site-header nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,10,21,.16);
  backdrop-filter: blur(6px);
  z-index: -1;
  pointer-events: none;
  transition: background .5s ease;
}

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

.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-img  { height: 66px; width: auto; display: block; transition: height .5s cubic-bezier(.4,0,.2,1); }

.logo-text-wrap { display: flex; flex-direction: column; gap: 2px; }
.logo-brand, .logo-sub { transition: font-size .5s cubic-bezier(.4,0,.2,1); }

.logo-brand {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: var(--fw-regular);
  letter-spacing: .22em;
  color: #fff;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--muted);
}

/* hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,.75);
  transition: transform .25s, opacity .25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* mobile menu drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: rgba(5,10,21,.98);
  backdrop-filter: blur(8px);
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  z-index: 99;
  overflow-y: auto;
}

.nav-drawer.open { display: flex; }

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-links li { border-bottom: 1px solid rgba(255,255,255,.06); }

.nav-links a {
  display: block;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 14px 0;
  transition: color .2s;
}

.nav-links a:hover { color: #fff; }

/* ── DROPDOWN ─────────────────────────── */
.nav-dropdown { position: relative; }

.drop-arrow {
  font-size: 16px;
  font-weight: var(--fw-light);
  opacity: .75;
  letter-spacing: 0;
  transition: transform .2s;
  display: inline-block;
  margin-left: 4px;
  transform: scaleX(1.5);
  transform-origin: center;
}

.nav-dropdown.open .drop-arrow,
.nav-dropdown:hover .drop-arrow { transform: scaleX(1.5) rotate(180deg); }

.nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

.nav-drop-menu {
  display: none;
  list-style: none;
  padding: 6px 0 6px 14px;
}

.nav-drop-menu li { border: none; }

.nav-drop-menu a {
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  padding: 8px 0;
}

.nav-drop-menu a:hover { color: #fff; }

.nav-dropdown.open .nav-drop-menu { display: block; }

/* Desktop dropdown */
@media (min-width: 1024px) {
  .nav-dropdown:hover .drop-arrow { transform: rotate(180deg); }

  .nav-drop-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(5,10,21,.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    padding-top: 12px;
    padding-bottom: 8px;
    display: none;
    z-index: 200;
  }

  .nav-drop-menu li { border: none; }

  .nav-drop-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-dropdown:hover .nav-drop-menu,
  .nav-dropdown.open  .nav-drop-menu { display: block; }
}

.nav-drawer-footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.nav-drawer-footer .gtranslate_wrapper { justify-content: center; }

.nav-drawer-footer .lang-btn {
  font-size: 14px;
  font-weight: var(--fw-medium);
  letter-spacing: 1px;
  color: rgba(255,255,255,.75);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  width: 100%;
  text-align: left;
}

.btn-invest {
  border-radius: 2px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: var(--fw-regular);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 22px;
  height: 44px;
  border: 1px solid #88632b;
  color: rgba(255,255,255,.75);
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: border-color .2s, color .2s;
}

.btn-invest:hover { border-color: rgba(255,255,255,.7); color: #fff; }

.gtranslate_wrapper {
      display: flex;
    column-gap: 0.6rem;
}

.lang-btn {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

a.glink {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

a.glink.gt-current-lang {
  color: #ffffff;
}

/* desktop nav overrides */
.nav-right-desktop { display: none; }

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 20px 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(5,10,21,.96) 0%,
    rgba(5,10,21,.85) 40%,
    rgba(5,10,21,.3)  65%,
    transparent       100%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(0deg,
    rgba(5,10,21,1)   0%,
    rgba(5,10,21,.6)  40%,
    transparent       100%);
  z-index: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
}

.hero-h1 {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: var(--fw-regular);
  letter-spacing: -1px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-h1-gold {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: var(--fw-medium);
  letter-spacing: -.5px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

.hero-rule {
  width: 240px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  margin: 18px auto;
}

.hero-desc {
  font-size: 20px;
  font-weight: var(--fw-regular);
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  border-radius: 2px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: var(--fw-regular);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 28px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  max-width: 320px;
  transition: background .2s;
  box-sizing: border-box;
}

.btn-primary:hover { background: var(--gold-lt); }

.btn-ghost {
  border-radius: 2px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: var(--fw-regular);
  letter-spacing: 1px;
  padding: 0 24px;
  height: 44px;
  border: 1px solid #88632b;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  max-width: 320px;
  transition: border-color .2s;
  box-sizing: border-box;
}

.btn-ghost:hover { border-color: rgba(255,255,255,.7); }

.play-ring {
  width: 28px;
  height: 28px;
  border: 1px solid #88632b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

@media (min-width: 1024px) {
  .hero-visual {
    background: url('../images/hero-bg.png') calc(100% + 80px) 75% / auto 100% no-repeat;
  }
  .hero-visual-img { display: none; }
}

.vis-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.globe-arc {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 150px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,107,255,.35) 0%, rgba(10,30,90,.2) 50%, transparent 80%);
  border-top: 1px solid rgba(30,107,255,.45);
  border-left: 1px solid rgba(30,107,255,.12);
  border-right: 1px solid rgba(30,107,255,.12);
}

.city-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
}

.vis-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 0 20px rgba(30,107,255,.9)) drop-shadow(0 0 50px rgba(30,107,255,.4));
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translate(-50%, -58%); }
  50%      { transform: translate(-50%, -65%); }
}

.glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(30,107,255,.55);
  box-shadow: 0 0 16px rgba(30,107,255,.3);
  animation: pulse-ring 2.2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%,100% { transform: translate(-50%,-50%) scale(1);    opacity: .5; }
  50%      { transform: translate(-50%,-50%) scale(1.07); opacity: .85; }
}

.snode { display: none; }

/* ── HERO NODE SVG OVERLAY ───────────────────────── */
.hero-nodes-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

/* ── STATS BAR ───────────────────────────── */
.stats-bar {
  background: var(--navy-2);
  border-top:    1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 20px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-icon { flex-shrink: 0; width: 40px; height: 40px; align-self: center; }

.stat-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-lbl {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-top: 0;
  margin-bottom: 10px;
}

.stat-val {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: var(--fw-regular);
  letter-spacing: -.5px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.stat:last-child { grid-column: auto; justify-content: flex-start; }

/* ── ECOSYSTEM ───────────────────────────── */
.ecosystem {
  padding: 40px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}


.eco-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.eco-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
}

.eco-card:last-child { grid-column: auto; }

.eco-bg {
  position: absolute;
  inset: 0;
  transition: transform .45s ease;
  background: #080e1e;
}

.eco-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55) saturate(.75);
}

.eco-card:hover .eco-bg { transform: scale(1.06); }

.eco-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,10,20,.7) 60%, rgba(5,10,20,.97) 100%);
}

.eco-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
}

.eco-title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: var(--fw-semibold);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eco-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.eco-text {
  font-size: 14px;
  font-weight: var(--fw-light);
  line-height: 1.55;
  color: rgba(255,255,255,.75);
  flex: 1;
}

.eco-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform .25s ease;
}
.eco-arrow svg { display: block; }

.eco-card:hover .eco-arrow { transform: translateX(6px); }

.section-tag {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: var(--fw-medium);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.eco-desc {
  font-size: 16px;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 28px;
}

.btn-outline {
  border-radius: 2px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: var(--fw-regular);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 28px;
  height: 44px;
  border: 1px solid #88632b;
  color: rgba(255,255,255,.75);
  background: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s, color .2s;
}

.btn-outline .arrow { display: flex; align-items: center; }

.btn-outline:hover { border-color: rgba(255,255,255,.7); color: #fff; }

/* ════════════════════════════════════════
   SITE FOOTER
════════════════════════════════════════ */
.site-footer { background: var(--navy-2); }

/* ── FOOTER MAIN (logo + nav columns) ── */
.footer-main {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 20px 44px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-img { height: 56px; width: auto; display: block; }

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  font-weight: var(--fw-light);
  max-width: 300px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: .15em;
  padding: 12px 22px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  width: fit-content;
}

.footer-cta:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}

.footer-col-title {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.footer-col ul li a {
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
  line-height: 1.4;
}

.footer-col ul li a:hover { color: #fff; }

/* ── FOOTER INFO (company details) ── */
.footer-info {
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
  padding: 44px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.finfo-col address { font-style: normal; }

.finfo-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.finfo-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: var(--gold); fill: none; }

.finfo-row a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.finfo-row a:hover { color: #fff; }

.finfo-emails { display: flex; flex-direction: column; gap: 5px; }
.finfo-emails a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.finfo-emails a:hover { color: #fff; }

.finfo-dl { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }

.finfo-dl > div { display: flex; gap: 6px; flex-wrap: wrap; line-height: 1.5; }

.finfo-dl dt { color: #fff; font-weight: var(--fw-semibold); }

.finfo-dl dd { color: rgba(255,255,255,.55); }

.finfo-verify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 14px;
  transition: color .2s;
}

.finfo-verify:hover { color: var(--gold-lt); }
.finfo-verify svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }

.finfo-verify--spaced { margin-top: 36px; }

.finfo-compliance { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.finfo-compliance li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.finfo-compliance svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--gold); fill: none; }

.finfo-social { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.finfo-social li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}

.finfo-social li a:hover { color: #fff; }

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s;
}

.finfo-social li a:hover .social-icon { border-color: rgba(255,255,255,.4); }

.social-icon svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.7); fill: none; }

.social-icon svg[fill="currentColor"] { stroke: none; fill: rgba(255,255,255,.7); width: 14px; height: 14px; }

.finfo-newsletter-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  font-weight: var(--fw-light);
}

.finfo-newsletter-form { display: flex; margin-bottom: 12px; }

.finfo-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  padding: 10px 14px;
  font-family: var(--font-main);
  font-size: 13px;
  color: #fff;
  outline: none;
  min-width: 0;
}

.finfo-newsletter-form input::placeholder { color: rgba(255,255,255,.28); }

.finfo-newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 10px 16px;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.finfo-newsletter-form button:hover { background: var(--gold-lt); }
.finfo-newsletter-form button svg { stroke: var(--navy); }

.finfo-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  line-height: 1.4;
}

.finfo-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

.finfo-checkbox a { color: var(--gold); text-decoration: none; }
.finfo-checkbox a:hover { color: var(--gold-lt); }

/* ── FOOTER LEGAL LINKS ── */
.footer-legal {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: var(--navy-2);
}
.footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  list-style: none;
}
.footer-legal li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,.12);
  vertical-align: middle;
}
.footer-legal a {
  font-size: 11px;
  font-weight: var(--fw-light);
  letter-spacing: .04em;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  padding: 0 14px;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── FOOTER TAGLINE (bottom strip) ── */
.footer-tagline {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.ft-left, .ft-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.ft-brand {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: .3em;
  color: rgba(255,255,255,.35);
}

.ft-sep {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
  flex-shrink: 0;
}

.ft-sep--v { display: none; }

.ft-slogan {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: .18em;
  color: var(--gold);
}

.ft-copy {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
}

.ft-langs { display: flex; align-items: center; gap: 6px; }

.ft-lang {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s;
}

.ft-lang:hover { color: #fff; }
.ft-lang--active { color: rgba(255,255,255,.85); }

.ft-lang-div { font-size: 11px; color: rgba(255,255,255,.2); }


/* ════════════════════════════════════════
   TABLET  ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {

  .site-header nav { padding: 16px 32px; }
  .site-header nav.scrolled { padding-top: 8px; padding-bottom: 8px; padding-left: 32px; padding-right: 32px; }

  .logo { gap: 14px; }
  .logo-img   { height: 52px; }
  .logo-mark  { width: 44px; height: 44px; }
  .logo-brand { font-size: 28px; }
  .site-header nav.scrolled .logo-img   { height: 36px; }
  .site-header nav.scrolled .logo-brand { font-size: 14px; }
  .site-header nav.scrolled .logo-sub   { font-size: 8px; }

  .hero { padding: 100px 32px 56px; }

  .hero-h1       { font-size: 44px; }
  .hero-h1-gold  { font-size: 30px; }

  .hero-ctas { flex-direction: row; justify-content: center; }
  .btn-primary,
  .btn-ghost  { width: auto; max-width: none; }


  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 28px 32px;
    gap: 20px;
  }

  .stat:last-child { grid-column: auto; justify-content: flex-start; }

  .ecosystem { padding: 48px 32px 56px; }
  .eco-cards { grid-template-columns: repeat(3, 1fr); }
  .eco-card:last-child { grid-column: 1 / -1; }
  .eco-card { height: 240px; }

  .footer-main { flex-direction: row; gap: 48px; padding: 56px 32px 48px; }
  .footer-brand { max-width: 240px; flex-shrink: 0; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
  .footer-info { flex-direction: row; flex-wrap: wrap; gap: 32px; padding: 44px 32px; }
  .finfo-col { flex: 1 1 calc(50% - 16px); }

  .footer-tagline {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 18px 32px;
  }

  .ft-left, .ft-right { justify-content: flex-start; }

  .ft-sep { width: 1px; height: 18px; }
}


/* ════════════════════════════════════════
   DESKTOP  ≥ 1024px
════════════════════════════════════════ */
@media (min-width: 1024px) {

  .site-header nav { padding: 18px 56px 0; }
  .site-header nav.scrolled { padding-top: 8px; padding-bottom: 8px; padding-left: 56px; padding-right: 56px; }
  .logo { gap: 18px; }
  .logo-img { height: 82px; }
  .site-header nav.scrolled .logo-img   { height: 44px; }
  .site-header nav.scrolled .logo-brand { font-size: 13px; }
  .site-header nav.scrolled .logo-sub   { font-size: 8px; }

  .nav-toggle { display: none; }

  .nav-right-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 40px;
  }

  .nav-links {
    flex-direction: row;
    gap: 24px;
  }

  .nav-links li { border: none; }

  .nav-links a {
    font-size: 14px;
    font-weight: var(--fw-medium);
    letter-spacing: 1px;
    padding: 0;
  }

  .nav-drawer {
    display: flex !important;
    position: static;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 28px;
    overflow: visible;
    inset: auto;
    margin-left: auto;
  }

  .nav-drawer-footer { display: none; }

  .hero {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 110px 56px 72px;
    gap: 0;
  }

  .hero::before {
    background:
      radial-gradient(ellipse 80% 70% at 65% 55%, rgba(30,107,255,.13) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 75% 80%, rgba(200,146,42,.06) 0%, transparent 60%);
  }

  .hero-copy {
    max-width: 600px;
    text-align: left;
  }

  .hero-rule  { margin: 22px 0 26px; }
  .hero-desc  { font-size: 13px; max-width: 430px; }

  .hero-ctas { justify-content: flex-start; }
  .btn-primary,
  .btn-ghost  { width: auto; }
  .vis-logo  { width: 96px; height: 96px; }
  .glow-ring { width: 180px; height: 44px; }

  .snode {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 130px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity .2s;
  }

  .snode:hover { opacity: .85; }

  .snode:hover .snode-icon {
    border-color: var(--blue-lt);
    box-shadow: 0 0 26px rgba(77,159,255,.5);
  }

  .snode-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(80,175,255,.8);
    background: transparent;
    box-shadow: 0 0 22px rgba(60,160,255,.35), inset 0 0 14px rgba(60,160,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s, box-shadow .3s;
    flex-shrink: 0;
  }

  .snode:hover .snode-icon {
    border-color: rgba(120,210,255,.95);
    box-shadow: 0 0 30px rgba(80,175,255,.55), inset 0 0 18px rgba(80,175,255,.12);
  }

  .snode-icon svg {
    width: 34px;
    height: 34px;
    stroke: rgba(120,205,255,.9);
    fill: none;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .snode-title {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    text-align: center;
    line-height: 1.2;
  }

  .snode-desc {
    font-size: 11.5px;
    font-weight: var(--fw-light);
    line-height: 1.55;
    color: rgba(255,255,255,.82);
    text-align: center;
    margin-top: 6px;
  }

  .sn-knowledge .snode-text { display: contents; }

  .stats-bar {
    grid-template-columns: repeat(5, 1fr);
    padding: 40px 56px;
    gap: 24px;
  }

  .stat-icon { width: 48px; height: 48px; }
  .stat-icon svg { width: 48px; height: 48px; }
  .stat-val  { font-size: 32px; }

  .ecosystem {
    flex-direction: row;
    align-items: center;
    padding: 56px 56px 64px;
    gap: 40px;
  }

  .eco-intro { flex: 0 0 260px; }

  .eco-cards {
    flex: 1;
    grid-template-columns: repeat(3, 1fr);
  }

  .eco-card { height: 300px; }
  .eco-card:last-child { grid-column: auto; }
  .eco-title { font-size: 15px; }
  .eco-text  { font-size: 11.5px; }

  /* arc follows planet horizon */
  .sn-society     { left: 40%; top: 67%; }
  .sn-education   { left: 46%; top: 51%; }
  .sn-healthcare  { left: 53%; top: 33%; }
  .sn-knowledge   { left: 66%; top: 30%; }
  .sn-security    { left: 78%; top: 33%; }
  .sn-ai          { left: 87%; top: 53%; }
  .sn-environment { left: 93%; top: 68%; }

.footer-main { padding: 56px 56px 48px; gap: 56px; }
  .footer-brand { max-width: 260px; }
  .footer-nav { grid-template-columns: repeat(5, 1fr); gap: 0 28px; }
  .footer-info { flex-wrap: nowrap; padding: 44px 56px; gap: 28px; }
  .finfo-col { flex: 1 1 0; }
  .footer-info > .finfo-col:nth-child(2) { flex: 1.6 1 0; }
  .footer-info > .finfo-col:nth-child(4) { flex: 0.7 1 0; }

  .footer-tagline {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 56px;
  }

  .ft-sep--v { display: block; width: 1px; height: 16px; }
  .ft-right { gap: 16px; }

  .ft-brand  { font-size: 13px; }
  .ft-slogan { font-size: 12px; }
}


/* ════════════════════════════════════════
   WIDE  ≥ 1280px
════════════════════════════════════════ */
@media (min-width: 1280px) {
  .hero { padding: 110px 56px 72px; }
  .stats-bar { padding: 40px 72px; }
  .footer-main { padding: 56px 56px 48px; }
  .footer-info { padding: 44px 56px; }
  .footer-tagline { padding: 20px 72px; }

  /* on wider screens planet shifts — fine-tune arc */
  .sn-society     { left: 39%; top: 68%; }
  .sn-education   { left: 45%; top: 52%; }
  .sn-healthcare  { left: 52%; top: 34%; }
  .sn-knowledge   { left: 65%; top: 30%; }
  .sn-security    { left: 77%; top: 34%; }
  .sn-ai          { left: 86%; top: 54%; }
  .sn-environment { left: 92%; top: 69%; }
}


/* ════════════════════════════════════════
   INNER PAGES — shared
════════════════════════════════════════ */
.page-tag {
  font-size: 11px; font-weight: var(--fw-medium);
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}


/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end;
  padding: 130px 24px 64px; overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.png') center 30% / cover no-repeat;
  opacity: .3;
}
.about-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,10,21,.45) 0%, rgba(5,10,21,.9) 100%);
}
.about-hero-copy { position: relative; z-index: 1; max-width: 700px; }
.about-h1 { font-size: 40px; font-weight: var(--fw-regular); letter-spacing: -1px; line-height: 1.05; text-transform: uppercase; margin-bottom: 24px; }
.about-hero-desc { font-size: 14px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.5); max-width: 520px; }

.mission { padding: 72px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mission-grid { display: flex; flex-direction: column; gap: 48px; }
.mission-label { font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.mission-title { font-size: 26px; font-weight: var(--fw-regular); letter-spacing: -.5px; line-height: 1.25; text-transform: uppercase; margin-bottom: 16px; }
.mission-body { font-size: 13px; font-weight: var(--fw-light); line-height: 1.85; color: rgba(255,255,255,.5); }

.story { padding: 72px 24px; background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.story-text { font-size: 18px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.7); max-width: 820px; margin-bottom: 28px; }
.story-text + .story-text { color: rgba(255,255,255,.45); font-size: 14px; }
.story-img { width: 100%; border-radius: 2px; margin-top: 48px; height: 280px; object-fit: cover; display: block; border: 1px solid rgba(255,255,255,.08); }

.values { padding: 72px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); margin-top: 48px; }
.value-card { background: var(--navy); padding: 36px 28px; transition: background .2s; }
.value-card:hover { background: rgba(255,255,255,.02); }
.value-num { font-size: 42px; font-weight: var(--fw-semibold); line-height: 1; color: rgba(194,142,61,.15); letter-spacing: -2px; margin-bottom: 20px; }
.value-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(80,175,255,.4); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: rgba(30,107,255,.05); }
.value-icon svg { width: 22px; height: 22px; stroke: rgba(120,205,255,.85); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.value-title { font-size: 14px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.value-desc { font-size: 12px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.45); }

.timeline { padding: 72px 24px; background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.tl-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.tl-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.07); opacity: 0; transform: translateX(-20px); transition: opacity .6s ease, transform .6s ease; }
.tl-item.visible { opacity: 1; transform: translateX(0); }
.tl-year { font-size: 13px; font-weight: var(--fw-semibold); color: var(--gold); letter-spacing: 1px; flex-shrink: 0; width: 54px; padding-top: 3px; }
.tl-dot-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--gold); background: var(--navy-2); flex-shrink: 0; margin-top: 4px; }
.tl-line { width: 1px; flex: 1; background: rgba(255,255,255,.1); margin-top: 6px; }
.tl-item:last-child .tl-line { display: none; }
.tl-content { flex: 1; }
.tl-title { font-size: 14px; font-weight: var(--fw-medium); margin-bottom: 8px; }
.tl-desc { font-size: 12px; font-weight: var(--fw-light); line-height: 1.7; color: rgba(255,255,255,.45); }

.leadership { padding: 72px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.team-card { display: flex; flex-direction: column; }
.team-img-wrap { position: relative; overflow: hidden; height: 240px; border-radius: 2px; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(30%); transition: transform .5s ease, filter .3s; }
.team-card:hover .team-img-wrap img { transform: scale(1.04); filter: grayscale(0); }
.team-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,10,21,.8) 0%, transparent 55%); }
.team-info { padding: 16px 0 0; }
.team-name { font-size: 14px; font-weight: var(--fw-medium); letter-spacing: .5px; margin-bottom: 4px; }
.team-role { font-size: 10px; font-weight: var(--fw-light); letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.team-bio { font-size: 11px; font-weight: var(--fw-light); line-height: 1.65; color: rgba(255,255,255,.4); }

/* ── ABOUT PAGE — new sections ── */
.about-section-h2 {
  font-size: 28px;
  font-weight: var(--fw-regular);
  letter-spacing: -.5px;
  line-height: 1.15;
  text-transform: uppercase;
  margin: 12px 0 32px;
}

/* Who We Are */
.about-who {
  padding: 72px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-who-body { display: flex; flex-direction: column; gap: 20px; max-width: 780px; }
.about-who-body p { font-size: 14px; font-weight: var(--fw-light); line-height: 1.85; color: rgba(255,255,255,.6); }

/* Our Business */
.about-business {
  padding: 72px 24px;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  margin-top: 8px;
}
.about-biz-card {
  background: var(--navy-2);
  padding: 32px 28px;
  transition: background .2s;
}
.about-biz-card:hover { background: rgba(255,255,255,.02); }
.about-biz-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(194,142,61,.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(194,142,61,.05);
}
.about-biz-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.about-biz-title { font-size: 14px; font-weight: var(--fw-semibold); letter-spacing: .5px; margin-bottom: 10px; text-transform: uppercase; }
.about-biz-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.5); }

/* How We Work */
/* How We Work */
.about-process {
  padding: 72px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-process-header { margin-bottom: 40px; }
.about-process-h2 {
  font-size: 36px;
  font-weight: var(--fw-regular);
  letter-spacing: -.5px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 12px 0 16px;
}
.about-process-intro {
  font-size: 13px;
  font-weight: var(--fw-light);
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 440px;
}
/* Step cards row */
.about-process-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-bottom: 24px;
}
.about-step {
  position: relative;
  padding: 28px 24px 32px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: var(--navy-2);
  flex: 1;
}
.about-step-num {
  font-size: 18px;
  font-weight: var(--fw-light);
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.about-step-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.about-step-icon svg { width: 48px; height: 48px; stroke: var(--gold); }
.about-step-title {
  font-size: 17px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.about-step-line {
  width: 28px; height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.about-step-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.5); }
/* Arrow connector */
.about-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(194,142,61,.4);
  background: rgba(194,142,61,.05);
  align-self: center;
  margin: 8px auto;
  transform: rotate(90deg);
}
.about-step-arrow svg { width: 16px; height: 16px; stroke: var(--gold); }
/* Bottom strip */
.about-process-strip {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--navy-2);
  border-radius: 6px;
  overflow: hidden;
}
.about-ps-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.about-ps-item:last-child { border-bottom: none; }
.about-ps-item svg { width: 32px; height: 32px; stroke: var(--gold); flex-shrink: 0; }
.about-ps-item span { font-size: 13px; font-weight: var(--fw-semibold); line-height: 1.4; color: rgba(255,255,255,.8); }
.about-ps-sep { display: none; }

/* Our Approach */
.about-approach {
  padding: 72px 24px;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}
.about-approach-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(194,142,61,.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(194,142,61,.05);
}
.about-approach-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.about-approach-title { font-size: 16px; font-weight: var(--fw-semibold); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.about-approach-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.5); }

/* Why Estonia */
.about-estonia {
  padding: 72px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-estonia-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-estonia-left { display: flex; flex-direction: column; }
.about-estonia-h2 {
  font-size: 36px;
  font-weight: var(--fw-regular);
  letter-spacing: -.5px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 12px 0 20px;
}
.about-estonia-body {
  font-size: 14px;
  font-weight: var(--fw-light);
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin-bottom: 32px;
}
.about-estonia-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.about-estonia-card {
  background: var(--navy);
  padding: 28px 24px;
  transition: background .2s;
}
.about-estonia-card:hover { background: rgba(255,255,255,.02); }
.about-estonia-card-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.about-estonia-card-icon svg { width: 30px; height: 30px; stroke: var(--gold); }
.about-estonia-card-title {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 10px;
}
.about-estonia-card-desc {
  font-size: 12px;
  font-weight: var(--fw-light);
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}
/* Right: photo */
.about-estonia-right { position: relative; }
.about-estonia-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 340px;
}
.about-estonia-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
}
.about-estonia-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,18,36,.88);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
}
.about-estonia-caption-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid rgba(194,142,61,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(194,142,61,.08);
}
.about-estonia-caption-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.about-estonia-caption-city {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--gold);
  margin-bottom: 4px;
}
.about-estonia-caption-text {
  font-size: 13px;
  font-weight: var(--fw-light);
  line-height: 1.5;
  color: rgba(255,255,255,.7);
}

/* Company Information */
.about-ci {
  padding: 72px 24px;
  background: var(--navy-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-ci-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-ci-left { display: flex; flex-direction: column; }
.about-ci-h2 {
  font-size: 36px;
  font-weight: var(--fw-regular);
  letter-spacing: -.5px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 12px 0 20px;
}
.about-ci-desc {
  font-size: 13px;
  font-weight: var(--fw-light);
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 380px;
  margin-bottom: 28px;
}
.about-ci-badge {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.1);
  padding: 24px 22px;
  background: rgba(255,255,255,.02);
}
.about-ci-badge-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.about-ci-badge-icon svg { width: 36px; height: 36px; stroke: var(--gold); }
.about-ci-badge-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about-ci-badge-line1 {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,.85);
}
.about-ci-badge-line2 {
  font-size: 13px;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.about-ci-badge-link {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: .03em;
}
.about-ci-badge-link:hover { opacity: .75; }
.about-ci-right { flex: 1; }
.about-ci-table {
  border: 1px solid rgba(255,255,255,.1);
  display: block;
}
.about-ci-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.about-ci-row:last-child { border-bottom: none; }
.about-ci-row dt {
  font-size: 13px;
  font-weight: var(--fw-light);
  color: rgba(255,255,255,.5);
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
}
.about-ci-row dd {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,.9);
  padding: 18px 22px;
  display: flex;
  align-items: center;
}

/* Values */
.about-values {
  padding: 72px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  margin-top: 8px;
}
.about-value-card {
  background: var(--navy);
  padding: 40px 32px;
  transition: background .2s;
}
.about-value-card:hover { background: rgba(255,255,255,.02); }
.about-value-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(194,142,61,.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: rgba(194,142,61,.05);
}
.about-value-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.about-value-title { font-size: 15px; font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.about-value-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.5); }

.about-cta { padding: 80px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.cta-tag { font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.cta-h2 { font-size: 28px; font-weight: var(--fw-regular); letter-spacing: -.5px; line-height: 1.2; text-transform: uppercase; max-width: 480px; }
.cta-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.45); max-width: 400px; }
.cta-btns { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 320px; }


/* ════════════════════════════════════════
   ECOSYSTEM PAGE
════════════════════════════════════════ */
.eco-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  padding: 120px 24px 64px; overflow: hidden;
  background: var(--navy-2);
}
.eco-hero-bg { position: absolute; inset: 0; background: url('../images/hero-bg.png') center 40% / cover no-repeat; opacity: .35; }
.eco-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,10,21,.5) 0%, rgba(5,10,21,.85) 100%); }
.eco-hero-copy { position: relative; z-index: 1; max-width: 640px; }
.eco-hero-h1 { font-size: 40px; font-weight: var(--fw-regular); letter-spacing: -1px; line-height: 1.05; text-transform: uppercase; margin-bottom: 20px; }
.eco-hero-desc { font-size: 14px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.55); max-width: 480px; }

.intro-strip { padding: 64px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.intro-quote { font-size: 22px; font-weight: var(--fw-light); line-height: 1.5; letter-spacing: -.3px; color: rgba(255,255,255,.9); border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 28px; }
.intro-body { font-size: 13px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.5); }

.pillar { display: flex; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,.08); }
.pillar-img-wrap { position: relative; height: 240px; overflow: hidden; flex-shrink: 0; }
.pillar-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.pillar:hover .pillar-img-wrap img { transform: scale(1.04); }
.pillar-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,21,.7) 0%, transparent 60%); }
.pillar-body { padding: 40px 24px; display: flex; flex-direction: column; gap: 20px; }
.pillar-index { font-size: 64px; font-weight: var(--fw-semibold); line-height: 1; color: rgba(194,142,61,.15); letter-spacing: -2px; }
.pillar-header { display: flex; align-items: center; gap: 14px; }
.pillar-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(80,175,255,.5); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(30,107,255,.06); }
.pillar-icon svg { width: 24px; height: 24px; stroke: rgba(120,205,255,.9); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.pillar-title { font-size: 20px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; }
.pillar-desc { font-size: 14px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.55); }
.pillar-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pillar-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 12px; font-weight: var(--fw-light); line-height: 1.6; color: rgba(255,255,255,.6); }
.pillar-features li::before { content: ''; width: 16px; height: 1px; background: var(--gold); margin-top: 10px; flex-shrink: 0; }
.pillar-link { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap .2s; }
.pillar-link:hover { gap: 16px; }

.connection { padding: 64px 24px; background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.connection-body { font-size: 13px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.5); margin-top: 16px; }
.node-diagram { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.nd-node { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 90px; }
.nd-circle { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(80,175,255,.4); display: flex; align-items: center; justify-content: center; background: rgba(30,107,255,.05); }
.nd-circle svg { width: 24px; height: 24px; stroke: rgba(120,205,255,.8); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.nd-label { font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.55); text-align: center; }
.nd-center .nd-circle { width: 72px; height: 72px; border-color: var(--gold); background: rgba(194,142,61,.08); }
.nd-center .nd-circle svg { width: 30px; height: 30px; stroke: var(--gold); }
.nd-center .nd-label { color: var(--gold); font-size: 10px; }

.eco-cta { padding: 80px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.eco-cta-tag { font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.eco-cta-h2 { font-size: 28px; font-weight: var(--fw-regular); letter-spacing: -.5px; line-height: 1.2; text-transform: uppercase; max-width: 480px; }
.eco-cta-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.45); max-width: 400px; }
.eco-cta-btns { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 320px; }


/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-hero {
  position: relative; padding: 130px 24px 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--navy-2); overflow: hidden;
}
.contact-hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(194,142,61,.06) 0%, transparent 70%); pointer-events: none; }
.contact-h1 { font-size: 40px; font-weight: var(--fw-regular); letter-spacing: -1px; line-height: 1.05; text-transform: uppercase; margin-bottom: 16px; }
.contact-hero-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.45); max-width: 480px; }

.contact-main { padding: 64px 24px 80px; }
.form-title { font-size: 20px; font-weight: var(--fw-medium); letter-spacing: -.3px; margin-bottom: 10px; text-transform: uppercase;}
.form-subtitle { font-size: 12px; font-weight: var(--fw-light); line-height: 1.7; color: rgba(255,255,255,.4); }
.form-header { margin-bottom: 36px; }
.contact-form,
.wpcf7-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 16px; }
.field, .wpcf7-form-control { display: flex; flex-direction: column; gap: 8px; }
.field-label { font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.field-input, .field-select, .field-textarea, .wpcf7-form-control { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 2px; color: #fff; font-family: var(--font-main); font-size: 13px; font-weight: var(--fw-light); padding: 0 16px; height: 48px; outline: none; transition: border-color .2s, background .2s; width: 100%; }
.field-input::placeholder, .field-textarea::placeholder { color: rgba(255,255,255,.2); }
.field-input:focus, .field-select:focus, .field-textarea:focus { border-color: rgba(194,142,61,.5); background: rgba(194,142,61,.03); }
.field-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field-select option { background: var(--navy-2); color: #fff; }
.field-textarea, .wpcf7-textarea { height: auto; padding: 14px 16px; resize: vertical; min-height: 140px; line-height: 1.6; }
.form-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.form-check-label { font-size: 11px; font-weight: var(--fw-light); line-height: 1.6; color: rgba(255,255,255,.4); }
.form-check-label a { color: var(--gold); text-decoration: none; }
.btn-submit { -webkit-appearance: none; appearance: none; border-radius: 2px; font-family: var(--font-main); font-size: 14px; font-weight: var(--fw-regular); letter-spacing: 1px; text-transform: uppercase; padding: 0 32px; height: 48px; line-height: 48px; background: var(--gold); color: var(--navy); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; box-sizing: border-box; transition: background .2s; }
.btn-submit:hover { background: var(--gold-lt); }
.form-success { display: none; padding: 24px; border: 1px solid rgba(194,142,61,.3); border-radius: 2px; background: rgba(194,142,61,.05); text-align: center; }
.form-success.visible { display: block; }
.form-success-icon { font-size: 28px; margin-bottom: 12px; }
.form-success-title { font-size: 15px; font-weight: var(--fw-medium); margin-bottom: 8px; }
.form-success-desc { font-size: 12px; font-weight: var(--fw-light); color: rgba(255,255,255,.45); line-height: 1.65; }

.contact-info { margin-top: 64px; }
.info-title { font-size: 14px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.info-items { display: flex; flex-direction: column; gap: 0; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.info-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(80,175,255,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(30,107,255,.05); }
.info-icon svg { width: 18px; height: 18px; stroke: rgba(120,205,255,.8); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.info-label { font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.info-value { font-size: 13px; font-weight: var(--fw-light); color: rgba(255,255,255,.8); line-height: 1.55; }
.info-value a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s; }
.info-value a:hover { color: var(--gold); }

.offices { padding: 64px 24px; background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.offices-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.office-card { background: var(--navy-2); padding: 32px 28px; transition: background .2s; }
.office-card:hover { background: rgba(255,255,255,.02); }
.office-city { font-size: 18px; font-weight: var(--fw-medium); letter-spacing: -.2px; margin-bottom: 4px; }
.office-country { font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.office-type { display: inline-block; font-size: 8px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); margin-bottom: 20px; border-radius: 2px; }
.office-address { font-size: 12px; font-weight: var(--fw-light); line-height: 1.7; color: rgba(255,255,255,.45); }
.office-divider { width: 24px; height: 1px; background: rgba(194,142,61,.4); margin: 16px 0; }
.office-contact { font-size: 11px; font-weight: var(--fw-light); color: rgba(255,255,255,.35); line-height: 1.7; }
.office-contact a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.office-contact a:hover { color: var(--gold); }

.faq { padding: 64px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 16px; font-family: var(--font-main); font-size: 13px; font-weight: var(--fw-medium); color: rgba(255,255,255,.85); text-align: left; letter-spacing: .2px; transition: color .2s; }
.faq-question:hover { color: #fff; }
.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.faq-chevron svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 24px; font-size: 12px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.45); }

/* ── HOME FAQ ── */
.home-faq { padding: 64px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.home-faq-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.home-faq-head .section-tag { border-left: none; padding-left: 0; }

.home-faq-tag { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 11px; font-weight: var(--fw-medium); letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.home-faq-tag-line { width: 28px; height: 1px; background: rgba(194,142,61,.5); }
.home-faq-h2 { font-size: 28px; font-weight: var(--fw-regular); letter-spacing: -.5px; line-height: 1.15; text-transform: none; margin-bottom: 16px; }
.home-faq-sub { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.5); }

.home-faq-grid { display: flex; flex-direction: column; gap: 0; }
.home-faq-col { display: flex; flex-direction: column; }
.home-faq-item { border-bottom: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.home-faq-question { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 16px; padding: 20px 0; font-family: var(--font-main); text-align: left; transition: color .2s; }
.home-faq-question:hover .home-faq-text { color: #fff; }
.home-faq-num { flex-shrink: 0; font-size: 12px; font-weight: var(--fw-semibold); letter-spacing: .5px; color: var(--gold); }
.home-faq-divider { flex-shrink: 0; width: 1px; align-self: stretch; background: rgba(255,255,255,.12); }
.home-faq-text { flex: 1; min-width: 0; font-size: 16px; font-weight: var(--fw-medium); line-height: 1.5; color: rgba(255,255,255,.85); letter-spacing: .2px; transition: color .2s; }
.home-faq-icon { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.home-faq-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.home-faq-item.open .home-faq-icon { transform: rotate(45deg); }
.home-faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s; }
.home-faq-item.open .home-faq-answer { max-height: 500px; }
.home-faq-answer-inner { padding: 0 32px 22px 28px; font-size: 14px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.45); }
.home-faq-answer-inner p { margin: 0 0 10px; }
.home-faq-answer-inner p:last-child { margin-bottom: 0; }
.home-faq-list { display: flex; flex-direction: column; gap: 6px; padding-left: 18px; margin: 0; list-style: none; }
.home-faq-list li { position: relative; }
.home-faq-list li::before { content: '—'; position: absolute; left: -18px; color: var(--gold); }

.home-faq-cta { margin-top: 40px; padding: 28px; border: 1px solid rgba(255,255,255,.08); border-radius: 2px; background: rgba(255,255,255,.02); display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.home-faq-cta-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(194,142,61,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: rgba(194,142,61,.05); }
.home-faq-cta-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.home-faq-cta-title { font-size: 16px; font-weight: var(--fw-medium); letter-spacing: -.2px; margin-bottom: 8px; }
.home-faq-cta-desc { font-size: 12px; font-weight: var(--fw-light); line-height: 1.7; color: rgba(255,255,255,.5); max-width: 460px; }
.home-faq-cta-sep { display: none; }
.home-faq-cta-btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 12px; border: 1px solid #88632b; border-radius: 2px; color: var(--gold); text-decoration: none; font-size: 11px; font-weight: var(--fw-regular); letter-spacing: 1px; text-transform: uppercase; padding: 0 24px; height: 44px; transition: border-color .2s, background .2s; white-space: nowrap; }
.home-faq-cta-btn:hover { border-color: rgba(194,142,61,.8); background: rgba(194,142,61,.06); }


/* ════════════════════════════════════════
   NEWS PAGE
════════════════════════════════════════ */
.page-hero { padding: 130px 24px 56px; border-bottom: 1px solid rgba(255,255,255,.08); background: var(--navy-2); }
.page-h1 { font-size: 40px; font-weight: var(--fw-regular); letter-spacing: -1px; text-transform: uppercase; margin-bottom: 16px; }
.page-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.45); max-width: 560px; }

.categories { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; gap: 8px; flex-wrap: wrap; }
.cat-btn { font-family: var(--font-main); font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 2px; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); background: transparent; cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.cat-btn:hover, .cat-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(194,142,61,.06); }

.featured { padding: 48px 24px 0; }
.featured-card { position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; border: 1px solid rgba(255,255,255,.1); }
.featured-img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform .6s ease; }
.featured-card:hover .featured-img { transform: scale(1.03); }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,10,21,1) 0%, rgba(5,10,21,.6) 45%, rgba(5,10,21,.1) 100%); }
.featured-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; }
.art-tag { display: inline-block; font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(194,142,61,.4); padding: 4px 10px; border-radius: 2px; margin-bottom: 12px; }
.art-title { font-size: 20px; font-weight: var(--fw-medium); letter-spacing: -.3px; line-height: 1.3; margin-bottom: 12px; }
.art-meta { font-size: 10px; font-weight: var(--fw-light); color: rgba(255,255,255,.4); letter-spacing: 1px; display: flex; gap: 16px; align-items: center; }
.art-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.3); }

.news-section { padding: 48px 24px 72px; }
.news-label { font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.news-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
.news-card { background: var(--navy); display: flex; flex-direction: column; cursor: pointer; transition: background .2s; }
.news-card:hover { background: rgba(255,255,255,.02); }
.news-card-img-wrap { overflow: hidden; flex-shrink: 0; height: 180px; }
.news-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.news-card:hover .news-card-img-wrap img { transform: scale(1.04); }
.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid rgba(255,255,255,.06); }
.news-card-title { font-size: 14px; font-weight: var(--fw-medium); line-height: 1.45; letter-spacing: -.2px; }
.news-card-excerpt { font-size: 12px; font-weight: var(--fw-light); line-height: 1.7; color: rgba(255,255,255,.45); flex: 1; }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.news-card-date { font-size: 9px; font-weight: var(--fw-light); letter-spacing: 1px; color: rgba(255,255,255,.3); text-transform: uppercase; }
.read-arrow { display: flex; align-items: center; transition: transform .2s; }
.news-card:hover .read-arrow { transform: translateX(5px); }

.load-more-wrap { padding: 0 24px 56px; display: flex; justify-content: center; }
.btn-load { border-radius: 2px; font-family: var(--font-main); font-size: 11px; font-weight: var(--fw-regular); letter-spacing: 1px; text-transform: uppercase; padding: 0 40px; height: 44px; border: 1px solid #88632b; color: rgba(255,255,255,.75); background: transparent; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; box-sizing: border-box; transition: border-color .2s, color .2s; }
.btn-load:hover { border-color: rgba(255,255,255,.7); color: #fff; }

.newsletter { padding: 64px 24px; background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 24px; }
.newsletter-tag { font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.newsletter-h2 { font-size: 26px; font-weight: var(--fw-regular); letter-spacing: -.5px; text-transform: uppercase; line-height: 1.2; }
.newsletter-desc { font-size: 13px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.45); max-width: 440px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.newsletter-input { height: 44px; padding: 0 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 2px; color: #fff; font-family: var(--font-main); font-size: 12px; font-weight: var(--fw-light); outline: none; transition: border-color .2s; }
.newsletter-input::placeholder { color: rgba(255,255,255,.25); }
.newsletter-input:focus { border-color: rgba(194,142,61,.5); }


/* ════════════════════════════════════════
   INVESTMENTS PAGE
════════════════════════════════════════ */
.inv-hero { position: relative; min-height: 65vh; display: flex; align-items: flex-end; padding: 130px 24px 64px; overflow: hidden; }
.inv-hero-bg { position: absolute; inset: 0; background: url('../images/hero-bg.png') center 40% / cover no-repeat; opacity: .28; }
.inv-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,10,21,.4) 0%, rgba(5,10,21,.92) 100%); }
.inv-hero-copy { position: relative; z-index: 1; max-width: 720px; }
.inv-h1 { font-size: 40px; font-weight: var(--fw-regular); letter-spacing: -1px; line-height: 1.05; text-transform: uppercase; margin-bottom: 24px; }
.inv-hero-desc { font-size: 14px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.5); max-width: 520px; }

.philosophy { padding: 72px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.phil-quote { font-size: 22px; font-weight: var(--fw-light); line-height: 1.55; letter-spacing: -.3px; color: rgba(255,255,255,.88); border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 32px; }
.phil-body { font-size: 13px; font-weight: var(--fw-light); line-height: 1.85; color: rgba(255,255,255,.45); }
.phil-pillars { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.phil-pillar { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 2px; transition: border-color .2s, background .2s; }
.phil-pillar:hover { border-color: rgba(194,142,61,.3); background: rgba(194,142,61,.03); }
.phil-pillar-num { font-size: 11px; font-weight: var(--fw-semibold); color: var(--gold); letter-spacing: 1px; flex-shrink: 0; width: 24px; }
.phil-pillar-text { font-size: 12px; font-weight: var(--fw-medium); letter-spacing: .5px; color: rgba(255,255,255,.75); }

.key-metrics { padding: 72px 24px; background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); margin-top: 40px; }
.metric-card { background: var(--navy-2); padding: 32px 24px; }
.metric-val { font-size: 36px; font-weight: var(--fw-semibold); letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px; }
.metric-val span { font-size: 20px; color: var(--gold); }
.metric-label { font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.metric-desc { font-size: 11px; font-weight: var(--fw-light); line-height: 1.6; color: rgba(255,255,255,.35); }

.sectors { padding: 72px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sectors-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid rgba(255,255,255,.08); margin-top: 40px; }
.sector-row { display: flex; gap: 0; align-items: stretch; border-bottom: 1px solid rgba(255,255,255,.08); cursor: pointer; transition: background .2s; }
.sector-row:last-child { border-bottom: none; }
.sector-row:hover { background: rgba(255,255,255,.02); }
.sector-num { width: 56px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: var(--fw-semibold); color: rgba(194,142,61,.4); letter-spacing: 1px; border-right: 1px solid rgba(255,255,255,.06); }
.sector-body { flex: 1; padding: 24px 20px; }
.sector-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.sector-name { font-size: 14px; font-weight: var(--fw-medium); letter-spacing: .5px; }
.sector-tag-chip { font-size: 8px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); border-radius: 2px; flex-shrink: 0; }
.sector-desc { font-size: 12px; font-weight: var(--fw-light); line-height: 1.7; color: rgba(255,255,255,.4); }
.sector-bar { margin-top: 14px; }
.sector-bar-track { height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; overflow: hidden; }
.sector-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), rgba(194,142,61,.4)); border-radius: 1px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.sector-bar-label { display: flex; justify-content: space-between; margin-top: 6px; }
.sector-bar-name { font-size: 9px; font-weight: var(--fw-light); color: rgba(255,255,255,.25); letter-spacing: 1px; }
.sector-bar-pct { font-size: 9px; font-weight: var(--fw-medium); color: var(--gold); }

.portfolio { padding: 72px 24px; background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
.portfolio-card { border: 1px solid rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; cursor: pointer; transition: border-color .25s; }
.portfolio-card:hover { border-color: rgba(194,142,61,.35); }
.portfolio-img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform .5s ease; }
.portfolio-card:hover .portfolio-img { transform: scale(1.04); }
.portfolio-body { padding: 20px; }
.portfolio-sector { font-size: 8px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.portfolio-name { font-size: 16px; font-weight: var(--fw-medium); letter-spacing: -.2px; margin-bottom: 8px; }
.portfolio-desc { font-size: 12px; font-weight: var(--fw-light); line-height: 1.65; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.portfolio-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.pmeta-label { font-size: 8px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pmeta-val { font-size: 13px; font-weight: var(--fw-semibold); color: rgba(255,255,255,.85); }

.process { padding: 72px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.process-intro-body { font-size: 13px; font-weight: var(--fw-light); line-height: 1.8; color: rgba(255,255,255,.45); margin-top: 20px; }
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.process-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.07); opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.process-step.visible { opacity: 1; transform: translateY(0); }
.step-num-col { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.step-num { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(194,142,61,.5); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: var(--fw-semibold); color: var(--gold); flex-shrink: 0; }
.step-line { width: 1px; flex: 1; background: rgba(255,255,255,.08); margin-top: 8px; }
.process-step:last-child .step-line { display: none; }
.step-body { flex: 1; padding-top: 8px; }
.step-title { font-size: 14px; font-weight: var(--fw-medium); letter-spacing: .3px; margin-bottom: 10px; }
.step-desc { font-size: 12px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.4); }
.step-duration { font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 10px; }

.criteria { padding: 72px 24px; background: var(--navy-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.criteria-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); margin-top: 40px; }
.criteria-card { background: var(--navy-2); padding: 28px 24px; }
.criteria-icon { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(80,175,255,.35); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: rgba(30,107,255,.05); }
.criteria-icon svg { width: 20px; height: 20px; stroke: rgba(120,205,255,.85); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.criteria-title { font-size: 13px; font-weight: var(--fw-medium); letter-spacing: .5px; margin-bottom: 10px; }
.criteria-desc { font-size: 11px; font-weight: var(--fw-light); line-height: 1.75; color: rgba(255,255,255,.4); }

.inv-cta { padding: 80px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; position: relative; overflow: hidden; }
.inv-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(194,142,61,.06) 0%, transparent 65%); pointer-events: none; }


/* ════════════════════════════════════════
   INNER PAGES — TABLET ≥ 640px
════════════════════════════════════════ */
@media (min-width: 640px) {
  .about-hero { padding: 150px 40px 72px; }
  .about-h1 { font-size: 54px; }
  .mission { padding: 80px 40px; }
  .mission-grid { flex-direction: row; gap: 48px; }
  .mission-item { flex: 1; }
  .story { padding: 80px 40px; }
  .story-img { height: 380px; }
  .values { padding: 80px 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .timeline { padding: 80px 40px; }
  .leadership { padding: 80px 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about-who { padding: 80px 40px; }
  .about-business { padding: 80px 40px; }
  .about-business-grid { grid-template-columns: repeat(2, 1fr); }
  .about-process { padding: 80px 40px; }
  .about-process-h2 { font-size: 48px; }
  .about-process-steps { flex-direction: row; align-items: stretch; }
  .about-step-arrow { margin: 0; transform: rotate(0deg); align-self: center; }
  .about-process-strip { flex-direction: row; border-radius: 6px; }
  .about-ps-item { flex: 1; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 28px 20px; border-bottom: none; border-right: 1px solid rgba(255,255,255,.07); }
  .about-ps-item:last-child { border-right: none; }
  .about-ps-sep { display: none; }
  .about-approach { padding: 80px 40px; }
  .about-approach-grid { grid-template-columns: repeat(3, 1fr); }
  .about-estonia { padding: 80px 40px; }
  .about-estonia-h2 { font-size: 48px; }
  .about-estonia-photo { height: 420px; }
  .about-ci { padding: 80px 40px; }
  .about-ci-h2 { font-size: 44px; }
  .about-values { padding: 80px 40px; }
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-section-h2 { font-size: 36px; }
  .about-cta { padding: 100px 40px; }
  .cta-h2 { font-size: 36px; }
  .cta-btns { flex-direction: row; max-width: 480px; }
  .cta-btns .btn-primary, .cta-btns .btn-ghost { width: auto; flex: 1; }

  .eco-hero { padding: 140px 40px 72px; }
  .eco-hero-h1 { font-size: 52px; }
  .intro-strip { padding: 72px 40px; }
  .intro-quote { font-size: 26px; }
  .pillar-body { padding: 48px 40px; }
  .connection { padding: 72px 40px; }
  .eco-cta { padding: 100px 40px; }
  .eco-cta-h2 { font-size: 36px; }
  .eco-cta-btns { flex-direction: row; max-width: 480px; }
  .eco-cta-btns .btn-primary, .eco-cta-btns .btn-ghost { width: auto; flex: 1; }

  .contact-hero { padding: 150px 40px 72px; }
  .contact-h1 { font-size: 52px; }
  .contact-main { padding: 72px 40px 96px; }
  .form-row { flex-direction: row; gap: 16px; }
  .form-row .field { flex: 1; }
  .btn-submit { width: auto; }
  .contact-info { margin-top: 0; }
  .offices { padding: 72px 40px; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .faq { padding: 72px 40px; }
  .home-faq { padding: 72px 40px; }
  .home-faq-h2 { font-size: 34px; }
  .home-faq-cta { flex-direction: row; align-items: center; }
  .home-faq-cta-text { flex: 1; }
  .home-faq-cta-sep { display: block; width: 1px; align-self: stretch; background: rgba(255,255,255,.1); }

  .page-hero { padding: 140px 40px 64px; }
  .page-h1 { font-size: 52px; }
  .categories { padding: 28px 40px; }
  .featured { padding: 56px 40px 0; }
  .featured-img { height: 400px; }
  .art-title { font-size: 26px; }
  .featured-body { padding: 36px 40px; }
  .news-section { padding: 56px 40px 80px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .newsletter { padding: 72px 40px; }
  .newsletter-h2 { font-size: 32px; }
  .newsletter-form { flex-direction: row; }
  .load-more-wrap { padding: 0 40px 72px; }

  .inv-hero { padding: 150px 40px 72px; }
  .inv-h1 { font-size: 54px; }
  .philosophy { padding: 80px 40px; }
  .phil-quote { font-size: 26px; }
  .key-metrics { padding: 80px 40px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors { padding: 80px 40px; }
  .portfolio { padding: 80px 40px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 80px 40px; }
  .criteria { padding: 80px 40px; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .inv-cta { padding: 100px 40px; }
  .cta-h2 { font-size: 36px; }
}


/* ════════════════════════════════════════
   INNER PAGES — DESKTOP ≥ 1024px
════════════════════════════════════════ */
@media (min-width: 1024px) {
  .about-hero { padding: 180px 80px 100px; min-height: 70vh; }
  .about-h1 { font-size: 72px; }
  .about-hero-desc { font-size: 15px; }
  .mission { padding: 100px 80px; }
  .mission-title { font-size: 32px; }
  .story { padding: 100px 80px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: start; }
  .story-img { margin-top: 0; height: 100%; min-height: 500px; }
  .values { padding: 100px 80px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { padding: 100px 80px; }
  .tl-list { max-width: 720px; }
  .leadership { padding: 100px 80px; }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
  .about-who { padding: 100px 80px; }
  .about-business { padding: 100px 80px; }
  .about-business-grid { grid-template-columns: repeat(3, 1fr); }
  .about-process { padding: 100px 80px; }
  .about-process-h2 { font-size: 56px; }
  .about-approach { padding: 100px 80px; }
  .about-estonia { padding: 100px 80px; }
  .about-estonia-inner { flex-direction: row; gap: 48px; align-items: stretch; }
  .about-estonia-left { flex: 1; min-width: 0; }
  .about-estonia-h2 { font-size: 56px; }
  .about-estonia-right { flex: 0 0 420px; }
  .about-estonia-photo { height: 100%; min-height: 500px; }
  .about-ci { padding: 100px 80px; }
  .about-ci-inner { flex-direction: row; gap: 64px; align-items: flex-start; }
  .about-ci-left { flex: 0 0 320px; }
  .about-ci-h2 { font-size: 52px; }
  .about-ci-right { flex: 1; min-width: 0; }
  .about-values { padding: 100px 80px; }
  .about-section-h2 { font-size: 44px; }
  .about-cta { padding: 120px 80px; }
  .cta-h2 { font-size: 44px; }

  .eco-hero { padding: 160px 80px 96px; min-height: 70vh; }
  .eco-hero-h1 { font-size: 68px; }
  .eco-hero-desc { font-size: 15px; }
  .intro-strip { padding: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .intro-quote { margin-bottom: 0; font-size: 28px; }
  .pillar { flex-direction: row; min-height: 420px; }
  .pillar:nth-child(even) { flex-direction: row-reverse; }
  .pillar-img-wrap { width: 45%; height: auto; }
  .pillar-body { padding: 64px 72px; flex: 1; justify-content: center; }
  .pillar-index { font-size: 96px; }
  .pillar-title { font-size: 24px; }
  .connection { padding: 56px 56px 64px; }
  .connection-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
  .connection-intro { margin-bottom: 0; }
  .node-diagram { flex-wrap: nowrap; gap: 0; justify-content: space-between; align-items: center; }
  .nd-connector { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(80,175,255,.3), rgba(80,175,255,.1)); }
  .eco-cta { padding: 120px 80px; }
  .eco-cta-h2 { font-size: 44px; }

  .contact-hero { padding: 180px 80px 96px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .contact-h1 { font-size: 68px; margin-bottom: 0; }
  .contact-main { padding: 56px 56px 64px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: start; }
  .offices { padding: 96px 80px; }
  .offices-grid { grid-template-columns: repeat(3, 1fr); }
  .faq { padding: 96px 80px; }
  .faq-list { max-width: 720px; }
  .home-faq { padding: 96px 80px; }
  .home-faq-h2 { font-size: 40px; }
  .home-faq-sub { font-size: 14px; }
  .home-faq-grid { flex-direction: row; gap: 64px; }
  .home-faq-col { flex: 1; min-width: 0; }
  .home-faq-cta { padding: 36px 40px; margin-top: 56px; }

  .page-hero { padding: 160px 80px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
  .page-h1 { font-size: 64px; margin-bottom: 0; }
  .categories { padding: 28px 80px; }
  .featured { padding: 64px 80px 0; }
  .featured-img { height: 520px; }
  .art-title { font-size: 32px; }
  .featured-body { padding: 48px 56px; max-width: 600px; }
  .news-section { padding: 64px 80px 96px; }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter { padding: 96px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .newsletter-h2 { font-size: 36px; }
  .load-more-wrap { padding: 0 80px 96px; }

  .inv-hero { padding: 180px 80px 100px; min-height: 72vh; }
  .inv-h1 { font-size: 72px; }
  .philosophy { padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .phil-pillars { margin-top: 0; }
  .key-metrics { padding: 100px 80px; }
  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
  .sectors { padding: 100px 80px; }
  .portfolio { padding: 100px 80px; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .process { padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .process-steps { margin-top: 0; }
  .criteria { padding: 100px 80px; }
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
  .inv-cta { padding: 120px 80px; }
  .cta-h2 { font-size: 46px; }
}


/* ════════════════════════════════════════
   INNER PAGES — WIDE ≥ 1280px
════════════════════════════════════════ */
@media (min-width: 1280px) {
  .mission, .story, .values, .timeline, .leadership { padding-left: 96px; padding-right: 96px; }
  .about-who, .about-business, .about-process, .about-approach, .about-estonia, .about-ci, .about-values { padding-left: 96px; padding-right: 96px; }
  .pillar-body { padding: 72px 96px; }
  .contact-hero, .offices, .faq { padding-left: 96px; padding-right: 96px; }
  .home-faq { padding-left: 96px; padding-right: 96px; }
.philosophy, .key-metrics, .sectors, .portfolio, .process, .criteria { padding-left: 96px; padding-right: 96px; }
  .news-grid { grid-template-columns: repeat(4, 1fr); }
  .tpage-hero { padding: 180px 96px 80px; }
  .tpage-wrap { padding: 0 96px 120px; }
}

/* ── Text Page ──────────────────────────────────────────────────── */
.tpage-hero {
  padding: 120px 24px 56px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tpage-hero-inner { max-width: 860px; margin: 0 auto; }
.tpage-h1 {
  font-size: 36px;
  font-weight: var(--fw-regular);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 12px 0 0;
}

.tpage-wrap {
  padding: 56px 24px 96px;
  max-width: 860px;
  margin: 0 auto;
}

.tpage-content { font-size: 14px; font-weight: var(--fw-light); line-height: 1.85; color: rgba(255,255,255,.7); }
.tpage-content h2 { font-size: 20px; font-weight: var(--fw-medium); letter-spacing: .5px; text-transform: uppercase; color: #fff; margin: 48px 0 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.tpage-content h3 { font-size: 14px; font-weight: var(--fw-semibold); letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin: 32px 0 10px; }
.tpage-content p { margin: 0 0 18px; }
.tpage-content ul, .tpage-content ol { margin: 0 0 18px; padding-left: 20px; }
.tpage-content li { margin-bottom: 8px; }
.tpage-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.tpage-content a:hover { color: var(--gold-lt); }
.tpage-content strong { font-weight: var(--fw-semibold); color: rgba(255,255,255,.9); }
.tpage-content blockquote { margin: 32px 0; padding: 20px 24px; border-left: 3px solid var(--gold); background: rgba(194,142,61,.05); color: rgba(255,255,255,.6); font-style: italic; }
.tpage-content table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 13px; }
.tpage-content th { text-align: left; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.12); font-weight: var(--fw-medium); color: rgba(255,255,255,.5); letter-spacing: .5px; text-transform: uppercase; font-size: 11px; }
.tpage-content td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.06); vertical-align: top; }
.tpage-content hr { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 40px 0; }

@media (min-width: 640px) {
  .tpage-hero { padding: 150px 40px 64px; }
  .tpage-wrap { padding: 64px 40px 96px; }
  .tpage-h1 { font-size: 48px; }
}

@media (min-width: 1024px) {
  .tpage-hero { padding: 160px 56px 72px; }
  .tpage-wrap { padding: 72px 56px 120px; max-width: 920px; }
  .tpage-h1 { font-size: 56px; }
}

/* ── Single Post ────────────────────────────────────────────────── */
.single-back { display: inline-block; font-size: 10px; font-weight: var(--fw-medium); letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); text-decoration: none; margin-bottom: 24px; }
.single-back:hover { color: var(--gold-lt); }
.single-hero .art-tag { margin-bottom: 16px; }
.single-hero .art-meta { margin-top: 20px; }
.single-hero-img-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.single-hero-img { width: 100%; height: 260px; object-fit: cover; border-radius: 2px; display: block; }

.single-summary-wrap { max-width: 860px; margin: 0 auto; padding: 32px 24px 0; }
.single-summary { padding: 20px 24px; border-left: 3px solid var(--gold); background: rgba(194,142,61,.05); border-radius: 2px; }
.single-summary-label { display: block; font-size: 9px; font-weight: var(--fw-medium); letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.single-summary p { font-size: 15px; font-weight: var(--fw-light); line-height: 1.7; color: rgba(255,255,255,.85); }

@media (min-width: 640px) {
  .single-hero-img-wrap { padding: 0 40px; }
  .single-hero-img { height: 360px; }
  .single-summary-wrap { padding: 40px 40px 0; }
}

@media (min-width: 1024px) {
  .single-hero-img-wrap { padding: 0 56px; }
  .single-hero-img { height: 460px; }
  .single-summary-wrap { padding: 48px 56px 0; }
}
