/* =========================================================
   INVESTCORP GEORGIA (ICG)
   ბრენდის ფერების შესაცვლელად ეხებით მხოლოდ :root ბლოკს
   ========================================================= */

:root {
  /* --- მწვანე (გათბობილი, ოდნავ ღია) --- */
  --green-950: #072D20;   /* ღრმა — ფუტერი, აქცენტები */
  --green-900: #0C3A2A;   /* მთავარი მუქი ფონი */
  --green-800: #124A36;
  --green-700: #1B5F46;
  --green-100: #E4EDE7;

  /* --- ოქრო (გათბობილი) --- */
  --gold: #C7A15A;
  --gold-light: #EBD3A0;
  --gold-dark: #9C7A34;

  /* --- თბილი ღია ფონები --- */
  --cream: #FDFAF4;
  --cream-2: #F5EFE3;
  --sand: #EFE6D6;

  /* --- ტექსტი (თბილი მუქი, არა შავი) --- */
  --ink: #26241E;
  --muted: #6E665A;
  --line: #E6DECE;
  --line-dark: rgba(199, 161, 90, .24);

  --radius: 6px;
  --radius-lg: 12px;
  --maxw: 1200px;

  --shadow-sm: 0 2px 10px rgba(38, 36, 30, .05);
  --shadow: 0 20px 55px rgba(12, 58, 42, .10);
  --shadow-lg: 0 30px 80px rgba(12, 58, 42, .14);

  --serif: "Noto Serif Georgian", "Playfair Display", Georgia, serif;
  --sans: "Noto Sans Georgian", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  margin: 0 0 .55em;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.012em;
}
h1 { font-size: clamp(2.35rem, 4.9vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.65rem); }
h3 { font-size: 1.45rem; }
p  { margin: 0 0 1.1em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 108px 0; }
.section--tight { padding: 68px 0; }
.section--cream2 { background: var(--cream-2); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--green-900); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(253, 250, 244, .74); }

.section-head { max-width: 700px; margin-bottom: 58px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); margin-bottom: 0; }
.section--dark .section-head p { color: rgba(253, 250, 244, .74); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.section--dark .eyebrow, .hero .eyebrow, .page-head .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 13px;
  opacity: .75;
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--gold); color: #2A2110; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(199,161,90,.32); }
.btn-outline { border-color: rgba(199,161,90,.55); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #2A2110; border-color: var(--gold); transform: translateY(-2px); }
.btn-dark { border-color: var(--green-900); color: var(--green-900); background: transparent; }
.btn-dark:hover { background: var(--green-900); color: var(--cream); transform: translateY(-2px); }
.btn-ghost {
  color: var(--gold-dark); padding: 0 0 4px; text-transform: none;
  letter-spacing: .01em; font-size: .97rem; border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.section--dark .btn-ghost { color: var(--gold); }
.btn-ghost:hover { gap: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7, 45, 32, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(7, 45, 32, .98); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 22px;
}
.logo { display: flex; align-items: center; gap: 13px; transition: opacity .2s; }
.logo:hover { opacity: .85; }
.logo img { height: 38px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text b {
  font-family: var(--serif); font-size: 1.38rem; color: var(--cream);
  font-weight: 600; letter-spacing: .07em;
}
.logo-text span {
  font-size: .55rem; letter-spacing: .27em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: .94rem; letter-spacing: .015em;
  color: rgba(253, 250, 244, .78); font-weight: 500;
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--gold); }
.nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  border: 1px solid var(--line-dark); background: transparent;
  border-radius: var(--radius); padding: 9px 15px;
  font-size: .77rem; font-weight: 700; letter-spacing: .06em;
  color: var(--gold); transition: .2s var(--ease);
  display: inline-flex; align-items: center; text-decoration: none;
}
.lang-toggle:hover { border-color: var(--gold); background: rgba(199,161,90,.1); }
.header-cta { display: inline-flex; padding: 12px 24px; font-size: .8rem; }

.burger { display: none; background: none; border: 0; padding: 8px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: .25s var(--ease); }
.burger span + span { margin-top: 6px; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(165deg, var(--green-800) 0%, var(--green-900) 45%, var(--green-950) 100%);
  color: var(--cream);
  padding: 118px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 26px 26px 0;
  border: 1px solid var(--line-dark);
  border-bottom: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; right: -12%; top: -22%;
  width: 780px; height: 780px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,161,90,.16) 0%, transparent 62%);
  pointer-events: none;
  animation: float 16s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; padding-bottom: 168px; }
