/* ============================================================
   Smart and Safe Sp. z o.o. — shared styles
   Theme: fresh green + white | fund distribution
   ============================================================ */

:root {
  --green-900: #06351f;
  --green-800: #0a4a2c;
  --green-700: #0e7a52;
  --green-600: #12935f;
  --green-500: #19a86c;
  --green-400: #34c187;
  --mint-500: #2fd089;
  --mint-200: #c8f3df;
  --mint-100: #e6faf1;
  --bg: #ffffff;
  --bg-soft: #f1faf5;
  --bg-soft-2: #e9f7f0;
  --ink: #0b2e22;
  --ink-soft: #355044;
  --muted: #5f7a6f;
  --line: #e2efe8;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(10, 74, 44, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 74, 44, 0.10);
  --shadow-lg: 0 30px 70px rgba(6, 53, 31, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.h-xl { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.h-md { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--mint-100);
  border: 1px solid var(--mint-200);
  padding: 7px 14px;
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(47, 208, 137, 0.25);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500) 60%, var(--mint-500));
  color: #fff;
  box-shadow: 0 12px 26px rgba(18, 147, 95, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(18, 147, 95, 0.42); }
.btn-ghost {
  background: #fff;
  color: var(--green-800);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--green-400); color: var(--green-700); }
.btn-light {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: rgba(255,255,255,0.26); transform: translateY(-3px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  padding: 12px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand b { color: var(--green-700); }
.brand small { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 14px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--green-700); background: var(--mint-100); }
.nav-links a.active { color: var(--green-700); background: var(--mint-100); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-1px); }

/* ============================================================
   INTRO / LOADER
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: radial-gradient(120% 120% at 50% 20%, #0e7a52 0%, #06351f 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.intro.done { opacity: 0; visibility: hidden; }
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 80% 80%, rgba(47,208,137,0.35), transparent 70%),
    radial-gradient(35% 30% at 15% 25%, rgba(52,193,135,0.30), transparent 70%);
  opacity: 0.9;
}
.intro-inner { position: relative; z-index: 2; text-align: center; }
.intro-mark { width: 96px; height: 96px; margin: 0 auto 18px; }
.intro-mark path, .intro-mark circle, .intro-mark line, .intro-mark polyline {
  stroke: #eafff5;
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: draw 1.5s var(--ease) forwards;
}
.intro-mark .leaf { animation-delay: 0.35s; fill: rgba(234,255,245,0.0); }
@keyframes draw { to { stroke-dashoffset: 0; } }

.intro-title {
  color: #fff;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(14px);
  animation: introUp 0.8s var(--ease) 0.7s forwards;
}
.intro-title b { color: var(--mint-200); }
.intro-sub {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  opacity: 0;
  transform: translateY(14px);
  animation: introUp 0.8s var(--ease) 0.95s forwards;
}
.intro-bar {
  width: 180px; height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
  overflow: hidden;
  margin: 4px auto 0;
  opacity: 0;
  animation: introUp 0.6s var(--ease) 1.1s forwards;
}
.intro-bar i {
  display: block; height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mint-200), #fff);
  border-radius: 999px;
  animation: load 1.5s var(--ease) 1.15s forwards;
}
@keyframes introUp { to { opacity: 1; transform: translateY(0); } }
@keyframes load { to { width: 100%; } }

/* page reveal after loader */
body.loading { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 85% 0%, var(--bg-soft-2) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 30%, var(--mint-100) 0%, transparent 55%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}
.hero-copy > * { opacity: 0; transform: translateY(20px); animation: riseIn 0.9s var(--ease) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.30s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.42s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.54s; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

.hero h1 { margin: 18px 0 18px; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--green-600), var(--mint-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .n { font-size: 1.7rem; font-weight: 800; color: var(--green-700); letter-spacing: -0.02em; }
.hero-trust .l { font-size: 0.84rem; color: var(--muted); font-weight: 600; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}
.hero-card .hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card .hc-top b { font-size: 1.02rem; }
.pill { font-size: 0.72rem; font-weight: 700; color: var(--green-700); background: var(--mint-100); padding: 5px 11px; border-radius: 999px; }
.chart { display: flex; align-items: flex-end; gap: 10px; height: 150px; padding: 8px 0; }
.chart .bar { flex: 1; background: linear-gradient(180deg, var(--mint-500), var(--green-600)); border-radius: 8px 8px 4px 4px; transform-origin: bottom; animation: grow 1.1s var(--ease) backwards; }
.chart .bar:nth-child(1){ animation-delay: 1.4s; } .chart .bar:nth-child(2){ animation-delay: 1.5s; }
.chart .bar:nth-child(3){ animation-delay: 1.6s; } .chart .bar:nth-child(4){ animation-delay: 1.7s; }
.chart .bar:nth-child(5){ animation-delay: 1.8s; } .chart .bar:nth-child(6){ animation-delay: 1.9s; }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.hc-rows { margin-top: 18px; display: grid; gap: 10px; }
.hc-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.9rem; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; }
.hc-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); display: inline-block; margin-right: 8px; }
.hc-row .val { font-weight: 700; color: var(--green-700); }

.hero-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.88rem;
  z-index: 3;
}
.hero-badge .ic { width: 34px; height: 34px; border-radius: 10px; background: var(--mint-100); color: var(--green-700); display: grid; place-items: center; }
.hero-badge.b1 { top: -22px; left: -26px; animation: floatY 5s ease-in-out infinite; }
.hero-badge.b2 { bottom: -20px; right: -18px; animation: floatY 5.5s ease-in-out infinite reverse; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; z-index: 1; }
.blob.g1 { width: 280px; height: 280px; background: var(--mint-200); top: -40px; right: -40px; animation: floatY 9s ease-in-out infinite; }
.blob.g2 { width: 200px; height: 200px; background: var(--bg-soft-2); bottom: -30px; left: -30px; animation: floatY 11s ease-in-out infinite reverse; }

