:root {
  --bg: #F7F5F0;
  --bg-dark: #1A2A24;
  --ink: #1A2A24;
  --ink-muted: #5A6B63;
  --accent: #D4A843;
  --accent-light: #F5EDD4;
  --white: #FFFFFF;
  --border: rgba(26,42,36,0.12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(247,245,240,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  border: none; cursor: pointer;
}

.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,42,36,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light);
  color: var(--ink);
  font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: 2rem;
  border: 1px solid rgba(212,168,67,0.3);
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-form {
  display: flex; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 6px 6px 1.5rem;
  max-width: 520px; width: 100%;
  box-shadow: 0 4px 24px rgba(26,42,36,0.08);
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-form input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  min-width: 0;
}

.hero-form input::placeholder { color: var(--ink-muted); }

.hero-form button {
  background: var(--ink); color: var(--white);
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  padding: 0.75rem 1.5rem; border-radius: 100px;
  white-space: nowrap; transition: background .2s, transform .2s;
  flex-shrink: 0;
}

.hero-form button:hover { background: #2D4A3E; transform: scale(1.02); }

.hero-note {
  font-size: 0.8rem; color: var(--ink-muted); margin-top: 1rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

.hero-logos {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 5rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.6s 0.5s ease both;
}

.hero-logos-label {
  font-size: 0.75rem; color: var(--ink-muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.hero-avatars {
  display: flex; align-items: center;
}

.hero-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-dark); border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--white); font-weight: 500;
  margin-left: -8px;
}

.hero-avatar:first-child { margin-left: 0; }
.hero-avatar.a2 { background: #2D5A45; }
.hero-avatar.a3 { background: #8B6914; }
.hero-avatar.a4 { background: #4A3B6B; }

.hero-join-text {
  font-size: 0.85rem; color: var(--ink-muted);
}

.hero-join-text strong { color: var(--ink); font-weight: 500; }

/* ─── SECTION BASICS ─── */
section { padding: 6rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--ink-muted); font-weight: 300;
  max-width: 560px; line-height: 1.7;
}

/* ─── PROBLEMS ─── */
.problems { background: var(--bg-dark); color: var(--white); }
.problems .section-label { color: var(--accent); }
.problems .section-title { color: var(--white); }
.problems .section-sub { color: rgba(255,255,255,0.55); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}

.problem-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}

.problem-card:hover { border-color: rgba(212,168,67,0.4); }

.problem-before {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem;
}

.problem-text {
  font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.6;
  margin-bottom: 1.5rem; font-weight: 300;
}

.problem-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,168,67,0.15); display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.75rem;
  color: var(--accent); font-size: 0.85rem;
}

.problem-after {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.5rem;
}

.problem-solution {
  font-size: 1rem; color: var(--white); line-height: 1.6; font-weight: 400;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 4rem;
}

.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: transform .3s, box-shadow .3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,42,36,0.08);
}

.feature-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--accent-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}

.feature-icon svg { width: 22px; height: 22px; stroke: #8B6914; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.feature-title {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.9rem; color: var(--ink-muted); line-height: 1.65; font-weight: 300;
}

.feature-tag {
  display: inline-block; margin-top: 1rem;
  font-size: 0.72rem; font-weight: 500; padding: 0.25rem 0.75rem;
  border-radius: 100px; background: var(--accent-light); color: #8B6914;
}

/* ─── HOW IT WORKS ─── */
.how { background: var(--white); }

.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0; margin-top: 4rem; position: relative;
}

.steps::before {
  content: '';
  position: absolute; top: 28px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step { text-align: center; padding: 0 1.5rem; position: relative; }

.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-dark); color: var(--white);
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-desc { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.65; font-weight: 300; }

/* ─── APP PREVIEW ─── */
.preview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 4rem;
}

.preview-grid.reverse { direction: rtl; }
.preview-grid.reverse > * { direction: ltr; }

.preview-screen {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,42,36,0.08);
}