.hero h1 { color: var(--cream); margin-bottom: .38em; }
.hero-lead { font-size: 1.13rem; color: rgba(253,250,244,.76); max-width: 58ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-mark { height: 78px; width: auto; margin-bottom: 30px; }

/* ჰერო-ს ქვედა გრაფიკა */
.hero-art {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: auto;
  color: var(--gold);
  opacity: .58;
  pointer-events: none;
  z-index: 1;
}
.hero-art svg { width: 100%; height: auto; display: block; }

/* ---------- Fade-in entrance ---------- */
.js .fade-up { opacity: 0; transform: translateY(22px); }
.js .fade-up.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 36px 30px; border-left: 1px solid var(--line); transition: .3s var(--ease); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b {
  display: block; font-family: var(--serif); font-size: 2.35rem;
  line-height: 1.1; color: var(--green-800); font-weight: 600;
}
.stat span { color: var(--muted); font-size: .88rem; letter-spacing: .02em; }
.section--dark .stat { border-color: var(--line-dark); }
.section--dark .stat b { color: var(--gold); }
.section--dark .stat span { color: rgba(253,250,244,.66); }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.metric {
  text-align: center;
  padding: 46px 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  transition: .35s var(--ease);
}
.metric:hover { transform: translateY(-4px); border-color: rgba(199,161,90,.5); background: rgba(199,161,90,.06); }
.metric-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 3.9rem);
  line-height: 1;
  color: var(--gold);
  font-weight: 600;
  display: block;
  letter-spacing: -.02em;
}
.metric-num small { font-size: .48em; margin-left: 2px; }
.metric-label {
  display: block; margin-top: 16px;
  font-size: .87rem; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(253,250,244,.7);
}
.metric-rule { width: 30px; height: 1px; background: var(--gold); margin: 20px auto 0; opacity: .6; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: .38s var(--ease);
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: rgba(199,161,90,.35); }
.card:hover::after { transform: scaleX(1); }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }
.card-num {
  font-family: var(--serif); font-size: .95rem; color: var(--gold-dark);
  letter-spacing: .06em; margin-bottom: 22px; display: block;
}
.card-icon {
  width: 58px; height: 58px; border-radius: var(--radius);
  background: var(--green-900); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 26px; flex: none;
  transition: .38s var(--ease);
}
.card:hover .card-icon { background: var(--gold); color: var(--green-900); transform: rotate(-4deg) scale(1.06); }
.card-icon svg { width: 29px; height: 29px; }
.card ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.card ul li {
  font-size: .91rem; color: var(--muted); padding-left: 20px; position: relative;
}
.card ul li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 7px; height: 7px; background: var(--gold); border-radius: 1px;
}
.card--dark { background: rgba(255,255,255,.03); border-color: var(--line-dark); }
.card--dark h3 { color: var(--cream); }
.card--dark p { color: rgba(253,250,244,.7); }
.card--dark:hover { background: rgba(199,161,90,.07); }

/* ---------- Project tiles ---------- */
.tile {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  transition: .4s var(--ease); display: flex; flex-direction: column; height: 100%;
}
.tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(199,161,90,.35); }
.tile-thumb {
  aspect-ratio: 16 / 11;
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.tile-thumb .art { position: absolute; inset: 0; }
.tile-thumb .art svg { width: 100%; height: 100%; }
.tile:hover .tile-thumb .art { transform: scale(1.05); }
.tile-thumb .art { transition: transform .6s var(--ease); }
.tile-body { padding: 30px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.tile-body h3 { margin-bottom: .35em; }
.tile-body p { color: var(--muted); font-size: .94rem; margin-bottom: 18px; }
.tile-meta {
  font-size: .8rem; color: var(--muted); margin-top: auto;
  padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; gap: 10px; align-items: center; justify-content: space-between;
}
.tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold-dark); border: 1px solid rgba(199,161,90,.4);
  background: rgba(199,161,90,.09);
  padding: 5px 13px; border-radius: 100px;
}
.status {
  font-size: .76rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--green-700); font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
}
.status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.8); }
}

