/* ============================================================
   AgentForge CMS — frontend theme by maytay.ro, agentforge.ro
   Navy & Gold Prestige — navy, argintiu, auriu (identic cu filipnicoleta-ro)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --bg: #E7EAEF;
  --bg-alt: #DCE1E8;
  --bg-deep: #060C18;
  --card: #FFFFFF;
  --card-hover: #FFFFFF;
  --primary: #101E36;
  --primary-dark: #060C18;
  --primary-light: #1B3054;
  --cta: #C9A227;
  --cta-light: #F0D78C;
  --cta-text: #B4901F;
  --cta-ink: #FFFFFF;
  --ink: #101826;
  --foreground: #101826;
  --muted: #4B5768;
  --border: rgba(16, 30, 54, 0.12);
  --border-strong: rgba(16, 30, 54, 0.22);
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-md: 0 20px 50px rgba(6, 12, 24, 0.14);
  --shadow-glow: 0 0 60px rgba(201, 162, 39, 0.18);
  --grad-primary: linear-gradient(120deg, #C9A227, #DCB94A);
  --success: #059669;
  --success-bg: rgba(5, 150, 105, 0.10);
  --success-border: rgba(5, 150, 105, 0.30);
  --danger: #DC2626;
  --danger-bg: rgba(220, 38, 38, 0.10);
  --danger-border: rgba(220, 38, 38, 0.30);
  --font: 'IBM Plex Sans', -apple-system, Segoe UI, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --z-nav: 100;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); padding: 10px; }
p { margin: 0 0 1em; color: var(--muted);  text-wrap: wrap; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--cta-light);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .93rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: var(--cta-ink);
  box-shadow: 0 10px 26px rgba(201,162,39,.28);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 16px 36px rgba(201,162,39,.36); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--primary); }
.btn-ghost:hover { background: var(--bg-alt); border-color: var(--cta); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 18px 0;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.is-scrolled {
  background: rgba(231, 234, 239, .92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: #fff; transition: color .3s ease; }
.site-header.is-scrolled .logo { color: var(--primary); }
.logo span { color: var(--cta-light); }
.site-header.is-scrolled .logo span { color: var(--cta-text); }

.seal-mark { width: 40px; height: 40px; color: var(--cta-light); flex-shrink: 0; }
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.site-header.is-scrolled .seal-mark { color: var(--cta); }
.seal-full { width: 132px; height: 132px; color: var(--cta-light); flex-shrink: 0; background: var(--primary-dark); border-radius: 50%; }
.seal-full text { font-family: var(--font); }

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  color: var(--cta);
  font-weight: 700;
  font-size: calc(.92rem + 3px);
  position: relative;
  padding: 6px 0;
  transition: color .3s ease;
}
.main-nav a:hover { color: #0096FF; }
.site-header.is-scrolled .main-nav a { color: var(--cta); }
.site-header.is-scrolled .main-nav a:hover { color: #0096FF; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--cta);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }
.main-nav a.is-active { font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--cta); font-weight: 700; font-size: .92rem;
  white-space: nowrap; transition: color .3s ease;
}
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.header-phone:hover { color: #0096FF; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: none;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.site-header.is-scrolled .nav-toggle { background: var(--bg-alt); }
.nav-toggle::before, .nav-toggle span, .nav-toggle::after {
  content: ''; position: absolute; left: 10px; right: 10px; height: 2px; background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.site-header.is-scrolled .nav-toggle::before,
.site-header.is-scrolled .nav-toggle span,
.site-header.is-scrolled .nav-toggle::after { background: var(--primary); }
.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 20px; }
.nav-toggle::after { top: 26px; }
.nav-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------------- Hero / Parallax ---------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 48%, var(--primary-light) 100%);
  isolation: isolate;
}
.hero-page { min-height: 46vh; }

/* Taietura diagonala navy/argintiu, cu muchie aurie */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  z-index: 0;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 44% 100%);
  background: var(--cta);
}
.hero::after {
  z-index: 1;
  clip-path: polygon(61.4% 0, 100% 0, 100% 100%, 45.4% 100%);
  background: linear-gradient(155deg, var(--bg-alt), var(--bg));
}