.preview-screen-bar {
  background: var(--bg-dark); padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 6px;
}

.preview-dot { width: 8px; height: 8px; border-radius: 50%; }
.preview-dot.r { background: #E05252; }
.preview-dot.y { background: var(--accent); }
.preview-dot.g { background: #52B788; }

.preview-screen-title {
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  margin-left: auto; margin-right: auto;
  font-family: var(--sans);
}

.preview-body { padding: 1.25rem; }

.preview-cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}

.preview-cal-title { font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.preview-cal-nav { display: flex; gap: 6px; }
.preview-cal-btn {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; cursor: pointer; color: var(--ink-muted);
}

.preview-cols { display: grid; grid-template-columns: 48px 1fr 1fr 1fr; gap: 4px; }
.preview-time { font-size: 0.65rem; color: var(--ink-muted); text-align: right; padding-right: 6px; line-height: 2.4; }
.preview-slot {
  border-radius: 6px; padding: 4px 6px; margin-bottom: 2px;
  font-size: 0.65rem; line-height: 1.3;
}
.preview-slot.s1 { background: #D4E8D8; color: #1A5C2A; }
.preview-slot.s2 { background: #D4E0F5; color: #1A3A7C; }
.preview-slot.s3 { background: #F5E8D4; color: #7C4A1A; }
.preview-slot.s4 { background: #E8D4F5; color: #5A1A7C; }
.preview-slot.empty { background: transparent; }
.preview-slot-name { font-weight: 500; }

.preview-client-list { }
.preview-client-row {
  display: flex; align-items: center; gap: 10px;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.preview-client-row:last-child { border-bottom: none; }
.preview-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 500; flex-shrink: 0;
}
.av1 { background: #D4E8D8; color: #1A5C2A; }
.av2 { background: #D4E0F5; color: #1A3A7C; }
.av3 { background: #F5E8D4; color: #7C4A1A; }
.av4 { background: #E8D4F5; color: #5A1A7C; }
.preview-client-info { flex: 1; min-width: 0; }
.preview-client-name { font-size: 0.8rem; font-weight: 500; color: var(--ink); }
.preview-client-meta { font-size: 0.68rem; color: var(--ink-muted); }
.preview-client-badge {
  font-size: 0.62rem; padding: 2px 7px; border-radius: 100px; flex-shrink: 0;
}
.badge-green { background: #D4E8D8; color: #1A5C2A; }
.badge-amber { background: #F5E8D4; color: #7C4A1A; }
.badge-blue  { background: #D4E0F5; color: #1A3A7C; }

.preview-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.preview-stat-card {
  background: var(--bg); border-radius: 8px; padding: 0.75rem;
}
.preview-stat-val { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--ink); }
.preview-stat-lbl { font-size: 0.65rem; color: var(--ink-muted); margin-top: 1px; }
.preview-stat-change { font-size: 0.62rem; color: #1A5C2A; margin-top: 2px; }

.preview-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.preview-bar-label { font-size: 0.65rem; color: var(--ink-muted); width: 70px; flex-shrink: 0; }
.preview-bar-bg { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.preview-bar-fill { height: 6px; border-radius: 3px; background: var(--accent); }
.preview-bar-val { font-size: 0.65rem; color: var(--ink-muted); width: 30px; text-align: right; }

.preview-text { }
.preview-text-label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 0.75rem; }
.preview-text-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.25; margin-bottom: 0.75rem; }
.preview-text-desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; }
.preview-bullets { list-style: none; }
.preview-bullets li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; color: var(--ink-muted); padding: 0.3rem 0; line-height: 1.5;
}
.preview-bullets li::before { content: '✓'; color: var(--accent); font-weight: 500; flex-shrink: 0; margin-top: 1px; }

/* ─── VIBER HIGHLIGHT ─── */
.viber-section {
  background: linear-gradient(135deg, #1A2A24 0%, #2D5A45 100%);
  color: var(--white);
}

.viber-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.viber-label { color: var(--accent); }
.viber-title { color: var(--white); }
.viber-sub { color: rgba(255,255,255,0.6); }

.viber-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }

.viber-stat {
  background: rgba(255,255,255,0.07); border-radius: var(--radius-sm);
  padding: 1.25rem; border: 1px solid rgba(255,255,255,0.1);
}

.viber-stat-val {
  font-family: var(--serif); font-size: 2rem; font-weight: 500;
  color: var(--accent); line-height: 1;
}

.viber-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }

.viber-phone {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 1.5rem;
}

.viber-msg {
  background: #7B519C; border-radius: 16px 16px 16px 4px;
  padding: 1rem 1.25rem; margin-bottom: 0.75rem;
}

.viber-msg-sender { font-size: 0.7rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
.viber-msg-text { font-size: 0.9rem; color: var(--white); line-height: 1.5; }
.viber-msg-time { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; text-align: right; }

.viber-reply {
  background: rgba(255,255,255,0.1); border-radius: 16px 16px 4px 16px;
  padding: 0.75rem 1.25rem; text-align: right; margin-left: 2rem;
  font-size: 0.9rem; color: var(--white);
}

.viber-cancel-link {
  display: block; margin-top: 0.5rem; font-size: 0.75rem;
  color: rgba(255,255,255,0.5); text-decoration: underline;
}

/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center; background: var(--bg);
}

.final-cta .section-title { margin: 0 auto 1.25rem; max-width: 620px; }
.final-cta .section-sub { margin: 0 auto 2.5rem; text-align: center; }

.final-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 480px; margin: 0 auto;
}

.final-form input {
  flex: 1; min-width: 220px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.875rem 1.5rem;
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  outline: none;
}

.final-form input:focus { border-color: var(--accent); }

.final-form button {
  background: var(--ink); color: var(--white);
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  padding: 0.875rem 1.75rem; border-radius: 100px;
  transition: all .2s;
}

.final-form button:hover { background: #2D4A3E; }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.5);
  padding: 3rem 2rem; text-align: center;
}

.footer-logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
  display: block; text-decoration: none;
}

.footer-logo span { color: var(--accent); }

footer p { font-size: 0.85rem; line-height: 1.7; max-width: 400px; margin: 0 auto; }
footer p a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer p a:hover { color: var(--accent); }

/* ─── SUCCESS STATE ─── */
.success-msg {
  display: none; text-align: center; padding: 1rem;
  background: #EAF7F0; border-radius: var(--radius-sm);
  color: #1A6B3C; font-size: 0.9rem;
}

/* ─── ERROR STATE ─── */
.error-msg {
  display: none; text-align: center; padding: 1rem;
  background: #FEF2F2; border-radius: var(--radius-sm);
  color: #B91C1C; font-size: 0.9rem; margin-top: 0.75rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── O NAMA: split hero load-in ─── */
.split-hero-left .section-label  { animation: fadeUp 0.5s ease both; }
.split-hero-left h1               { animation: fadeUp 0.65s 0.12s ease both; }
.split-hero-right .section-label  { animation: fadeUp 0.5s 0.2s ease both; }
.split-hero-right p               { animation: fadeUp 0.65s 0.32s ease both; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: var(--bg);
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── ABOUT PAGE ─── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 2rem 0;
}

.about-fact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.about-fact-card:last-child { margin-bottom: 0; }

.about-fact-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-fact-label {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 300;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.mission-icon { font-size: 1.5rem; margin-bottom: 1rem; }

.mission-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.mission-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
}

.serbia-callout {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 3rem;
  margin-top: 3rem;
  text-align: center;
  color: var(--white);
}

.serbia-callout h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--white);
}

.serbia-callout p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── CONTACT PAGE ─── */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.contact-email {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color .2s;
}

.contact-email:hover { color: var(--accent); }

.contact-note {
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.contact-waitlist-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ─── PRIVACY PAGE ─── */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.privacy-updated {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.privacy-content h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.privacy-content p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content li {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

/* ─── SPLIT HERO ─── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
}

.split-hero-left {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3.5rem 5rem 2.5rem;
}

.split-hero-left .section-label { color: var(--accent); }

.split-hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 0.75rem;
}

.split-hero-right {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 2.5rem 5rem 3.5rem;
}

.split-hero-right .section-label { color: var(--accent); }

.split-hero-right p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-top: 0.75rem;
  max-width: 400px;
}

/* ─── VALUE ROWS ─── */
.values-rows {
  background: var(--white);
  padding: 0 2rem;
}

.value-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.75rem 0;
  border-top: 1px solid var(--border);
}

.value-row:last-child { border-bottom: 1px solid var(--border); }

.value-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.15;
  line-height: 1;
  padding-top: 0.2rem;
}

.value-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── MANIFESTO STRIP ─── */
.manifesto-strip {
  background: var(--bg-dark);
  padding: 6rem 2rem;
}

.manifesto-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
  max-width: 600px;
}

.manifesto-link {
  display: inline-block;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(212,168,67,0.35);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .2s;
}

.manifesto-link:hover {
  background: rgba(212,168,67,0.08);
  border-color: var(--accent);
}

/* ─── DARK PAGE ─── */
body.page-dark { background: var(--bg-dark); }

body.page-dark nav {
  background: rgba(20,34,28,0.94);
  border-bottom-color: rgba(255,255,255,0.06);
}

body.page-dark .nav-logo { color: var(--white); }
body.page-dark .nav-links a { color: rgba(255,255,255,0.45); }
body.page-dark .nav-links a:hover,
body.page-dark .nav-links a.active { color: var(--white); }
body.page-dark .nav-cta { background: var(--accent); color: var(--bg-dark); }
body.page-dark .nav-cta:hover { opacity: 0.88; }
body.page-dark footer { border-top: 1px solid rgba(255,255,255,0.06); }

.kontakt-body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
}

.kontakt-body-inner { max-width: 580px; width: 100%; }

.kontakt-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.kontakt-email-big {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: block;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  transition: color .25s;
}

.kontakt-email-big:hover { color: var(--accent); }

.kontakt-tagline {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.kontakt-sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 3rem 0;
}

.kontakt-waitlist-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.kontakt-cta-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .2s;
}

.kontakt-cta-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

/* ─── KONTAKT: page load animations ─── */
body.page-dark .kontakt-label       { animation: fadeUp 0.5s ease both; }
body.page-dark .kontakt-email-big   { animation: fadeUp 0.7s 0.12s ease both; }
body.page-dark .kontakt-tagline     { animation: fadeUp 0.5s 0.28s ease both; }
body.page-dark .kontakt-sep         { animation: fadeUp 0.4s 0.38s ease both; }
body.page-dark .kontakt-waitlist-label { animation: fadeUp 0.5s 0.48s ease both; }
body.page-dark .kontakt-cta-ghost   { animation: fadeUp 0.5s 0.58s ease both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: flex; }
  .nav-cta { display: none; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-form { flex-direction: column; border-radius: var(--radius); padding: 1rem; }
  .hero-form button { border-radius: var(--radius-sm); }
  section { padding: 4rem 1.25rem; }
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .viber-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .step { padding: 0 0.75rem; margin-bottom: 2rem; }
  .preview-grid { grid-template-columns: 1fr; gap: 2rem; }
  .preview-grid.reverse { direction: ltr; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero-left { padding: 7rem 1.25rem 3.5rem; min-height: 55dvh; }
  .split-hero-right { padding: 3rem 1.25rem 4rem; }
  .split-hero-right p { max-width: 100%; }
  .values-rows { padding: 0 1.25rem; }
  .value-row { grid-template-columns: 48px 1fr; gap: 1.25rem; padding: 2rem 0; }
  .manifesto-strip .container { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .kontakt-body { padding: 7rem 1.25rem 4rem; align-items: flex-start; }
}