/* ---------- Art blocks (SVG გრაფიკა ფოტოს ნაცვლად) ---------- */
.art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  color: var(--gold);
  display: block;
}
.art svg { width: 100%; height: auto; display: block; }
.art--light {
  background: linear-gradient(160deg, var(--sand), var(--cream-2));
  color: var(--gold-dark);
  border: 1px solid var(--line);
}
.art--frame::after {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid currentColor; opacity: .22; pointer-events: none;
  border-radius: 3px;
}
.art--tall { aspect-ratio: 3/4; }
.art--tall svg { height: 100%; object-fit: cover; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.split.reverse > *:first-child { order: 2; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 26px;
  padding: 34px 0; border-top: 1px solid var(--line); align-items: start;
  transition: .3s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold-dark);
  transition: .3s var(--ease);
}
.step:hover::before { color: var(--gold); transform: translateX(4px); }
.section--dark .step { border-color: var(--line-dark); }
.section--dark .step::before { color: var(--gold); }
.step h3 { margin-bottom: .3em; }
.step p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(140deg, var(--green-800), var(--green-950));
  color: var(--cream);
  border-radius: var(--radius-lg); padding: 74px 62px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 18px; border: 1px solid var(--line-dark); pointer-events: none; border-radius: 4px; }
.cta-band::after {
  content: ""; position: absolute; right: -80px; bottom: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,161,90,.18) 0%, transparent 65%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: .3em; color: var(--cream); }
.cta-band p { color: rgba(253,250,244,.72); margin-bottom: 0; max-width: 50ch; }

/* ---------- Page header ---------- */
.page-head {
  background: linear-gradient(165deg, var(--green-800), var(--green-950));
  color: var(--cream);
  padding: 92px 0 84px; position: relative; overflow: hidden;
}
.page-head::before { content: ""; position: absolute; inset: 22px; border: 1px solid var(--line-dark); pointer-events: none; border-radius: 4px; }
.page-head::after {
  content: ""; position: absolute; right: -6%; top: -40%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,161,90,.13) 0%, transparent 64%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { margin-bottom: .25em; color: var(--cream); }
.page-head p { color: rgba(253,250,244,.74); max-width: 64ch; margin-bottom: 0; font-size: 1.06rem; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: .82rem; color: rgba(253,250,244,.6); margin-bottom: 22px; letter-spacing: .04em; }
.crumb a:hover { color: var(--gold); }
.crumb span { margin: 0 8px; opacity: .5; }