.hero-orb { display: none; }

.parallax-layer { position: absolute; inset: -12% -12%; z-index: 0; will-change: transform; pointer-events: none; }
.layer-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .6;
}
.layer-nodes {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='500' viewBox='0 0 800 500'%3E%3Cg stroke='rgba(201,162,39,0.35)' stroke-width='1.4' fill='none'%3E%3Cpath d='M60 380 L220 300 L360 340 L520 220 L680 260'/%3E%3Cpath d='M120 120 L260 200 L420 140 L600 200 L740 120'/%3E%3C/g%3E%3Cg fill='rgba(255,255,255,0.45)'%3E%3Ccircle cx='60' cy='380' r='5'/%3E%3Ccircle cx='220' cy='300' r='5'/%3E%3Ccircle cx='360' cy='340' r='5'/%3E%3Ccircle cx='520' cy='220' r='5'/%3E%3Ccircle cx='680' cy='260' r='5'/%3E%3Ccircle cx='120' cy='120' r='5'/%3E%3Ccircle cx='260' cy='200' r='5'/%3E%3Ccircle cx='420' cy='140' r='5'/%3E%3Ccircle cx='600' cy='200' r='5'/%3E%3Ccircle cx='740' cy='120' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -40px top 10%;
  background-size: 780px 490px;
  opacity: .8;
}

.hero-content { position: relative; z-index: 2; padding-top: 104px; width: 100%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; width: 100%; }
.hero-top { display: flex; align-items: center; gap: 40px; }
.hero-top-text { flex: 1; min-width: 0; }
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; min-height: 400px; }
.hero-building { width: 100%; max-width: 280px; height: auto; opacity: .92; }
.hero-hex-frame {
  width: 100%; max-width: 380px; aspect-ratio: 1 / 1.05;
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
  background: var(--cta);
  padding: 8px;
  filter: drop-shadow(var(--shadow-md));
}
.hero-hex {
  width: 100%; height: 100%; display: block; box-sizing: border-box;
  padding: 2px; background: #fff;
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
  object-fit: cover; object-position: top center;
}
.hero-right-badge {
  position: absolute; bottom: 4%; right: 2%;
  width: 112px; height: 112px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 2px solid var(--cta);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center; padding: 10px;
  box-shadow: var(--shadow-md);
}
.hero-right-badge svg { width: 22px; height: 22px; color: var(--cta-text); }
.hero-right-badge span { font-size: .58rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--primary); line-height: 1.4; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cta-light); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(201,162,39,.4);
  padding: 7px 16px; border-radius: 999px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cta); box-shadow: 0 0 8px rgba(201,162,39,.7); animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 { color: #fff; font-family: var(--font-heading); font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: 0; max-width: 18ch; margin-bottom: .4em; }
.error-code { font-family: var(--font-heading); font-size: clamp(4rem, 12vw, 8rem); font-weight: 700; line-height: 1; color: var(--cta); margin-bottom: .1em; }
.hero h1::after {
  content: '';
  display: block;
  width: 72px; height: 3px;
  background: linear-gradient(90deg, var(--cta), var(--cta-light));
  border-radius: 2px;
  margin-top: 22px;
}
.hero .lead { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 54ch; margin-bottom: 2em; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: -8px; margin-bottom: 8px; }
.tag-pill {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: var(--cta-light);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 68px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.16);
}
.stats-band { background: var(--primary-dark); padding: 50px 0; }
.stats-band .hero-stats { margin-top: 0; padding-top: 0; border-top: none; }
.stat .num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 700;
  color: #fff;
}
.stat .label { color: rgba(255,255,255,.72); font-size: .84rem; margin-top: 4px; }

