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

:root {
  --bg-light: #fefefc;
  --surface: #ffffff;
  --ink: #1e1b2c;
  --ink-soft: #5a5572;
  --accent: #8b5cf6;
  --accent-soft: #a78bfa;
  --border-light: #ede9fe;
  --shadow-sm: 0 12px 28px -8px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.01);
  --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 20px 40px -14px rgba(139, 92, 246, 0.15);
  --radius-card: 2rem;
  --radius-element: 1.25rem;
  --transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  --max: 1180px;
  --green: #2f6d57;
  --muted: #5a5572;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background: var(--bg-light);
  color: var(--ink);
  line-height: 1.6;
}

.sacred-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%238b5cf6' stroke-width='0.8' d='M100 10 L190 70 L190 130 L100 190 L10 130 L10 70 Z'/%3E%3Ccircle cx='100' cy='100' r='40' stroke='%238b5cf6' stroke-width='0.6' fill='none'/%3E%3Cpath d='M100 30 L130 60 L130 100 L100 130 L70 100 L70 60 Z' stroke='%238b5cf6' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 48px;
}

.wrapper {
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
}

.brand {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  background: linear-gradient(135deg, #5b3b8c, #9f7aea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.nav-group {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-tag {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7ddff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #2d2a44;
  transition: var(--transition);
}

.nav-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.hero-section {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 2.5rem 1.5rem 3rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 248, 235, 0.7), rgba(255, 255, 255, 0.95));
  border-radius: 2.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.proof-badge {
  display: inline-flex;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: #4b4464;
  max-width: 60ch;
}

.hero-lead strong {
  color: #6d28d9;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.2rem;
}

.btn-group-center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(105deg, var(--accent), var(--accent-soft));
  color: white;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px -8px rgba(139, 92, 246, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #ddd0ff;
  color: #4c3a7a;
}

.btn-outline:hover {
  background: white;
  border-color: #b49eff;
  box-shadow: var(--shadow-sm);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e2d5ff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #4a3b6e;
}

.sacred-canvas-wrap {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sacred-canvas {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 2rem;
  background: rgba(255, 250, 245, 0.3);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.05);
}

.section {
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 2rem;
}

.offer-box {
  background: linear-gradient(125deg, #f9f6ff, #ffffff);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #ede3ff;
}

.contact-box {
  text-align: center;
  background: linear-gradient(115deg, #fff6ee, #ffffff);
}

.offer-grid,
.promise-grid,
.client-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0eaff;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #e5d5ff;
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.small {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: #6b6285;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.metric {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 1.4rem;
  text-align: center;
  border: 1px solid #efe8ff;
}

.metric strong {
  display: block;
  font-size: 1.9rem;
  color: #7c3aed;
  margin-bottom: 0.25rem;
}

.metric span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.badge-light {
  display: inline-block;
  background: #f3eefe;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.client-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0eaff;
}

.client-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.client-card p {
  color: var(--ink-soft);
}

.client-card-accent {
  background: linear-gradient(145deg, #fffdf9, #ffffff);
  border-color: #eadaff;
}

.line-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fefcf9;
  padding: 0.95rem 1.1rem;
  border-radius: 1.2rem;
  text-decoration: none;
  border: 1px solid #ece5ff;
  transition: var(--transition);
}

.line-item:hover {
  background: #fff;
  border-color: #cbb6ff;
  transform: translateX(4px);
}

.line-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.line-item span {
  font-size: 0.84rem;
  color: #6f6890;
}

.contact-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #6a6285;
}

.footer-search-section{padding-top:8px}
.footer-search-box{max-width:980px;margin:0 auto;text-align:left}
.geo-search-footer{justify-content:flex-start;flex:0 1 auto;margin-top:14px}
@media (max-width:980px){
  .footer-search-box{text-align:left}
  .geo-search-footer{width:100%;display:flex}
}

/* GEODOMAS ekosistemos footer — full width, šviesus modernus */
footer.site-footer.site-footer--ecosystem {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: clamp(48px, 5vw, 80px) 0 clamp(24px, 3vw, 36px);
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 14% 0%, rgba(139, 92, 246, 0.1), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(47, 109, 87, 0.07), transparent 36%),
    linear-gradient(180deg, #fdfcff 0%, #f8f5ff 50%, #f6faf8 100%);
  border-top: 1px solid var(--border-light);
  font-size: 14px;
}
.site-footer.site-footer--ecosystem .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(16px, 3.5vw, 56px);
}
.site-footer.site-footer--ecosystem .footer-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}
.site-footer.site-footer--ecosystem .footer-head h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-weight: 750;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.site-footer.site-footer--ecosystem .footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer.site-footer--ecosystem .footer-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.site-footer.site-footer--ecosystem .footer-top {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition);
}
.site-footer.site-footer--ecosystem .footer-top:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.site-footer.site-footer--ecosystem .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.site-footer.site-footer--ecosystem .footer-links a {
  min-width: 0;
  min-height: 132px;
  padding: 18px 16px;
  border-radius: var(--radius-element);
  border: 1px solid var(--border-light);
  background: linear-gradient(145deg, #ffffff, #faf7ff);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.site-footer.site-footer--ecosystem .footer-links a:hover {
  background: #fff;
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow: var(--shadow-glow);
}
.site-footer.site-footer--ecosystem .footer-links strong {
  display: block;
  margin-bottom: 8px;
  color: #5b21b6;
  font-size: clamp(9px, .58vw, 11px);
  line-height: 1.3;
  letter-spacing: .05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer.site-footer--ecosystem .footer-links span {
  display: block;
  color: var(--ink-soft);
  line-height: 1.45;
  font-size: 13px;
}
.site-footer.site-footer--ecosystem .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(22px, 3vw, 30px);
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  color: var(--ink-soft);
  font-size: 13px;
  flex-wrap: wrap;
}
.site-footer.site-footer--ecosystem .footer-bottom a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.site-footer.site-footer--ecosystem .footer-bottom a:hover {
  color: #6d28d9;
}
@media (min-width: 720px) {
  .site-footer.site-footer--ecosystem .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .site-footer.site-footer--ecosystem .footer-links {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
  }
  .site-footer.site-footer--ecosystem .footer-links a {
    min-height: 148px;
    padding: 18px 14px;
  }
  .site-footer.site-footer--ecosystem .footer-links strong {
    font-size: 10px;
    letter-spacing: .055em;
  }
}
@media (max-width: 980px) {
  .site-footer.site-footer--ecosystem .footer-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .site-footer.site-footer--ecosystem .footer-links {
    grid-template-columns: 1fr;
  }
  .site-footer.site-footer--ecosystem .footer-links a {
    min-height: auto;
  }
  .site-footer.site-footer--ecosystem .footer-bottom {
    flex-direction: column;
  }
}
.hero-section-full {
  position: relative;
  min-height: min(92vh, 980px);
  max-width: 1440px;
  margin: 2rem auto 0;
  border-radius: 2.6rem;
  overflow: hidden;
  box-shadow:
    0 28px 70px -24px rgba(29, 21, 48, 0.16),
    0 8px 28px -12px rgba(139, 92, 246, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.12);
  background: #f8f5ef;
  isolation: isolate;
}

.hero-bg-image,
.hero-bg-vignette,
.hero-bg-gradient,
.hero-full-overlay,
.hero-inner {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(248,245,239,0.92) 0%, rgba(248,245,239,0.72) 28%, rgba(248,245,239,0.18) 54%, rgba(248,245,239,0.36) 100%),
    url("/start.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
  will-change: transform;
}

.hero-bg-vignette {
  z-index: 2;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.32), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 72% 50%, rgba(167,139,250,0.08), rgba(167,139,250,0) 28%),
    radial-gradient(circle at 50% 110%, rgba(231,198,126,0.08), rgba(255,255,255,0) 38%),
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(31,24,54,0.04));
  pointer-events: none;
}

.hero-bg-gradient {
  z-index: 3;
  background:
    linear-gradient(90deg,
      rgba(248,245,239,0.96) 0%,
      rgba(248,245,239,0.90) 18%,
      rgba(248,245,239,0.72) 34%,
      rgba(248,245,239,0.30) 55%,
      rgba(248,245,239,0.18) 70%,
      rgba(248,245,239,0.42) 100%);
  pointer-events: none;
}