/* marquee logos */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); padding: 22px 0; }
.trust-strip .container { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center; }
.trust-strip span { font-weight: 700; color: var(--ink-soft); opacity: 0.65; letter-spacing: 0.02em; }
.trust-strip .label { color: var(--muted); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 1; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 14px; }

.bg-soft { background: var(--bg-soft); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--mint-200); }
.card .ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--mint-100), var(--bg-soft-2));
  color: var(--green-700);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* about split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  color: #fff;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  min-height: 340px;
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(45% 40% at 90% 10%, rgba(47,208,137,0.4), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(52,193,135,0.35), transparent 60%);
}
.about-visual .pts { position: relative; z-index: 2; display: grid; gap: 16px; margin-top: 10px; }
.about-visual .pt { display: flex; gap: 14px; align-items: flex-start; }
.about-visual .pt .chk { width: 30px; height: 30px; flex: none; border-radius: 9px; background: rgba(255,255,255,0.15); display: grid; place-items: center; }
.about-visual .pt b { display: block; }
.about-visual .pt span { color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.about-list { display: grid; gap: 18px; margin-top: 24px; }
.about-list .li { display: flex; gap: 14px; }
.about-list .li .num { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--mint-100); color: var(--green-700); font-weight: 800; display: grid; place-items: center; }
.about-list .li b { display: block; }
.about-list .li p { color: var(--muted); font-size: 0.94rem; margin-top: 2px; }

/* process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.step .num { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; color: var(--green-500); }
.step h3 { font-size: 1.08rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }
.step .arrow { position: absolute; top: 36px; right: -16px; color: var(--mint-200); z-index: 2; }

/* partners */
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.partner:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--mint-200); }
.partner .logo { font-weight: 800; font-size: 1.15rem; color: var(--green-800); display: flex; align-items: center; gap: 10px; }
.partner .logo .sq { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--green-600), var(--mint-500)); color: #fff; display: grid; place-items: center; font-size: 0.95rem; }
.partner p { color: var(--muted); font-size: 0.93rem; flex: 1; }
.partner a.doc { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--green-700); font-size: 0.92rem; }
.partner a.doc svg { width: 16px; height: 16px; transition: transform 0.2s; }
.partner a.doc:hover svg { transform: translateX(4px); }

/* CTA band */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  padding: 56px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(47,208,137,0.4), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(52,193,135,0.3), transparent 60%);
}
.cta-band .inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-top: 10px; max-width: 520px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.contact-item .ic { width: 46px; height: 46px; flex: none; border-radius: 13px; background: var(--mint-100); color: var(--green-700); display: grid; place-items: center; }
.contact-item b { display: block; font-size: 1rem; }
.contact-item a, .contact-item span { color: var(--muted); }
.contact-item a:hover { color: var(--green-700); }
.note { font-size: 0.8rem; color: var(--muted); background: var(--mint-100); border: 1px dashed var(--mint-200); border-radius: 12px; padding: 10px 14px; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); }
.form .row { display: grid; gap: 6px; margin-bottom: 16px; }
.form label { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.form input, .form textarea {
  font-family: inherit; font-size: 0.96rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; background: var(--bg-soft);
  transition: border-color 0.2s, box-shadow 0.2s; resize: vertical;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(47,208,137,0.18); background: #fff; }
.form .btn { width: 100%; justify-content: center; }

/* ============================================================
   KIID PAGE
   ============================================================ */
.subhero {
  position: relative;
  padding: 150px 0 70px;
  background:
    radial-gradient(60% 60% at 80% 0%, var(--bg-soft-2), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
.crumbs a:hover { color: var(--green-700); }
.subhero h1 { margin-bottom: 14px; }

.kiid-intro {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--mint-100); border: 1px solid var(--mint-200);
  border-radius: var(--radius); padding: 22px 24px; margin-bottom: 40px;
}
.kiid-intro .ic { width: 46px; height: 46px; flex: none; border-radius: 13px; background: #fff; color: var(--green-700); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.kiid-intro p { color: var(--ink-soft); font-size: 0.98rem; }

.kiid-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.kiid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--mint-200); }
.kiid-card .top { display: flex; align-items: center; gap: 14px; }
.kiid-card .sq { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--green-600), var(--mint-500)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; flex: none; }
.kiid-card h3 { font-size: 1.2rem; }
.kiid-card .meta { font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.kiid-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.kiid-card .link {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: #fff; font-size: 0.94rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  padding: 12px 18px; border-radius: 999px; align-self: flex-start;
  box-shadow: 0 8px 20px rgba(18,147,95,0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.kiid-card .link:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(18,147,95,0.4); }
.kiid-card .link svg { width: 16px; height: 16px; }

.disclaimer {
  margin-top: 44px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
  font-size: 0.86rem; color: var(--muted); line-height: 1.7;
}
.disclaimer b { color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.78); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(255,255,255,0.55); }
.site-footer p { font-size: 0.92rem; margin-top: 16px; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 0.93rem; color: rgba(255,255,255,0.72); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--mint-200); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .partner-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
  .hero { padding-top: 140px; }
  .hero-visual { max-width: 460px; margin: 10px auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 96px 22px 28px; gap: 6px; box-shadow: var(--shadow-lg);
    transform: translateX(110%); transition: transform 0.4s var(--ease); z-index: 999;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .grid-3, .grid-4, .partner-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .cta-band { padding: 36px 26px; }
  .hero-trust { gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