/* ---------------- Post slider (Acasa / Blog) ---------------- */
.post-slider {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  isolation: isolate;
}
.post-slider.hero-page { min-height: 46vh; }
.post-slider__slide {
  position: absolute; inset: 0;
  background-color: var(--primary);
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease;
  display: flex; align-items: center;
}
.post-slider__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.post-slider__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(6,12,24,.85) 0%, rgba(16,30,54,.55) 100%);
}
.post-slider__content { position: relative; z-index: 2; padding-top: 104px; width: 100%; }
.post-slider__content h1 {
  color: #fff; font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.2rem); max-width: 20ch; margin-bottom: .4em;
}
.post-slider__content .lead { color: rgba(255,255,255,.82); max-width: 54ch; margin-bottom: 1.6em; }
.post-slider__dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px;
}
.post-slider__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.post-slider__dot.is-active { background: var(--cta); transform: scale(1.3); }
.post-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08);
  color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.post-slider__arrow:hover { background: rgba(255,255,255,.2); }
.post-slider__arrow.prev { left: 24px; }
.post-slider__arrow.next { right: 24px; }
@media (max-width: 768px) {
  .post-slider__content { padding-top: 96px; }
  .post-slider__arrow { display: none; }
}

.breadcrumb { color: rgba(255,255,255,.65); font-size: .86rem; margin-bottom: 16px; }
.breadcrumb b { color: #fff; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ---------------- Sections ---------------- */
section { position: relative; padding: 20px 0; }
.section-tight { padding: 76px 0; }
.section-header { max-width: 640px; margin: 0 0 56px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--ink); position: relative; padding-bottom: 18px; }
.section-header h2::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--cta), var(--cta-light));
  border-radius: 2px;
}
.section-header.center h2::after { left: 50%; transform: translateX(-50%); }
.kicker {
  display: inline-block; color: var(--cta-text); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px;
}
.section-alt { background: var(--bg-alt); position: relative; }
.section-alt::before, .section-alt::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.35), transparent);
}
.section-alt::before { top: 0; }
.section-alt::after { bottom: 0; }

/* ---------------- Icon strip (banda cu dungi aurii) ---------------- */
.icon-strip { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.icon-strip-row { display: flex; align-items: center; justify-content: space-between; padding: 30px 0; flex-wrap: wrap; }
.icon-strip-item { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 180px; padding: 10px 22px; position: relative; }
.icon-strip-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 38px;
  background: linear-gradient(180deg, transparent, var(--cta), transparent);
}
.icon-strip-icon { width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; stroke-width: 1.8; }
.icon-strip-item span { font-size: .82rem; font-weight: 700; color: var(--ink); line-height: 1.25; text-transform: uppercase; letter-spacing: .02em; }

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6,12,24,.06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cta), var(--cta-light), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,39,.4);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }

.post-card { padding: 0; overflow: hidden; min-height: 320px; }
.post-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; margin: 0; }
.post-card-title { 
  color:#FFF; position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; margin: 0;
  padding: 18px; background-color: #101826; opacity: 0.8; 
   
}

.icon-box {
  width: 72px; height: 72px; border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(201,162,39,.18), rgba(201,162,39,.05));
  border: 1px solid rgba(201,162,39,.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--cta-text);
}
.icon-box svg { width: 34px; height: 34px; stroke-width: 2.1; }

.card h3 { font-size: 1.1rem; margin-bottom: .5em;  }