.hero-full-overlay {
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.hero-inner {
  z-index: 5;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.hero-content {
  position: relative;
  max-width: 680px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: 2rem;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.36),
    rgba(255,255,255,0.18)
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 18px 42px -20px rgba(31, 24, 54, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.42);
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(139, 92, 246, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.16);
  margin-bottom: 1.3rem;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #1d1830;
  max-width: 8ch;
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
  color: #544d6e;
  max-width: 54ch;
}

.hero-lead strong {
  color: #6d3df0;
  font-weight: 800;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(167,139,250,0.18);
  color: #564a76;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

@media (max-width: 1100px) {
  .hero-section-full {
    min-height: 760px;
  }

  .hero-inner {
    align-items: flex-end;
    padding: 2rem;
  }

  .hero-bg-image {
    background-position: 66% center;
  }

  .hero-content {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .hero-section-full {
    min-height: 720px;
    border-radius: 2rem;
  }

  .hero-bg-image {
    background-position: 72% center;
    background-image:
      linear-gradient(to bottom, rgba(248,245,239,0.82) 0%, rgba(248,245,239,0.62) 36%, rgba(248,245,239,0.30) 100%),
      linear-gradient(to right, rgba(248,245,239,0.90) 0%, rgba(248,245,239,0.50) 55%, rgba(248,245,239,0.18) 100%),
      url("/start.jpg");
  }

  .hero-inner {
    padding: 1.25rem;
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
    padding: 1.15rem;
    border-radius: 1.5rem;
  }

  .hero-content h1 {
    max-width: 10ch;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-tag {
    font-size: 0.8rem;
    min-height: 34px;
    padding: 0.45rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image {
    transform: none !important;
  }
}
.hero-section-subpage {
  position: relative;
  max-width: 1280px;
  margin: 2rem auto 0;
  min-height: 620px;
  border-radius: 2.4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f4ed, #fcfbf8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(167, 139, 250, 0.12);
}

.hero-subpage-bg,
.hero-subpage-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-subpage-bg {
  background:
    linear-gradient(to right, rgba(248,245,239,0.92) 0%, rgba(248,245,239,0.86) 38%, rgba(248,245,239,0.42) 62%, rgba(248,245,239,0.30) 100%),
    url("/start.jpg");
  background-size: cover;
  background-position: center right;
  opacity: 0.92;
}

.hero-subpage-vignette {
  background:
    radial-gradient(circle at 70% 50%, rgba(167,139,250,0.08), rgba(167,139,250,0) 26%),
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(31,24,54,0.02));
}

.hero-subpage-inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 2.25rem;
}

.hero-subpage-card {
  max-width: 690px;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(255,255,255,0.44));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 20px 48px -20px rgba(31,24,54,0.18);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.8rem;
  align-items: start;
}

.soft-card {
  background: linear-gradient(135deg, #fbf7ff, #fffdfa);
  border: 1px solid #ece2ff;
  border-radius: 1.8rem;
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: #4f4967;
  font-weight: 500;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b5cf6;
  font-weight: 800;
}

.price-hint {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(139, 92, 246, 0.06);
  color: #564d75;
  font-size: 0.95rem;
  line-height: 1.55;
}

.section-head-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.case-card h3 {
  margin-bottom: 0.75rem;
}

.case-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.budget-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #f5efff;
  border: 1px solid #e7dbff;
  color: #6a54a8;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-shell-modern {
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #3c3552;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #e4d9fb;
  border-radius: 1rem;
  background: rgba(255,255,255,0.86);
  padding: 0.95rem 1rem;
  font: inherit;
  color: #241f35;
  outline: none;
  transition: var(--transition);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #b290ff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.2rem;
}

.form-result {
  min-height: 24px;
}

@media (max-width: 980px) {
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-subpage-inner {
    padding: 1.3rem;
    align-items: end;
  }

  .hero-subpage-card {
    padding: 1.3rem;
  }

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

.client-grid-3{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.nav-group{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.nav-tag{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;text-decoration:none}
.nav-tag.active{font-weight:700}
@media (min-width:1100px){.client-grid-3 .client-card h3{min-height:72px}}


.contact-links p{margin:0 0 10px}
.soft-card a,.card a{word-break:break-word}


.product-card{overflow:hidden}
.product-thumb{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:16px;margin:0 0 16px 0;background:#eef2f8}
.product-card h3{margin-top:2px}


/* V15 top product cards layout */
.case-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}
.product-thumb{
  aspect-ratio:4/3;
  object-fit:cover;
}
@media (max-width: 980px){
  .case-grid{grid-template-columns:1fr;}
}


.products-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}
.product-price{margin:14px 0 10px;font-size:24px;font-weight:800;color:#24193f}
.product-sku{font-size:13px;line-height:1.45;color:#7a7390;word-break:break-word}
@media (max-width:980px){.products-grid-2{grid-template-columns:1fr}}


/* V13 home utilities for index */
.section-tight-top{padding-top:22px}
.section-tight{padding-top:12px;padding-bottom:20px}
.section-head-center{text-align:center;max-width:900px;margin:0 auto 28px}
.section-head-center .badge-light{display:inline-flex;margin:0 auto 14px}
.section-head-center .section-sub{max-width:760px;margin:0 auto}


/* V17 geodomas search bridge */
.topbar-inner{gap:18px}
.geo-search{display:flex;align-items:center;gap:10px;flex:0 1 420px;justify-content:flex-end}
.geo-search-input{width:100%;min-width:220px;padding:12px 16px;border-radius:999px;border:1px solid rgba(110,96,170,.18);background:#fff;color:#221a35;font:inherit;box-shadow:0 8px 18px rgba(28,24,44,.06)}
.geo-search-input::placeholder{color:#8b86a0}
.geo-search-btn{padding:12px 16px;border:none;border-radius:999px;background:linear-gradient(135deg,#7a5cff 0%,#52a8ff 100%);color:#fff;font-weight:700;cursor:pointer;box-shadow:0 10px 20px rgba(82,168,255,.18)}
.geo-search-btn:hover{transform:translateY(-1px)}
@media (max-width: 1180px){.topbar-inner{flex-wrap:wrap}.geo-search{order:3;flex:1 1 100%;justify-content:flex-start}.geo-search-input{min-width:0}}


/* V18 menu polish + LT simulator UI */
.topbar{position:sticky;top:0;z-index:120;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);border-bottom:1px solid rgba(110,96,170,.10)}
.topbar-inner{max-width:1280px;margin:0 auto;padding:16px 24px;display:flex;align-items:center;justify-content:space-between}
.brand{font-size:24px;line-height:1.05;font-weight:800;letter-spacing:-0.02em}
.brand-sub{display:block;margin-top:4px;font-size:12px;color:#7f7897}
.nav-group{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.nav-tag{padding:10px 14px;border:1px solid rgba(122,92,255,.16);background:rgba(255,255,255,.72);box-shadow:0 6px 16px rgba(31,24,49,.05)}
.nav-tag:hover{background:#fff;border-color:rgba(122,92,255,.28)}
.nav-tag.active{background:linear-gradient(135deg,#7a5cff 0%,#52a8ff 100%);color:#fff;border-color:transparent;box-shadow:0 10px 22px rgba(82,168,255,.18)}
@media (max-width:1180px){.topbar-inner{padding:14px 18px}.brand{font-size:20px}}


/* V21 mobile menu */
.menu-toggle{display:none;align-items:center;justify-content:center;width:46px;height:46px;border-radius:14px;border:1px solid rgba(122,92,255,.16);background:#fff;color:#34284f;font-size:24px;font-weight:800;box-shadow:0 8px 18px rgba(31,24,49,.06);cursor:pointer}
.menu-toggle:hover{background:#faf8ff}
@media (max-width: 980px){
  .topbar-inner{display:grid;grid-template-columns:1fr auto;align-items:start;gap:14px}
  .brand-wrap{grid-column:1/2}
  .menu-toggle{display:inline-flex;grid-column:2/3;justify-self:end}
  .nav-group{display:none;grid-column:1/-1;width:100%;padding:8px 0 2px;gap:10px}
  .nav-group.is-open{display:flex;flex-wrap:wrap}
  .nav-tag{flex:0 0 auto}
  .geo-search{grid-column:1/-1;order:3;flex:1 1 100%;justify-content:flex-start;margin-top:2px}
  .geo-search-input{min-width:0}
}
@media (max-width: 560px){
  .nav-group.is-open{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .nav-tag{display:flex;justify-content:center;padding:12px 14px}
  .geo-search{display:flex;gap:10px}
  .geo-search-input{font-size:16px;padding:14px 16px}
  .geo-search-btn{padding:14px 16px;white-space:nowrap}
}


/* V22 footer search move */
.footer-search-section{padding-top:8px}
.footer-search-box{max-width:980px;margin:0 auto;text-align:left}
.geo-search-footer{justify-content:flex-start;flex:0 1 auto;margin-top:14px}
@media (max-width:980px){
  .footer-search-box{text-align:left}
  .geo-search-footer{width:100%;display:flex}
}


/* V23 segment product cards */
.products-grid-2 .product-card p{margin-bottom:10px}
.products-grid-2 .case-meta-row{margin-bottom:6px}


/* V24 home catalog tabs */
.catalog-tabs{display:flex;gap:10px;flex-wrap:wrap;margin:20px 0 26px}
.catalog-tab{padding:12px 18px;border-radius:999px;border:1px solid rgba(122,92,255,.16);background:rgba(255,255,255,.78);color:#2d2345;font:inherit;font-weight:700;cursor:pointer;box-shadow:0 8px 18px rgba(31,24,49,.05)}
.catalog-tab:hover{background:#fff}
.catalog-tab.is-active{background:linear-gradient(135deg,#7a5cff 0%,#52a8ff 100%);color:#fff;border-color:transparent;box-shadow:0 12px 24px rgba(82,168,255,.18)}
.catalog-panel{display:none}
.catalog-panel.is-active{display:block}
@media (max-width:640px){.catalog-tabs{display:grid;grid-template-columns:1fr;}.catalog-tab{width:100%;text-align:center}}


/* V25 card actions */
.card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.btn-small{padding:10px 14px;font-size:14px;line-height:1.1}
.card-actions .btn{margin:0}
@media (max-width:640px){.card-actions{display:grid;grid-template-columns:1fr 1fr}.btn-small{text-align:center;justify-content:center}}


/* V26 segment card actions */
.products-grid-2 .card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.products-grid-2 .btn-small{padding:10px 14px;font-size:14px;line-height:1.1}
@media (max-width:640px){.products-grid-2 .card-actions{display:grid;grid-template-columns:1fr 1fr}}


/* V27 contact hub strengthen */
.form-help-note{margin:16px 0 8px;font-size:14px;line-height:1.6}

/* V31 Concept gallery */
.concept-section {
  position: relative;
}
.concept-head {
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}
.concept-head .section-sub {
  max-width: 820px;
}
.concept-head-btn {
  flex: 0 0 auto;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.concept-card {
  overflow: hidden;
  border: 1px solid rgba(18, 56, 46, 0.13);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,247,240,0.96));
  box-shadow: 0 22px 58px rgba(14, 38, 31, 0.10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.concept-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 154, 74, 0.45);
  box-shadow: 0 30px 80px rgba(14, 38, 31, 0.16);
}
.concept-card-featured {
  grid-column: span 2;
}
.concept-media {
  aspect-ratio: 16 / 9;
  background: #f4efe6;
  overflow: hidden;
}
.concept-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-body {
  padding: 22px 22px 24px;
}
.concept-kicker {
  margin-bottom: 10px;
  color: #c59a4a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.concept-body h3 {
  margin: 0 0 10px;
  color: #12382e;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}
.concept-body p {
  margin: 0;
  color: rgba(22, 34, 30, 0.74);
  font-size: 15px;
  line-height: 1.55;
}
.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.concept-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(18, 56, 46, 0.08);
  color: #12382e;
  font-size: 12px;
  font-weight: 750;
}
@media (max-width: 980px) {
  .concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .concept-card-featured {
    grid-column: span 2;
  }
}
@media (max-width: 680px) {
  .concept-head {
    align-items: start;
  }
  .concept-head-btn {
    width: 100%;
    justify-content: center;
  }
  .concept-grid {
    grid-template-columns: 1fr;
  }
  .concept-card-featured {
    grid-column: auto;
  }
  .concept-body {
    padding: 18px;
  }
}

/* V32 Concept zone polish: premium layout */
.concept-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.concept-section .badge-light {
  background: rgba(197, 154, 74, 0.14);
  color: #12382e;
  border: 1px solid rgba(197, 154, 74, 0.24);
}
.concept-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 42px);
  margin-bottom: clamp(26px, 4vw, 44px);
}
.concept-head .section-title {
  color: #12382e;
  letter-spacing: -0.045em;
}
.concept-head .section-sub {
  max-width: 760px;
  color: rgba(18, 31, 27, 0.72);
}
.concept-head-btn {
  min-width: 152px;
  box-shadow: 0 14px 34px rgba(18, 56, 46, 0.08);
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.concept-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 56, 46, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,247,240,0.98));
  box-shadow:
    0 24px 70px rgba(14, 38, 31, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.72);
  transform: translateZ(0);
}
.concept-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(197,154,74,.72), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.concept-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 154, 74, 0.42);
  box-shadow:
    0 34px 96px rgba(14, 38, 31, 0.17),
    inset 0 1px 0 rgba(255,255,255,0.76);
}
.concept-card:hover::after {
  opacity: 1;
}
.concept-card-featured {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
}
.concept-card-featured .concept-media {
  aspect-ratio: auto;
  min-height: 420px;
}
.concept-card-featured .concept-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concept-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4efe6;
}
.concept-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 26, 21, 0.28)),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.36), transparent 34%);
  opacity: .68;
}
.concept-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.concept-card:hover .concept-media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}
.concept-body {
  padding: clamp(20px, 2.4vw, 32px);
}
.concept-kicker {
  margin-bottom: 12px;
  color: #9a7430;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.concept-body h3 {
  margin: 0 0 12px;
  color: #12382e;
  font-size: clamp(21px, 2vw, 32px);
  line-height: .98;
  letter-spacing: -0.035em;
}
.concept-card-featured .concept-body h3 {
  font-size: clamp(30px, 3.1vw, 48px);
}
.concept-body p {
  margin: 0;
  color: rgba(22, 34, 30, 0.74);
  font-size: 15px;
  line-height: 1.6;
}
.concept-card-featured .concept-body p {
  font-size: 16px;
}
.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.concept-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 56, 46, 0.08);
  border: 1px solid rgba(18, 56, 46, 0.07);
  color: #12382e;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1160px) {
  .concept-card {
    grid-column: span 6;
  }
  .concept-card-featured {
    grid-column: span 12;
  }
}
@media (max-width: 860px) {
  .concept-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .concept-head-btn {
    width: fit-content;
  }
  .concept-card,
  .concept-card-featured {
    grid-column: span 12;
  }
  .concept-card-featured {
    display: block;
  }
  .concept-card-featured .concept-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 560px) {
  .concept-section {
    padding-top: 42px;
    padding-bottom: 48px;
  }
  .concept-grid {
    gap: 16px;
  }
  .concept-card {
    border-radius: 24px;
  }
  .concept-media,
  .concept-card-featured .concept-media {
    aspect-ratio: 1.18 / 1;
  }
  .concept-body {
    padding: 18px;
  }
  .concept-card-featured .concept-body h3,
  .concept-body h3 {
    font-size: 25px;
  }
  .concept-head-btn {
    width: 100%;
    justify-content: center;
  }
}

/* V33 Premium corporate tone */
:root {
  --eg-green: #12382e;
  --eg-green-dark: #0b2b24;
  --eg-gold: #c59a4a;
  --eg-cream: #faf7f0;
  --eg-sand: #f4efe6;
  --eg-ink: #151a18;
}
body {
  background-color: var(--eg-cream);
}
.sacred-bg {
  opacity: .38;
}
.topbar {
  border-bottom: 1px solid rgba(18, 56, 46, .08);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
}
.brand {
  color: #6342aa;
}
/* warm premium accents without breaking current purple CTA system */
.badge-light {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.section-title {
  letter-spacing: -0.045em;
}
.product-card,
.client-card,
.card,
.offer-box,
.form-shell-modern {
  box-shadow: 0 24px 70px rgba(14, 38, 31, .08);
}
.concept-section {
  margin-top: clamp(20px, 3vw, 42px);
  border-top: 1px solid rgba(18,56,46,.06);
  border-bottom: 1px solid rgba(18,56,46,.06);
  background:
    radial-gradient(circle at 10% 0%, rgba(197,154,74,.12), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(18,56,46,.08), transparent 30%);
}

/* V34 Premium route section */
.premium-route-section {
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(34px, 5vw, 70px);
}
.route-head {
  max-width: 860px;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(24px, 3.4vw, 42px);
}
.route-card {
  position: relative;
  min-height: 238px;
  padding: clamp(22px, 2vw, 30px);
  border-radius: 28px;
  border: 1px solid rgba(18,56,46,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,247,240,.96));
  box-shadow: 0 22px 64px rgba(14,38,31,.08);
  overflow: hidden;
}
.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(197,154,74,.18), transparent 34%),
    linear-gradient(135deg, transparent 0 72%, rgba(18,56,46,.045));
  pointer-events: none;
}
.route-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(18,56,46,.08);
  color: var(--eg-green);
  font-weight: 950;
  font-size: 13px;
  border: 1px solid rgba(18,56,46,.10);
}
.route-card h3 {
  position: relative;
  margin: 22px 0 10px;
  color: var(--eg-green);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.035em;
}
.route-card p {
  position: relative;
  margin: 0;
  color: rgba(20,31,28,.72);
  font-size: 15px;
  line-height: 1.58;
}
.route-card-cta {
  background:
    linear-gradient(145deg, rgba(18,56,46,.98), rgba(12,38,32,.95));
  border-color: rgba(197,154,74,.34);
  color: #fff;
}
.route-card-cta::before {
  background:
    radial-gradient(circle at 100% 0%, rgba(197,154,74,.26), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.10), transparent 36%);
}
.route-card-cta .route-no {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}
.route-card-cta h3,
.route-card-cta p {
  color: #fff;
}
.route-card-cta p {
  opacity: .82;
  margin-bottom: 22px;
}
.route-card-cta .btn {
  position: relative;
  width: 100%;
  justify-content: center;
}
@media (max-width: 1120px) {
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .premium-route-section { padding-top: 38px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: auto; border-radius: 24px; }
}

/* Geo calc hub — premium Dome Studio panelė */
.geo-calc-hub {
  padding: 0 0 2.5rem;
}

.geo-calc-studio {
  max-width: calc(var(--max) + 4rem);
  margin: 0 auto;
  padding: 0 1rem;
}

.geo-calc-panel-shell {
  position: relative;
  padding: 1.35rem 1.35rem 1.1rem;
  border-radius: 1.75rem 1.75rem 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 248, 255, 0.92) 100%);
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-bottom: none;
  box-shadow:
    0 24px 48px -28px rgba(91, 33, 182, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.geo-calc-panel-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 1.75rem 1.75rem 0 0;
  background: linear-gradient(90deg, #c4b5fd, #8b5cf6 35%, #7c3aed 65%, #ddd6fe);
  opacity: 0.95;
}

.geo-calc-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.geo-calc-head-copy {
  flex: 1 1 18rem;
  min-width: 0;
}

.geo-calc-badge {
  margin-bottom: 0.55rem;
}

.geo-calc-panel-head {
  margin-bottom: 1.1rem;
}

.geo-calc-panel-head .section-sub {
  max-width: 40rem;
  margin-top: 0.35rem;
}

.geo-calc-open {
  flex: 0 0 auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(255, 255, 255, 0.75);
  color: #5b21b6;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.geo-calc-open:hover {
  border-color: rgba(124, 58, 237, 0.45);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.geo-calc-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.95rem;
}

.geo-calc-status {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.geo-calc-status-kicker {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.geo-calc-status-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5b21b6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 16rem;
}

.geo-calc-picker {
  padding-top: 0.15rem;
}

.geo-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1 1 auto;
}

.geo-cat-tab {
  appearance: none;
  border: 1px solid rgba(139, 92, 246, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.geo-cat-tab em {
  font-style: normal;
  opacity: 0.5;
  font-size: 0.72rem;
  margin-left: 0.22rem;
  font-weight: 500;
}

.geo-cat-tab:hover {
  border-color: rgba(139, 92, 246, 0.35);
  color: var(--ink);
  background: #fff;
}

.geo-cat-tab.is-active {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(124, 58, 237, 0.65);
}

.geo-cat-tab.is-active em {
  opacity: 0.88;
}

.geo-cat-panel {
  display: none;
  animation: geoFadeIn 0.28s ease;
}

.geo-cat-panel.is-active {
  display: block;
}

@keyframes geoFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.geo-model-subgroup {
  margin-bottom: 0.75rem;
}

.geo-model-subgroup:last-child {
  margin-bottom: 0;
}

.geo-model-subgroup-label {
  display: block;
  margin: 0 0 0.45rem;
  padding-left: 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c6b9a;
}

.geo-model-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.geo-model-grid-compact .geo-model-btn {
  padding: 0.45rem 0.62rem 0.45rem 0.72rem;
}

.geo-model-grid-compact .geo-model-label {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.geo-model-grid-compact .geo-model-meta {
  font-size: 0.62rem;
  max-width: none;
}

.geo-model-btn {
  appearance: none;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.14rem;
  min-width: 0;
  max-width: 100%;
  padding: 0.5rem 0.72rem 0.5rem 0.82rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 2px rgba(30, 27, 44, 0.04);
}

.geo-model-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: transparent;
  transition: var(--transition);
}

.geo-model-label {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.geo-model-meta {
  font-size: 0.67rem;
  line-height: 1.25;
  color: var(--ink-soft);
  max-width: 12rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.geo-model-btn:hover {
  border-color: rgba(139, 92, 246, 0.35);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -12px rgba(91, 33, 182, 0.35);
}

.geo-model-btn.is-active {
  border-color: rgba(124, 58, 237, 0.45);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.14), rgba(139, 92, 246, 0.05));
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.18),
    0 10px 20px -14px rgba(91, 33, 182, 0.4);
}

.geo-model-btn.is-active::before {
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}

.geo-model-btn.is-active .geo-model-label {
  color: #5b21b6;
}

.geo-calc-viewer {
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-top: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 0;
  overflow: hidden;
  background: #f8f7fc;
  box-shadow:
    0 28px 56px -32px rgba(30, 27, 44, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.geo-calc-viewer-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(180deg, #faf9ff 0%, #f3f0ff 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.geo-calc-viewer-dots {
  display: inline-flex;
  gap: 0.28rem;
}

.geo-calc-viewer-dots i {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ddd6fe;
}

.geo-calc-viewer-dots i:nth-child(1) { background: #fca5a5; }
.geo-calc-viewer-dots i:nth-child(2) { background: #fde68a; }
.geo-calc-viewer-dots i:nth-child(3) { background: #86efac; }

.geo-calc-viewer-title {
  flex: 1;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.geo-calc-viewer-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6d28d9;
}

.geo-calc-pulse {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: geoPulse 1.8s ease infinite;
}

@keyframes geoPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.geo-calc-iframe-wrap {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #f5f3ff 0%, #ece9f8 100%);
}

.geo-calc-iframe-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 248, 255, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.geo-calc-iframe-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.geo-calc-iframe-loader span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(139, 92, 246, 0.18);
  font-size: 0.78rem;
  font-weight: 600;
  color: #5b21b6;
  box-shadow: var(--shadow-sm);
}

.geo-calc-iframe-wrap iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 560px;
  height: 560px;
  display: block;
  border: none;
  background: #fff;
}

.geo-calc-presentations {
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-top: none;
  border-radius: 0 0 1.75rem 1.75rem;
  padding: 1rem 1.15rem 1.2rem;
  background: linear-gradient(180deg, #faf9ff 0%, #f5f2ff 100%);
  box-shadow:
    0 28px 56px -32px rgba(30, 27, 44, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.geo-calc-presentations[hidden] {
  display: none !important;
}

.geo-calc-presentations-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.75rem;
}

.geo-calc-presentations-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d28d9;
}

.geo-calc-presentations-sub {
  margin: 0;
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.geo-pres-panel[hidden] {
  display: none !important;
}

.geo-pres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: 0.55rem;
}

.geo-pres-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.45rem;
  align-items: center;
  padding: 0.62rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(139, 92, 246, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.geo-pres-btn:hover {
  border-color: rgba(109, 40, 217, 0.35);
  background: #fff;
  box-shadow: 0 10px 24px -16px rgba(91, 33, 182, 0.45);
  transform: translateY(-1px);
}

.geo-pres-btn-wide {
  grid-column: 1 / -1;
  max-width: 28rem;
}

.geo-pres-label {
  grid-column: 1;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.geo-pres-meta {
  grid-column: 1;
  font-size: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

.geo-pres-ext {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7c3aed;
  opacity: 0.85;
}

.geo-pres-subgroup {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(139, 92, 246, 0.18);
}

.geo-pres-common {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(139, 92, 246, 0.18);
}

.geo-pres-subgroup-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .geo-calc-status {
    align-items: flex-start;
    width: 100%;
  }

  .geo-calc-status-value {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .geo-calc-panel-shell {
    padding: 1rem 0.9rem 0.85rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .geo-calc-viewer {
    border-radius: 0;
  }

  .geo-calc-presentations {
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 0.85rem 0.9rem 1rem;
  }

  .geo-pres-grid {
    grid-template-columns: 1fr;
  }

  .geo-calc-open {
    width: 100%;
    justify-content: center;
  }

  .geo-cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .geo-cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .geo-cat-tab {
    flex: 0 0 auto;
  }

  .geo-model-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .geo-model-grid::-webkit-scrollbar {
    display: none;
  }

  .geo-model-btn {
    flex: 0 0 auto;
  }

  .geo-calc-iframe-wrap iframe {
    min-height: 480px;
    height: 480px;
  }
}
 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-light: #fefefc;
  --surface: #ffffff;
  --ink: #1e1b2c;
  --ink-soft: #5a5572;
  --accent: #8b5cf6;
  --accent-soft: #a78bfa;
  --border-light: #ede9fe;
  --shadow-sm: 0 12px 28px -8px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.01);
  --shadow-md: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  --shadow-glow: 0 20px 40px -14px rgba(139, 92, 246, 0.15);
  --radius-card: 2rem;
  --radius-element: 1.25rem;
  --transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  --max: 1180px;
  --green: #2f6d57;
  --muted: #5a5572;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background: var(--bg-light);
  color: var(--ink);
  line-height: 1.6;
}

.sacred-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%238b5cf6' stroke-width='0.8' d='M100 10 L190 70 L190 130 L100 190 L10 130 L10 70 Z'/%3E%3Ccircle cx='100' cy='100' r='40' stroke='%238b5cf6' stroke-width='0.6' fill='none'/%3E%3Cpath d='M100 30 L130 60 L130 100 L100 130 L70 100 L70 60 Z' stroke='%238b5cf6' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 48px;
}

.wrapper {
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
}

.brand {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  background: linear-gradient(135deg, #5b3b8c, #9f7aea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.nav-group {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-tag {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7ddff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: #2d2a44;
  transition: var(--transition);
}

.nav-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.hero-section {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding: 2.5rem 1.5rem 3rem;
  background: radial-gradient(ellipse at 70% 30%, rgba(255, 248, 235, 0.7), rgba(255, 255, 255, 0.95));
  border-radius: 2.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.proof-badge {
  display: inline-flex;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7c3aed;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: #4b4464;
  max-width: 60ch;
}

.hero-lead strong {
  color: #6d28d9;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.2rem;
}

.btn-group-center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(105deg, var(--accent), var(--accent-soft));
  color: white;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px -8px rgba(139, 92, 246, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #ddd0ff;
  color: #4c3a7a;
}

.btn-outline:hover {
  background: white;
  border-color: #b49eff;
  box-shadow: var(--shadow-sm);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e2d5ff;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #4a3b6e;
}

.sacred-canvas-wrap {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sacred-canvas {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 2rem;
  background: rgba(255, 250, 245, 0.3);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.05);
}

.section {
  max-width: 1280px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 2rem;
}

.offer-box {
  background: linear-gradient(125deg, #f9f6ff, #ffffff);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #ede3ff;
}

.contact-box {
  text-align: center;
  background: linear-gradient(115deg, #fff6ee, #ffffff);
}

.offer-grid,
.promise-grid,
.client-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0eaff;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #e5d5ff;
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.small {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: #6b6285;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.metric {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 1.4rem;
  text-align: center;
  border: 1px solid #efe8ff;
}

.metric strong {
  display: block;
  font-size: 1.9rem;
  color: #7c3aed;
  margin-bottom: 0.25rem;
}

.metric span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.badge-light {
  display: inline-block;
  background: #f3eefe;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.client-card {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0eaff;
}

.client-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
  line-height: 1.15;
}

.client-card p {
  color: var(--ink-soft);
}

.client-card-accent {
  background: linear-gradient(145deg, #fffdf9, #ffffff);
  border-color: #eadaff;
}

.line-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fefcf9;
  padding: 0.95rem 1.1rem;
  border-radius: 1.2rem;
  text-decoration: none;
  border: 1px solid #ece5ff;
  transition: var(--transition);
}

.line-item:hover {
  background: #fff;
  border-color: #cbb6ff;
  transform: translateX(4px);
}

.line-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.line-item span {
  font-size: 0.84rem;
  color: #6f6890;
}

.contact-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #6a6285;
}

.footer-search-section{padding-top:8px}
.footer-search-box{max-width:980px;margin:0 auto;text-align:left}
.geo-search-footer{justify-content:flex-start;flex:0 1 auto;margin-top:14px}
@media (max-width:980px){
  .footer-search-box{text-align:left}
  .geo-search-footer{width:100%;display:flex}
}

/* GEODOMAS ekosistemos footer — full width, šviesus modernus */
footer.site-footer.site-footer--ecosystem {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: clamp(48px, 5vw, 80px) 0 clamp(24px, 3vw, 36px);
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 14% 0%, rgba(139, 92, 246, 0.1), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(47, 109, 87, 0.07), transparent 36%),
    linear-gradient(180deg, #fdfcff 0%, #f8f5ff 50%, #f6faf8 100%);
  border-top: 1px solid var(--border-light);
  font-size: 14px;
}
.site-footer.site-footer--ecosystem .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(16px, 3.5vw, 56px);
}
.site-footer.site-footer--ecosystem .footer-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
}
.site-footer.site-footer--ecosystem .footer-head h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-weight: 750;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.site-footer.site-footer--ecosystem .footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer.site-footer--ecosystem .footer-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.site-footer.site-footer--ecosystem .footer-top {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition);
}
.site-footer.site-footer--ecosystem .footer-top:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.site-footer.site-footer--ecosystem .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.site-footer.site-footer--ecosystem .footer-links a {
  min-width: 0;
  min-height: 132px;
  padding: 18px 16px;
  border-radius: var(--radius-element);
  border: 1px solid var(--border-light);
  background: linear-gradient(145deg, #ffffff, #faf7ff);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.site-footer.site-footer--ecosystem .footer-links a:hover {
  background: #fff;
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow: var(--shadow-glow);
}
.site-footer.site-footer--ecosystem .footer-links strong {
  display: block;
  margin-bottom: 8px;
  color: #5b21b6;
  font-size: clamp(9px, .58vw, 11px);
  line-height: 1.3;
  letter-spacing: .05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.site-footer.site-footer--ecosystem .footer-links span {
  display: block;
  color: var(--ink-soft);
  line-height: 1.45;
  font-size: 13px;
}
.site-footer.site-footer--ecosystem .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(22px, 3vw, 30px);
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  color: var(--ink-soft);
  font-size: 13px;
  flex-wrap: wrap;
}
.site-footer.site-footer--ecosystem .footer-bottom a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.site-footer.site-footer--ecosystem .footer-bottom a:hover {
  color: #6d28d9;
}
@media (min-width: 720px) {
  .site-footer.site-footer--ecosystem .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .site-footer.site-footer--ecosystem .footer-links {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
  }
  .site-footer.site-footer--ecosystem .footer-links a {
    min-height: 148px;
    padding: 18px 14px;
  }
  .site-footer.site-footer--ecosystem .footer-links strong {
    font-size: 10px;
    letter-spacing: .055em;
  }
}
@media (max-width: 980px) {
  .site-footer.site-footer--ecosystem .footer-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .site-footer.site-footer--ecosystem .footer-links {
    grid-template-columns: 1fr;
  }
  .site-footer.site-footer--ecosystem .footer-links a {
    min-height: auto;
  }
  .site-footer.site-footer--ecosystem .footer-bottom {
    flex-direction: column;
  }
}
.hero-section-full {
  position: relative;
  min-height: min(92vh, 980px);
  max-width: 1440px;
  margin: 2rem auto 0;
  border-radius: 2.6rem;
  overflow: hidden;
  box-shadow:
    0 28px 70px -24px rgba(29, 21, 48, 0.16),
    0 8px 28px -12px rgba(139, 92, 246, 0.10);
  border: 1px solid rgba(167, 139, 250, 0.12);
  background: #f8f5ef;
  isolation: isolate;
}

.hero-bg-image,
.hero-bg-vignette,
.hero-bg-gradient,
.hero-full-overlay,
.hero-inner {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  z-index: 1;
  background-image:
    linear-gradient(to right, rgba(248,245,239,0.92) 0%, rgba(248,245,239,0.72) 28%, rgba(248,245,239,0.18) 54%, rgba(248,245,239,0.36) 100%),
    url("/start.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
  will-change: transform;
}

.hero-bg-vignette {
  z-index: 2;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.32), rgba(255,255,255,0) 34%),
    radial-gradient(circle at 72% 50%, rgba(167,139,250,0.08), rgba(167,139,250,0) 28%),
    radial-gradient(circle at 50% 110%, rgba(231,198,126,0.08), rgba(255,255,255,0) 38%),
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(31,24,54,0.04));
  pointer-events: none;
}

.hero-bg-gradient {
  z-index: 3;
  background:
    linear-gradient(90deg,
      rgba(248,245,239,0.96) 0%,
      rgba(248,245,239,0.90) 18%,
      rgba(248,245,239,0.72) 34%,
      rgba(248,245,239,0.30) 55%,
      rgba(248,245,239,0.18) 70%,
      rgba(248,245,239,0.42) 100%);
  pointer-events: none;
}

.hero-full-overlay {
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.95;
}

.hero-inner {
  z-index: 5;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.hero-content {
  position: relative;
  max-width: 680px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: 2rem;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.36),
    rgba(255,255,255,0.18)
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    0 18px 42px -20px rgba(31, 24, 54, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.42);
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(139, 92, 246, 0.08);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #7c3aed;
  border: 1px solid rgba(139, 92, 246, 0.16);
  margin-bottom: 1.3rem;
}

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #1d1830;
  max-width: 8ch;
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
  color: #544d6e;
  max-width: 54ch;
}

.hero-lead strong {
  color: #6d3df0;
  font-weight: 800;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.25rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(167,139,250,0.18);
  color: #564a76;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

@media (max-width: 1100px) {
  .hero-section-full {
    min-height: 760px;
  }

  .hero-inner {
    align-items: flex-end;
    padding: 2rem;
  }

  .hero-bg-image {
    background-position: 66% center;
  }

  .hero-content {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .hero-section-full {
    min-height: 720px;
    border-radius: 2rem;
  }

  .hero-bg-image {
    background-position: 72% center;
    background-image:
      linear-gradient(to bottom, rgba(248,245,239,0.82) 0%, rgba(248,245,239,0.62) 36%, rgba(248,245,239,0.30) 100%),
      linear-gradient(to right, rgba(248,245,239,0.90) 0%, rgba(248,245,239,0.50) 55%, rgba(248,245,239,0.18) 100%),
      url("/start.jpg");
  }

  .hero-inner {
    padding: 1.25rem;
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
    padding: 1.15rem;
    border-radius: 1.5rem;
  }

  .hero-content h1 {
    max-width: 10ch;
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-tag {
    font-size: 0.8rem;
    min-height: 34px;
    padding: 0.45rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image {
    transform: none !important;
  }
}
.hero-section-subpage {
  position: relative;
  max-width: 1280px;
  margin: 2rem auto 0;
  min-height: 620px;
  border-radius: 2.4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f4ed, #fcfbf8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(167, 139, 250, 0.12);
}

.hero-subpage-bg,
.hero-subpage-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-subpage-bg {
  background:
    linear-gradient(to right, rgba(248,245,239,0.92) 0%, rgba(248,245,239,0.86) 38%, rgba(248,245,239,0.42) 62%, rgba(248,245,239,0.30) 100%),
    url("/start.jpg");
  background-size: cover;
  background-position: center right;
  opacity: 0.92;
}

.hero-subpage-vignette {
  background:
    radial-gradient(circle at 70% 50%, rgba(167,139,250,0.08), rgba(167,139,250,0) 26%),
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(31,24,54,0.02));
}

.hero-subpage-inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 2.25rem;
}

.hero-subpage-card {
  max-width: 690px;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(255,255,255,0.44));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 20px 48px -20px rgba(31,24,54,0.18);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.8rem;
  align-items: start;
}

.soft-card {
  background: linear-gradient(135deg, #fbf7ff, #fffdfa);
  border: 1px solid #ece2ff;
  border-radius: 1.8rem;
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: #4f4967;
  font-weight: 500;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b5cf6;
  font-weight: 800;
}

.price-hint {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(139, 92, 246, 0.06);
  color: #564d75;
  font-size: 0.95rem;
  line-height: 1.55;
}

.section-head-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.case-card h3 {
  margin-bottom: 0.75rem;
}

.case-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.budget-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #f5efff;
  border: 1px solid #e7dbff;
  color: #6a54a8;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-shell-modern {
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #3c3552;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #e4d9fb;
  border-radius: 1rem;
  background: rgba(255,255,255,0.86);
  padding: 0.95rem 1rem;
  font: inherit;
  color: #241f35;
  outline: none;
  transition: var(--transition);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #b290ff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.2rem;
}

.form-result {
  min-height: 24px;
}

@media (max-width: 980px) {
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-subpage-inner {
    padding: 1.3rem;
    align-items: end;
  }

  .hero-subpage-card {
    padding: 1.3rem;
  }

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

.client-grid-3{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.nav-group{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.nav-tag{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border-radius:999px;text-decoration:none}
.nav-tag.active{font-weight:700}
@media (min-width:1100px){.client-grid-3 .client-card h3{min-height:72px}}


.contact-links p{margin:0 0 10px}
.soft-card a,.card a{word-break:break-word}


.product-card{overflow:hidden}
.product-thumb{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:16px;margin:0 0 16px 0;background:#eef2f8}
.product-card h3{margin-top:2px}


/* V15 top product cards layout */
.case-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
}
.product-thumb{
  aspect-ratio:4/3;
  object-fit:cover;
}
@media (max-width: 980px){
  .case-grid{grid-template-columns:1fr;}
}


.products-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}
.product-price{margin:14px 0 10px;font-size:24px;font-weight:800;color:#24193f}
.product-sku{font-size:13px;line-height:1.45;color:#7a7390;word-break:break-word}
@media (max-width:980px){.products-grid-2{grid-template-columns:1fr}}


/* V13 home utilities for index */
.section-tight-top{padding-top:22px}
.section-tight{padding-top:12px;padding-bottom:20px}
.section-head-center{text-align:center;max-width:900px;margin:0 auto 28px}
.section-head-center .badge-light{display:inline-flex;margin:0 auto 14px}
.section-head-center .section-sub{max-width:760px;margin:0 auto}


/* V17 geodomas search bridge */
.topbar-inner{gap:18px}
.geo-search{display:flex;align-items:center;gap:10px;flex:0 1 420px;justify-content:flex-end}
.geo-search-input{width:100%;min-width:220px;padding:12px 16px;border-radius:999px;border:1px solid rgba(110,96,170,.18);background:#fff;color:#221a35;font:inherit;box-shadow:0 8px 18px rgba(28,24,44,.06)}
.geo-search-input::placeholder{color:#8b86a0}
.geo-search-btn{padding:12px 16px;border:none;border-radius:999px;background:linear-gradient(135deg,#7a5cff 0%,#52a8ff 100%);color:#fff;font-weight:700;cursor:pointer;box-shadow:0 10px 20px rgba(82,168,255,.18)}
.geo-search-btn:hover{transform:translateY(-1px)}
@media (max-width: 1180px){.topbar-inner{flex-wrap:wrap}.geo-search{order:3;flex:1 1 100%;justify-content:flex-start}.geo-search-input{min-width:0}}


/* V18 menu polish + LT simulator UI */
.topbar{position:sticky;top:0;z-index:120;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);border-bottom:1px solid rgba(110,96,170,.10)}
.topbar-inner{max-width:1280px;margin:0 auto;padding:16px 24px;display:flex;align-items:center;justify-content:space-between}
.brand{font-size:24px;line-height:1.05;font-weight:800;letter-spacing:-0.02em}
.brand-sub{display:block;margin-top:4px;font-size:12px;color:#7f7897}
.nav-group{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.nav-tag{padding:10px 14px;border:1px solid rgba(122,92,255,.16);background:rgba(255,255,255,.72);box-shadow:0 6px 16px rgba(31,24,49,.05)}
.nav-tag:hover{background:#fff;border-color:rgba(122,92,255,.28)}
.nav-tag.active{background:linear-gradient(135deg,#7a5cff 0%,#52a8ff 100%);color:#fff;border-color:transparent;box-shadow:0 10px 22px rgba(82,168,255,.18)}
@media (max-width:1180px){.topbar-inner{padding:14px 18px}.brand{font-size:20px}}


/* V21 mobile menu */
.menu-toggle{display:none;align-items:center;justify-content:center;width:46px;height:46px;border-radius:14px;border:1px solid rgba(122,92,255,.16);background:#fff;color:#34284f;font-size:24px;font-weight:800;box-shadow:0 8px 18px rgba(31,24,49,.06);cursor:pointer}
.menu-toggle:hover{background:#faf8ff}
@media (max-width: 980px){
  .topbar-inner{display:grid;grid-template-columns:1fr auto;align-items:start;gap:14px}
  .brand-wrap{grid-column:1/2}
  .menu-toggle{display:inline-flex;grid-column:2/3;justify-self:end}
  .nav-group{display:none;grid-column:1/-1;width:100%;padding:8px 0 2px;gap:10px}
  .nav-group.is-open{display:flex;flex-wrap:wrap}
  .nav-tag{flex:0 0 auto}
  .geo-search{grid-column:1/-1;order:3;flex:1 1 100%;justify-content:flex-start;margin-top:2px}
  .geo-search-input{min-width:0}
}
@media (max-width: 560px){
  .nav-group.is-open{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .nav-tag{display:flex;justify-content:center;padding:12px 14px}
  .geo-search{display:flex;gap:10px}
  .geo-search-input{font-size:16px;padding:14px 16px}
  .geo-search-btn{padding:14px 16px;white-space:nowrap}
}


/* V22 footer search move */
.footer-search-section{padding-top:8px}
.footer-search-box{max-width:980px;margin:0 auto;text-align:left}
.geo-search-footer{justify-content:flex-start;flex:0 1 auto;margin-top:14px}
@media (max-width:980px){
  .footer-search-box{text-align:left}
  .geo-search-footer{width:100%;display:flex}
}


/* V23 segment product cards */
.products-grid-2 .product-card p{margin-bottom:10px}
.products-grid-2 .case-meta-row{margin-bottom:6px}


/* V24 home catalog tabs */
.catalog-tabs{display:flex;gap:10px;flex-wrap:wrap;margin:20px 0 26px}
.catalog-tab{padding:12px 18px;border-radius:999px;border:1px solid rgba(122,92,255,.16);background:rgba(255,255,255,.78);color:#2d2345;font:inherit;font-weight:700;cursor:pointer;box-shadow:0 8px 18px rgba(31,24,49,.05)}
.catalog-tab:hover{background:#fff}
.catalog-tab.is-active{background:linear-gradient(135deg,#7a5cff 0%,#52a8ff 100%);color:#fff;border-color:transparent;box-shadow:0 12px 24px rgba(82,168,255,.18)}
.catalog-panel{display:none}
.catalog-panel.is-active{display:block}
@media (max-width:640px){.catalog-tabs{display:grid;grid-template-columns:1fr;}.catalog-tab{width:100%;text-align:center}}


/* V25 card actions */
.card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.btn-small{padding:10px 14px;font-size:14px;line-height:1.1}
.card-actions .btn{margin:0}
@media (max-width:640px){.card-actions{display:grid;grid-template-columns:1fr 1fr}.btn-small{text-align:center;justify-content:center}}


/* V26 segment card actions */
.products-grid-2 .card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.products-grid-2 .btn-small{padding:10px 14px;font-size:14px;line-height:1.1}
@media (max-width:640px){.products-grid-2 .card-actions{display:grid;grid-template-columns:1fr 1fr}}


/* V27 contact hub strengthen */
.form-help-note{margin:16px 0 8px;font-size:14px;line-height:1.6}

/* V31 Concept gallery */
.concept-section {
  position: relative;
}
.concept-head {
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}
.concept-head .section-sub {
  max-width: 820px;
}
.concept-head-btn {
  flex: 0 0 auto;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.concept-card {
  overflow: hidden;
  border: 1px solid rgba(18, 56, 46, 0.13);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,247,240,0.96));
  box-shadow: 0 22px 58px rgba(14, 38, 31, 0.10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.concept-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 154, 74, 0.45);
  box-shadow: 0 30px 80px rgba(14, 38, 31, 0.16);
}
.concept-card-featured {
  grid-column: span 2;
}
.concept-media {
  aspect-ratio: 16 / 9;
  background: #f4efe6;
  overflow: hidden;
}
.concept-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-body {
  padding: 22px 22px 24px;
}
.concept-kicker {
  margin-bottom: 10px;
  color: #c59a4a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.concept-body h3 {
  margin: 0 0 10px;
  color: #12382e;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}
.concept-body p {
  margin: 0;
  color: rgba(22, 34, 30, 0.74);
  font-size: 15px;
  line-height: 1.55;
}
.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.concept-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(18, 56, 46, 0.08);
  color: #12382e;
  font-size: 12px;
  font-weight: 750;
}
@media (max-width: 980px) {
  .concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .concept-card-featured {
    grid-column: span 2;
  }
}
@media (max-width: 680px) {
  .concept-head {
    align-items: start;
  }
  .concept-head-btn {
    width: 100%;
    justify-content: center;
  }
  .concept-grid {
    grid-template-columns: 1fr;
  }
  .concept-card-featured {
    grid-column: auto;
  }
  .concept-body {
    padding: 18px;
  }
}

/* V32 Concept zone polish: premium layout */
.concept-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.concept-section .badge-light {
  background: rgba(197, 154, 74, 0.14);
  color: #12382e;
  border: 1px solid rgba(197, 154, 74, 0.24);
}
.concept-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 42px);
  margin-bottom: clamp(26px, 4vw, 44px);
}
.concept-head .section-title {
  color: #12382e;
  letter-spacing: -0.045em;
}
.concept-head .section-sub {
  max-width: 760px;
  color: rgba(18, 31, 27, 0.72);
}
.concept-head-btn {
  min-width: 152px;
  box-shadow: 0 14px 34px rgba(18, 56, 46, 0.08);
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.concept-card {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 56, 46, 0.12);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(250,247,240,0.98));
  box-shadow:
    0 24px 70px rgba(14, 38, 31, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.72);
  transform: translateZ(0);
}
.concept-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(197,154,74,.72), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.concept-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 154, 74, 0.42);
  box-shadow:
    0 34px 96px rgba(14, 38, 31, 0.17),
    inset 0 1px 0 rgba(255,255,255,0.76);
}
.concept-card:hover::after {
  opacity: 1;
}
.concept-card-featured {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
}
.concept-card-featured .concept-media {
  aspect-ratio: auto;
  min-height: 420px;
}
.concept-card-featured .concept-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concept-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4efe6;
}
.concept-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 26, 21, 0.28)),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.36), transparent 34%);
  opacity: .68;
}
.concept-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
}
.concept-card:hover .concept-media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}
.concept-body {
  padding: clamp(20px, 2.4vw, 32px);
}
.concept-kicker {
  margin-bottom: 12px;
  color: #9a7430;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.concept-body h3 {
  margin: 0 0 12px;
  color: #12382e;
  font-size: clamp(21px, 2vw, 32px);
  line-height: .98;
  letter-spacing: -0.035em;
}
.concept-card-featured .concept-body h3 {
  font-size: clamp(30px, 3.1vw, 48px);
}
.concept-body p {
  margin: 0;
  color: rgba(22, 34, 30, 0.74);
  font-size: 15px;
  line-height: 1.6;
}
.concept-card-featured .concept-body p {
  font-size: 16px;
}
.concept-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.concept-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 56, 46, 0.08);
  border: 1px solid rgba(18, 56, 46, 0.07);
  color: #12382e;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1160px) {
  .concept-card {
    grid-column: span 6;
  }
  .concept-card-featured {
    grid-column: span 12;
  }
}
@media (max-width: 860px) {
  .concept-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .concept-head-btn {
    width: fit-content;
  }
  .concept-card,
  .concept-card-featured {
    grid-column: span 12;
  }
  .concept-card-featured {
    display: block;
  }
  .concept-card-featured .concept-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 560px) {
  .concept-section {
    padding-top: 42px;
    padding-bottom: 48px;
  }
  .concept-grid {
    gap: 16px;
  }
  .concept-card {
    border-radius: 24px;
  }
  .concept-media,
  .concept-card-featured .concept-media {
    aspect-ratio: 1.18 / 1;
  }
  .concept-body {
    padding: 18px;
  }
  .concept-card-featured .concept-body h3,
  .concept-body h3 {
    font-size: 25px;
  }
  .concept-head-btn {
    width: 100%;
    justify-content: center;
  }
}

/* V33 Premium corporate tone */
:root {
  --eg-green: #12382e;
  --eg-green-dark: #0b2b24;
  --eg-gold: #c59a4a;
  --eg-cream: #faf7f0;
  --eg-sand: #f4efe6;
  --eg-ink: #151a18;
}
body {
  background-color: var(--eg-cream);
}
.sacred-bg {
  opacity: .38;
}
.topbar {
  border-bottom: 1px solid rgba(18, 56, 46, .08);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
}
.brand {
  color: #6342aa;
}
/* warm premium accents without breaking current purple CTA system */
.badge-light {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.section-title {
  letter-spacing: -0.045em;
}
.product-card,
.client-card,
.card,
.offer-box,
.form-shell-modern {
  box-shadow: 0 24px 70px rgba(14, 38, 31, .08);
}
.concept-section {
  margin-top: clamp(20px, 3vw, 42px);
  border-top: 1px solid rgba(18,56,46,.06);
  border-bottom: 1px solid rgba(18,56,46,.06);
  background:
    radial-gradient(circle at 10% 0%, rgba(197,154,74,.12), transparent 28%),
    radial-gradient(circle at 100% 18%, rgba(18,56,46,.08), transparent 30%);
}

/* V34 Premium route section */
.premium-route-section {
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(34px, 5vw, 70px);
}
.route-head {
  max-width: 860px;
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: clamp(24px, 3.4vw, 42px);
}
.route-card {
  position: relative;
  min-height: 238px;
  padding: clamp(22px, 2vw, 30px);
  border-radius: 28px;
  border: 1px solid rgba(18,56,46,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,247,240,.96));
  box-shadow: 0 22px 64px rgba(14,38,31,.08);
  overflow: hidden;
}
.route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(197,154,74,.18), transparent 34%),
    linear-gradient(135deg, transparent 0 72%, rgba(18,56,46,.045));
  pointer-events: none;
}
.route-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(18,56,46,.08);
  color: var(--eg-green);
  font-weight: 950;
  font-size: 13px;
  border: 1px solid rgba(18,56,46,.10);
}
.route-card h3 {
  position: relative;
  margin: 22px 0 10px;
  color: var(--eg-green);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.035em;
}
.route-card p {
  position: relative;
  margin: 0;
  color: rgba(20,31,28,.72);
  font-size: 15px;
  line-height: 1.58;
}
.route-card-cta {
  background:
    linear-gradient(145deg, rgba(18,56,46,.98), rgba(12,38,32,.95));
  border-color: rgba(197,154,74,.34);
  color: #fff;
}
.route-card-cta::before {
  background:
    radial-gradient(circle at 100% 0%, rgba(197,154,74,.26), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255,255,255,.10), transparent 36%);
}
.route-card-cta .route-no {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}
.route-card-cta h3,
.route-card-cta p {
  color: #fff;
}
.route-card-cta p {
  opacity: .82;
  margin-bottom: 22px;
}
.route-card-cta .btn {
  position: relative;
  width: 100%;
  justify-content: center;
}
@media (max-width: 1120px) {
  .route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .premium-route-section { padding-top: 38px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: auto; border-radius: 24px; }
}

/* Geo calc hub — kategorijų panelė virš iframe */
.geo-calc-hub {
  padding-top: 0;
  padding-bottom: 0;
}

.geo-calc-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
}

.geo-calc-panel-head {
  margin-bottom: 1rem;
}

.geo-calc-panel-head .section-sub {
  max-width: 720px;
}

.geo-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.geo-cat-tab {
  appearance: none;
  border: 1px solid var(--border-light);
  background: var(--surface);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.geo-cat-tab em {
  font-style: normal;
  opacity: 0.55;
  font-size: 0.75rem;
  margin-left: 0.2rem;
}

.geo-cat-tab:hover {
  border-color: rgba(139, 92, 246, 0.35);
  color: var(--ink);
}

.geo-cat-tab.is-active {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.geo-cat-tab.is-active em {
  opacity: 0.85;
}

.geo-cat-panel {
  display: none;
}

.geo-cat-panel.is-active {
  display: block;
}

.geo-model-subgroup {
  margin-bottom: 0.65rem;
}

.geo-model-subgroup-label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.geo-model-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.geo-model-btn {
  appearance: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  max-width: 100%;
  padding: 0.38rem 0.62rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-light);
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.geo-model-label {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.geo-model-meta {
  font-size: 0.66rem;
  line-height: 1.25;
  color: var(--ink-soft);
  max-width: 11rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.geo-model-btn:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-1px);
}

.geo-model-btn.is-active {
  border-color: #7c3aed;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.25);
}

.geo-model-btn.is-active .geo-model-label {
  color: #5b21b6;
}

.geo-calc-iframe-wrap {
  width: 100%;
  background: #f3f4f6;
  border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.geo-calc-iframe-wrap iframe {
  width: 100%;
  min-height: 500px;
  height: 500px;
  display: block;
  border: none;
}

@media (max-width: 720px) {
  .geo-cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .geo-cat-tabs::-webkit-scrollbar {
    display: none;
  }

  .geo-cat-tab {
    flex: 0 0 auto;
  }

  .geo-model-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }

  .geo-model-grid::-webkit-scrollbar {
    display: none;
  }

  .geo-model-btn {
    flex: 0 0 auto;
  }
}


/* V32: generated premium graphics — 2026-08-01 */
.hero-section-full .hero-bg-image {
  background-image:
    linear-gradient(90deg, rgba(252, 249, 245, 0.96) 0%, rgba(252, 249, 245, 0.90) 36%, rgba(252, 249, 245, 0.20) 66%, rgba(252, 249, 245, 0.04) 100%),
    url("/static/images/concepts/hero-selection.webp");
  background-position: center;
  background-size: cover;
}

@media (max-width: 760px) {
  .hero-section-full .hero-bg-image {
    background-image:
      linear-gradient(180deg, rgba(252, 249, 245, 0.82) 0%, rgba(252, 249, 245, 0.96) 76%),
      url("/static/images/concepts/hero-selection.webp");
    background-position: 68% center;
  }
}