/* ---------- Spec table (project pages) ---------- */
.specs { display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.spec-row dt { color: var(--muted); font-size: .88rem; letter-spacing: .035em; text-transform: uppercase; }
.spec-row dd { margin: 0; font-weight: 500; }
.section--dark .specs, .section--dark .spec-row { border-color: var(--line-dark); }
.section--dark .spec-row dt { color: rgba(253,250,244,.6); }

/* ---------- Prose ---------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { color: var(--muted); padding-left: 1.2em; margin-bottom: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose blockquote {
  margin: 1.9em 0; padding: 8px 0 8px 28px;
  border-left: 2px solid var(--gold); color: var(--ink);
  font-family: var(--serif); font-size: 1.2rem; line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: .25s var(--ease); }
.info-list li:first-child { padding-top: 0; }
.info-ico {
  width: 46px; height: 46px; flex: none; border-radius: var(--radius);
  background: var(--green-900); color: var(--gold); display: grid; place-items: center;
  transition: .3s var(--ease);
}
.info-list li:hover .info-ico { background: var(--gold); color: var(--green-900); }
.info-ico svg { width: 19px; height: 19px; }
.info-list b { display: block; font-size: .8rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.info-list a, .info-list span { font-weight: 500; }
.info-list a:hover { color: var(--gold-dark); }

.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem; padding: 15px 17px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); transition: .2s var(--ease); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199,161,90,.14);
}
.field textarea { min-height: 152px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq summary {
  cursor: pointer; font-weight: 600; font-family: var(--serif); font-size: 1.1rem;
  list-style: none; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  transition: color .2s;
}
.faq summary:hover { color: var(--gold-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 1.5rem; font-weight: 300; line-height: 1; transition: transform .3s var(--ease); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 15px 0 0; font-size: .96rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: var(--cream); padding: 82px 0 32px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 46px; position: relative; z-index: 1; }
.footer-about p { color: rgba(253,250,244,.62); font-size: .94rem; max-width: 36ch; margin: 22px 0 0; }
.footer-col h4 {
  font-family: var(--sans); font-size: .71rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col span { font-size: .94rem; color: rgba(253,250,244,.74); transition: .2s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  margin-top: 58px; padding-top: 26px; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(253,250,244,.5); position: relative; z-index: 1;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: var(--radius);
  border: 1px solid var(--line-dark); color: rgba(253,250,244,.7);
  display: grid; place-items: center; transition: .28s var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.footer-art {
  position: absolute; left: 0; right: 0; bottom: 0; opacity: .12;
  color: var(--gold); pointer-events: none;
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.divider { width: 44px; height: 1px; background: var(--gold); margin: 28px 0; opacity: .7; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; gap: 46px; }
  .split.reverse > *:first-child { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-band { padding: 50px 34px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .section--dark .stat { border-color: var(--line-dark); }
  .spec-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .hero { padding: 76px 0 0; }
  .hero-inner { padding-bottom: 110px; }
  .hero::before { inset: 14px 14px 0; }
  .burger { display: block; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: 84px 0 auto 0;
    background: var(--green-900); flex-direction: column; align-items: stretch;
    gap: 0; padding: 10px 26px 26px; border-bottom: 1px solid var(--line-dark);
    transform: translateY(-160%); transition: transform .34s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a { padding: 17px 0; border-bottom: 1px solid var(--line-dark); font-size: 1.02rem; }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after, .nav a.active::after { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 54px 1fr; gap: 14px; }
  .page-head { padding: 60px 0 54px; }
  .page-head::before { inset: 12px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 24px; }
  .cta-band::before { inset: 10px; }
  .hero-actions .btn { width: 100%; }
  .logo img { height: 33px; }
  .logo-text b { font-size: 1.18rem; }
  .card { padding: 32px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal, .js .fade-up { opacity: 1; transform: none; }
}


/* =========================================================
   WhatsApp მცურავი ღილაკი
   ნომრის შესაცვლელად იხილეთ WEBSITE-README.md, პუნქტი 12
   ========================================================= */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0;
  border-radius: 100px;
  background: var(--green-900);
  color: var(--gold);
  border: 1px solid rgba(199,161,90,.45);
  box-shadow: 0 12px 34px rgba(7,45,32,.28);
  overflow: hidden;
  transition: .35s var(--ease);
  text-decoration: none;
}
.wa-float:hover {
  background: var(--gold);
  color: var(--green-950);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(199,161,90,.35);
}
.wa-float__ico {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  flex: none;
}
.wa-float__ico svg { width: 27px; height: 27px; }
.wa-float__label {
  max-width: 0;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  opacity: 0;
  transition: max-width .38s var(--ease), opacity .28s var(--ease), padding .38s var(--ease);
  padding-right: 0;
}
.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  max-width: 260px;
  opacity: 1;
  padding-right: 24px;
}
/* დისკრეტული პულსი — ყურადღების მისაპყრობად */
.wa-float::after {
  content: "";
  position: absolute;
  left: 6px; top: 6px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: waPulse 3.6s ease-out infinite;
  pointer-events: none;
}
.wa-float:hover::after { animation: none; opacity: 0; }
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 820px) {
  .wa-float { right: 16px; bottom: 16px; height: 54px; }
  .wa-float__ico { width: 54px; height: 54px; }
  .wa-float__ico svg { width: 25px; height: 25px; }
  .wa-float::after { left: 5px; top: 5px; width: 44px; height: 44px; }
  /* მობილურზე წარწერა ყოველთვის დამალული — ადგილს არ იკავებს */
  .wa-float:hover .wa-float__label { max-width: 0; opacity: 0; padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; opacity: 0; }
}


/* ---------- პრეზენტაციის ბანერი ---------- */
.deck-cta {
  margin-top: 34px;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.deck-cta::after {
  content: ""; position: absolute; right: -60px; top: -90px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,161,90,.18) 0%, transparent 66%);
  pointer-events: none;
}
.deck-cta > * { position: relative; z-index: 1; }
.deck-cta h3 { color: var(--cream); margin-bottom: .4em; }
.deck-cta p { color: rgba(253,250,244,.72); margin: 0; max-width: 60ch; font-size: .96rem; }
.deck-cta .eyebrow { color: var(--gold); margin-bottom: 12px; }
@media (max-width: 700px) {
  .deck-cta { padding: 30px 24px; }
  .deck-cta .btn { width: 100%; }
}