.card h3:hover {color:#099FFF;  }

.card p { margin-bottom: 0; font-size: .93rem; }

.feature-list li {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px;
  font-size: .92rem; color: var(--muted);
}
.feature-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--cta-text); margin-top: 2px; }

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------------- Problem / Solution strip ---------------- */
.strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.strip-col span.tag { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; display: block; margin-bottom: 14px; }
.strip-col.negative span.tag { color: #DC2626; }
.strip-col.positive span.tag { color: #059669; }
.strip-col li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .93rem; color: var(--muted); }
.strip-col.positive li { color: var(--foreground); }
.strip-col .mark { flex-shrink: 0; margin-top: 1px; }
.strip-col.negative .mark { color: #DC2626; }
.strip-col.positive .mark { color: #059669; }

/* ---------------- Values (About) ---------------- */
.value-card { text-align: left; }

/* ---------------- Portrait + Timeline (About) ---------------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.portrait-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--primary), var(--primary-light));
  box-shadow: var(--shadow-md);
}
.portrait-frame .portrait-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.portrait-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.95); border-radius: 14px;
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
}
.portrait-badge svg { width: 28px; height: 28px; color: var(--cta-text); flex-shrink: 0; }
.portrait-badge strong { display: block; font-size: .92rem; color: var(--ink); }
.portrait-badge span { font-size: .78rem; color: var(--muted); }

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -40px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--card); border: 3px solid var(--cta);
}
.timeline-item .year { color: var(--cta-text); font-weight: 700; font-size: .85rem; letter-spacing: .06em; }
.timeline-item h4 { margin: 6px 0; font-size: 1.02rem; }

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 380px; margin: 0 auto; }
}

.share-row {
  display: flex; align-items: center; flex-wrap: wrap; background-color: #72cff4; gap: 12px;
  background: var(--bg-alt);
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border);
}
.share-label { font-size: .85rem; font-weight: 700; color: var(--muted); margin-right: 4px; }
.share-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--primary); cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.share-btn svg { width: 18px; height: 18px; }
.share-btn:hover { background: var(--cta); border-color: var(--cta); color: hwb(202 18% 2%); transform: translateY(-2px); }
.share-btn.is-copied { background: var(--cta); border-color: var(--cta); color: #fff; }

/* ---------------- Post / page body content ---------------- */
.post-body { font-size: 1.02rem; background-color: #FFF; border-radius: var(--radius);}
.post-body h2 { color: var(--ink); font-size: 1.5rem; margin: 0 auto; }
.post-body h3 { color: var(--ink); font-size: 1.2rem; margin: 1.2em 0 .5em; }
.post-body p { color: var(--color-text-muted); margin: 0; padding: 5px 10px; font-size: var(--text-sm); }
.post-body p:has(> br:only-child) { display: none; }
.post-body ul, .post-body ol { list-style: revert; margin: 0 0 1.1em; padding-left: 1.4em; }
.post-body li { margin-bottom: .4em; }
.post-body a { color: var(--cta-text); text-decoration: underline; }
.post-body blockquote { border-left: 3px solid var(--cta); margin: 1.4em 0; padding: .2em 0 .2em 1.2em; color: var(--muted); font-style: italic; }
.post-body img { border-radius: var(--radius); margin: 1.2em 0; }

.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--cta-text); transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; }

/* ---------------- CTA band ---------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--primary-dark), var(--primary-light));
  padding: 60px 54px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(201,162,39,.22); filter: blur(40px);
}
.cta-band::before {
  content: ''; position: absolute; bottom: -100px; left: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.08); filter: blur(44px);
}
.cta-band h2 { color: #fff; margin-bottom: .3em; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 0; }
.cta-band-actions { flex-shrink: 0; position: relative; z-index: 1; }
.cta-band .btn-primary { background: var(--grad-primary); color: var(--primary-dark); }
.cta-band .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.06); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid rgba(255,255,255,.08); padding: 72px 0 0; position: relative; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.5), transparent);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo span { color: var(--cta-light); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: 14px; }
.footer-col h4 { color: #fff; font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; font-size: .9rem; }
.footer-col a { color: rgba(255,255,255,.55); transition: color .2s ease; }
.footer-col a:hover { color: var(--cta-light); }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: 10px; }
.footer-col .contact-line span { color: rgba(255,255,255,.7); }
.footer-col .contact-line svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--cta); }
.footer-bottom {
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px;
}
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cta); box-shadow: 0 0 8px rgba(201,162,39,.8); display: inline-block; margin-right: 6px; animation: pulse-dot 1.8s ease-in-out infinite; }

/* ---------------- Forms (Contact) ---------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.5fr; gap: 40px; align-items: start; }
.info-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(6,12,24,.05);
  padding: 22px; display: flex; gap: 14px; margin-bottom: 16px;
}
.info-card .icon-box { margin-bottom: 0; flex-shrink: 0; width: 52px; height: 52px; }
.info-card .icon-box svg { width: 24px; height: 24px; }
.info-card h4 { color: var(--ink); margin-bottom: 4px; font-size: .96rem; }
.info-card p { margin: 0; font-size: .9rem; }

.contact-info-row {
  display: flex; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(6,12,24,.05);
  margin-bottom: 20px;
}
.contact-info-item { flex: 1 1 100%; display: flex; align-items: center; gap: 14px; padding: 20px 22px; position: relative; }
.contact-info-item:not(:last-child) { border-bottom: 1px solid var(--border); }
.contact-info-item .icon-box { width: 52px; height: 52px; margin-bottom: 0; }
.contact-info-item .icon-box svg { width: 24px; height: 24px; }
.contact-info-label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 3px; }
.contact-info-value { margin: 0; font-size: .95rem; font-weight: 600; color: var(--ink); }
.contact-info-value a:hover { color: var(--cta-text); }

.contact-map {
  border-radius: var(--radius); overflow: hidden; line-height: 0;
  border: 1px solid var(--border); box-shadow: 0 10px 26px rgba(6,12,24,.05);
}
.contact-map iframe { display: block; }

.footer-map { margin-top: 16px; border-radius: 10px; overflow: hidden; line-height: 0; }
.footer-map iframe { display: block; filter: grayscale(.3); }

.form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(6,12,24,.07);
  padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .84rem; margin-bottom: 8px; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  border: 1.5px solid var(--border-strong); background: #fff; color: var(--foreground);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cta); box-shadow: 0 0 0 4px rgba(201,162,39,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 8px; }
.form-msg {
  display: none; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 10px;
  font-size: .9rem; font-weight: 600; margin-bottom: 20px;
}
.form-msg.is-visible { display: flex; }

/* ── Cookie notice ─────────────────────────────────────── */
#cookie-notice {
  position: fixed; left: 20px; right: 20px; bottom: -140px;
  z-index: 300; max-width: 640px; margin: 0 auto;
  background: var(--primary); color: rgba(255,255,255,.88);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 20px 24px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  transition: bottom .4s ease;
}
#cookie-notice.is-visible { bottom: 20px; }
#cookie-notice p { flex: 1 1 260px; margin: 0; font-size: .88rem; color: inherit; max-width: none; }
#cookie-notice .btn { flex-shrink: 0; }
.form-msg.success { background: var(--success-bg); border: 1px solid var(--success-border); color: var(--success); }
.form-msg.error { background: var(--danger-bg); border: 1px solid var(--danger-border); color: var(--danger); }

/* ---------------- Utilities ---------------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .strip, .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .hero::before, .hero::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .nav-cta, .header-phone { display: none; }
  .nav-toggle { display: block; }
  section { padding: 70px 0; }
  .hero-content, .hero-grid { padding-top: 96px; }
  .grid-3, .grid-2, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 42px 26px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-top { flex-direction: column; text-align: center; gap: 24px; }
  .seal-full { width: 92px; height: 92px; }

  .main-nav.is-open {
    display: block; position: fixed; top: 0; right: 0;
    width: min(78vw, 340px); height: 100vh;
    background: var(--primary-dark); border-left: 1px solid rgba(255,255,255,.08);
    z-index: 200; padding: 110px 30px 40px; box-shadow: var(--shadow-md);
  }
  .main-nav.is-open ul { flex-direction: column; gap: 24px; }
  .main-nav.is-open a { font-size: 1.1rem; color: #fff; display: inline-block; padding: 8px 14px; border-radius: 8px; }
  .main-nav.is-open a::after { display: none; }
  .main-nav.is-open a.is-active { background: var(--cta); color: #fff; }
  .main-nav.is-open .nav-cta-mobile { margin-top: 32px; display: inline-flex; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
