:root {
  --bg: #F7F3EC;
  --surface: #FFFFFF;
  --text: #1B2420;
  --text-dim: #5C6B5F;
  --accent: #1F5C4A;
  --accent-text: #FFFFFF;
  --ink: #16332A;
  --cream: #F7F3EC;
  --gold: #D4A954;
  --hairline: rgba(27, 36, 32, 0.14);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --shadow-soft: 0 1px 2px rgba(22, 36, 32, 0.05), 0 16px 40px rgba(22, 36, 32, 0.1);
  --shadow-deep: 0 2px 6px rgba(0, 0, 0, 0.18), 0 36px 72px rgba(0, 0, 0, 0.32);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: 'Public Sans', sans-serif; -webkit-font-smoothing: antialiased; position: relative; }
body::before {
  content: ''; position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; }
h1, h2, h3 { font-family: 'Newsreader', serif; font-weight: 600; margin: 0; letter-spacing: -0.01em; line-height: 1.16; text-wrap: balance; }
.accent-word { color: var(--accent); }

/* Pill badge */
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; margin-bottom: 16px;
  border-radius: 9999px; border: 1px solid var(--hairline); background: var(--surface);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent);
}
.pill-badge.on-dark { background: rgba(247, 243, 236, 0.08); border-color: rgba(247, 243, 236, 0.2); color: #8FBFA8; }
.pill-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* Header */
.site-header { box-shadow: 0 1px 0 var(--hairline), 0 6px 18px rgba(27, 36, 32, 0.05); }
.header-inner { max-width: 1200px; margin-inline: auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-mark { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--accent); color: var(--accent-text); font-family: 'Newsreader', serif; font-weight: 600; font-size: 16px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text b { font-family: 'Newsreader', serif; font-weight: 600; font-size: 16px; }
.logo-text span { font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dim); }
.nav-links { display: none; }
.phone-link { font-weight: 600; text-decoration: none; font-size: 14px; white-space: nowrap; }
.mob-nav-toggle { display: none; }
.mob-nav-btn { display: none; }
.header-messengers { display: none; }

/* Buttons */
.btn {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  background: var(--accent); color: var(--accent-text); border-radius: 9999px;
  padding: 6px 6px 6px 20px; font-weight: 600; text-decoration: none; font-size: 16px; letter-spacing: 0.01em;
  border: none; cursor: pointer; font-family: 'Public Sans', sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s ease, background 0.25s ease; }
.btn:hover .btn-icon { background: rgba(255,255,255,0.3); transform: translate(2px, -2px); }
.hero-copy-panel .btn { align-self: flex-start; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); transition: left 0.65s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31, 92, 74, 0.32); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }
.btn-ghost { background: transparent; border: 1px solid var(--hairline); color: var(--text); padding-left: 22px; }
.btn-ghost .btn-icon { background: var(--accent); color: #fff; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Hero */
.hero-split { max-width: 1200px; margin-inline: auto; padding: 32px 20px 40px; display: flex; flex-direction: column; gap: 28px; }
.hero-copy-panel { padding: 0; }
.hero-copy-panel h1 { font-size: clamp(2.3rem, 7vw, 2.9rem); line-height: 1.06; margin-bottom: 20px; }
.hero-copy-panel p.lead { font-size: 17px; line-height: 1.5; color: var(--text-dim); margin: 0 0 28px; max-width: 460px; }

.hero-photo-panel { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-soft); }
.hero-photo-panel img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scaleX(-1); transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-photo-panel:hover img { transform: scaleX(-1) scale(1.06); }
.hero-photo-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,51,42,0) 45%, rgba(22,51,42,0.4) 100%); pointer-events: none; }

.hero-badge {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: rgba(247, 243, 236, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4); border-radius: var(--r-md); box-shadow: var(--shadow-soft);
}
.hero-badge-num { font-family: 'Newsreader', serif; font-weight: 600; font-size: 22px; color: var(--ink); line-height: 1; flex-shrink: 0; }
.hero-badge-cap { font-size: 12px; color: var(--text-dim); line-height: 1.3; max-width: 170px; }

.messenger-btn, .call-btn { transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease; }
.messenger-btn:hover, .call-btn:hover { transform: scale(1.08); filter: brightness(1.08); box-shadow: 0 6px 18px rgba(0,0,0,0.28); }
.messenger-btn:active, .call-btn:active { transform: scale(0.95); }

/* Dark signature stats band */
.stats-band {
  position: relative; z-index: 3; margin-top: -48px;
  background: rgba(22, 51, 42, 0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  color: var(--cream); border-top: 1px solid rgba(247, 243, 236, 0.14);
}
.stats-band-inner { max-width: 1200px; margin-inline: auto; padding: 64px 20px 32px; display: grid; grid-template-columns: 1fr; gap: 32px; text-align: center; }
.stat-big { font-family: 'Newsreader', serif; font-weight: 600; font-size: clamp(2.75rem, 11vw, 4rem); line-height: 1; }
.stat-cap { margin-top: 10px; font-size: 12.5px; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(247, 243, 236, 0.62); }

/* Sections */
.section { padding-block: 56px; }
.section-alt { background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.section-title { font-size: clamp(1.9rem, 5vw, 2.5rem); text-align: center; margin-bottom: 10px; }
.section-title-left { text-align: left; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--text-dim); font-size: 15px; margin: 0 0 32px; max-width: 480px; margin-inline: auto; }

/* Services — connected flow */
.services-card { position: relative; margin: 0 20px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-deep); }
.services-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(2px) brightness(0.55); }
.services-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(22,51,42,0.94) 0%, rgba(22,51,42,0.82) 50%, rgba(22,51,42,0.92) 100%); pointer-events: none; }
.services-wrap { position: relative; z-index: 1; max-width: 1200px; margin-inline: auto; padding: 48px 24px; display: flex; flex-direction: column; gap: 28px; }
.services-intro h2 { color: #fff; }
.services-intro .accent-word { color: #8FBFA8; }
.services-intro p { color: rgba(247,243,236,0.72); font-size: 15px; max-width: 360px; margin: 0; }
.services-flow { position: relative; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.services-flow::before { content: ''; position: absolute; left: 25px; top: 8px; bottom: 8px; width: 2px; background: rgba(247,243,236,0.18); }
.flow-item {
  position: relative; display: flex; gap: 20px; padding: 16px; border-radius: var(--r-md);
  background: rgba(247,243,236,0.08); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(247,243,236,0.14);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.flow-item:hover { background: rgba(247,243,236,0.97); border-color: transparent; transform: translateX(4px); }
.flow-node {
  position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(247,243,236,0.14); border: 2px solid rgba(247,243,236,0.32);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Newsreader', serif; font-weight: 600; font-size: 18px; color: #fff;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.flow-item:hover .flow-node { border-color: var(--accent); background: var(--accent); color: #fff; }
.flow-item h3 { font-size: 18px; margin-bottom: 5px; padding-top: 10px; color: #fff; transition: color 0.25s ease; }
.flow-item p { margin: 0; font-size: 14.5px; color: rgba(247,243,236,0.68); transition: color 0.25s ease; }
.flow-item:hover h3, .flow-item:hover p { color: var(--ink); }
.flow-svg { display: none; }

/* Video */
.video-wrap { max-width: 1200px; margin-inline: auto; padding-inline: 20px; display: flex; flex-direction: column; gap: 28px; }
.video-intro p { color: var(--text-dim); font-size: 15px; max-width: 360px; margin: 0; }
.video-box { position: relative; width: 100%; max-width: 320px; margin-inline: auto; aspect-ratio: 464/848; border-radius: var(--r-lg); background: linear-gradient(135deg, #16332A, #1F5C4A); overflow: hidden; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
.video-box video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.play-btn {
  position: relative; z-index: 1; width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-box:hover .play-btn { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0,0,0,0.3); }
.video-box.is-playing .play-btn { display: none; }

/* FAQ */
.faq-section { position: relative; background: var(--ink); overflow: hidden; }
.faq-section .bg-photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(135deg, rgba(22,51,42,0.94), rgba(22,51,42,0.85)), url('../assets/services-consultant.jpeg');
  background-size: cover; background-position: center; filter: saturate(0.7);
}
.faq-wrap { position: relative; z-index: 1; max-width: 1200px; margin-inline: auto; padding-inline: 20px; }
.faq-intro { margin-bottom: 8px; }
.faq-intro h2 { color: var(--cream); }
.faq-frame { max-width: 720px; display: flex; flex-direction: column; gap: 12px; }
.faq-frame details {
  background: rgba(247, 243, 236, 0.97); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: var(--r-md); box-shadow: var(--shadow-soft);
  padding: 2px 20px; transition: box-shadow 0.2s ease;
}
.faq-frame details[open] { box-shadow: var(--shadow-deep); }
summary { display: flex; align-items: baseline; gap: 14px; list-style: none; cursor: pointer; padding-block: 18px; position: relative; padding-right: 28px; transition: color 0.2s ease; }
summary:hover, details[open] summary { color: var(--accent); }
.faq-num { font-family: 'Newsreader', serif; font-size: 20px; color: var(--hairline); width: 26px; flex-shrink: 0; font-variant-numeric: tabular-nums; transition: color 0.2s ease; }
summary:hover .faq-num, details[open] summary .faq-num { color: var(--accent); }
.faq-q { font-family: 'Newsreader', serif; font-weight: 600; font-size: 17px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 0; top: 18px; font-size: 19px; color: var(--accent); }
details[open] summary::after { content: '\2212'; }
.faq-answer { margin: 0 0 18px 40px; color: var(--text-dim); font-size: 15px; }

/* Lead / contact module */
.lead-section { position: relative; overflow: hidden; background: var(--ink); }

.stamp-mark { position: absolute; width: 280px; height: 280px; pointer-events: none; z-index: 0; }
.lead-section .stamp-mark { color: rgba(247,243,236,0.09); bottom: -60px; left: -60px; transform: rotate(8deg); }
.site-footer .stamp-mark { color: rgba(247,243,236,0.09); top: -70px; right: -50px; transform: rotate(-14deg); }
.lead-wrap { max-width: 1200px; margin-inline: auto; padding: 56px 20px; display: flex; flex-direction: column; gap: 32px; }
.lead-intro h2 { color: var(--cream); }
.lead-intro p { color: rgba(247, 243, 236, 0.72); font-size: 15px; margin: 0 0 24px; max-width: 360px; }
.lead-messengers { display: flex; flex-wrap: wrap; gap: 10px; }
.lead-trust { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lead-trust li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(247,243,236,0.65); }
.lead-trust svg { color: #8FBFA8; flex-shrink: 0; }
.lead-msg-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 9999px; color: #fff; text-decoration: none; font-size: 13.5px; font-weight: 600; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.lead-msg-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.3); }
.lead-card { background: var(--surface); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-deep); }
.contact-form { display: grid; gap: 14px; text-align: left; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-weight: 600; font-size: 13px; }
.contact-form input, .contact-form textarea {
  border: 1px solid var(--hairline); background: var(--surface); border-radius: var(--r-sm);
  padding: 14px 16px; font-size: 15px; font-family: inherit; color: var(--text); resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-dim); opacity: 0.65; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(31, 92, 74, 0.12); }
.contact-form .btn { margin-top: 4px; }
.consent-row { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 10px; font-weight: 400 !important; }
.consent-checkbox { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; cursor: pointer; }
.consent-text { font-size: 12.5px; line-height: 1.5; color: var(--text-dim); }
.consent-text a { color: var(--accent); text-decoration: underline; }
.form-status { margin: 0; min-height: 18px; font-size: 13px; font-weight: 600; }
.form-status.success { color: #8FBFA8; }
.form-status.error { color: #E08D6D; }

/* Footer */
.site-footer { position: relative; background: var(--ink); color: rgba(247, 243, 236, 0.6); overflow: hidden; }
.footer-inner { max-width: 1200px; margin-inline: auto; padding: 0 20px 28px; display: flex; flex-direction: column; gap: 28px; }
.footer-top { display: flex; flex-direction: column; gap: 24px; padding-top: 40px; border-top: 1px solid rgba(247, 243, 236, 0.12); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand b { font-family: 'Newsreader', serif; font-weight: 600; font-size: 16px; color: var(--cream); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247, 243, 236, 0.4); margin-bottom: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links a { text-decoration: none; color: rgba(247, 243, 236, 0.75); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--cream); }
.footer-legal { font-size: 12.5px; line-height: 1.6; }
.footer-legal p { margin: 3px 0; }
.footer-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.footer-wordmark-wrap { position: relative; padding-bottom: clamp(1.5rem, 6vw, 3.5rem); }
.footer-wordmark {
  position: relative; font-family: 'Newsreader', serif; font-weight: 700; font-size: clamp(3.5rem, 15vw, 9rem);
  line-height: 1; text-align: center; letter-spacing: -0.02em; margin: 8px 0 0; user-select: none;
  background: linear-gradient(180deg, rgba(247,243,236,0.98) 0%, rgba(143,191,168,0.65) 55%, rgba(247,243,236,0.08) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-wordmark::after {
  content: attr(data-text); position: absolute; left: 0; top: 100%; width: 100%;
  background: linear-gradient(180deg, rgba(143,191,168,0.38) 0%, transparent 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: scaleY(-1); transform-origin: top;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 65%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 65%);
  filter: url(#water-ripple) blur(0.5px); pointer-events: none;
}
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 20px; border-top: 1px solid rgba(247, 243, 236, 0.12); font-size: 12px; }

.messenger-cluster { position: fixed; right: 14px; bottom: 14px; display: flex; flex-direction: column; gap: 10px; z-index: 20; }
.messenger-btn { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(0,0,0,0.18); position: relative; overflow: hidden; }
.messenger-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(255,255,255,0.3), rgba(255,255,255,0) 55%); pointer-events: none; }
.messenger-btn svg { position: relative; z-index: 1; }
.messenger-btn.mbtn-sm { width: 30px; height: 30px; border-radius: 9px; box-shadow: none; }
.mbtn-whatsapp { background: linear-gradient(155deg, #3DDC73 0%, #1DA851 100%); }
.mbtn-viber { background: linear-gradient(155deg, #9083F7 0%, #6952E0 100%); }
.mbtn-telegram { background: linear-gradient(155deg, #4EC0F2 0%, #1E96D6 100%); }

.mobile-cta-bar { display: none; }
@media (max-width: 767px) {
  body { padding-bottom: 78px; }
  .mobile-cta-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; background: var(--surface); border-top: 1px solid var(--hairline); padding: 10px 14px; gap: 10px; z-index: 25; align-items: center; }
  .mobile-cta-bar .call-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hairline); background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .mobile-cta-bar .btn { flex: 1; text-align: center; }
  .messenger-cluster { bottom: 86px; }

  /* Mobile header nav — hamburger toggle via checkbox hack, no JS */
  .phone-link { display: none; }
  .mob-nav-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: var(--r-sm); border: 1px solid var(--hairline); color: var(--text); cursor: pointer; flex-shrink: 0; }
  .header-inner { position: relative; }
  .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); border-top: 1px solid var(--hairline); box-shadow: var(--shadow-deep);
    padding: 4px 20px 14px; gap: 0;
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .mob-nav-toggle:checked ~ .nav-links { max-height: 260px; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--hairline); font-size: 15px; font-weight: 600; color: var(--text); text-decoration: none; }
  .nav-links a:last-child { border-bottom: none; }

  .hero-copy-panel .btn { width: 100%; }

  .hero-split { position: relative; overflow: hidden; min-height: 620px; display: flex; flex-direction: column; justify-content: center; padding: 40px 20px 44px; }
  .hero-photo-panel { position: absolute; inset: 0; width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; box-shadow: none; z-index: 0; }
  .hero-photo-panel img { filter: blur(3px) brightness(0.75); transform: scaleX(-1) scale(1.1); }
  .hero-photo-panel:hover img { transform: scaleX(-1) scale(1.1); }
  .hero-photo-panel::after { background: linear-gradient(180deg, rgba(22,51,42,0.82) 0%, rgba(22,51,42,0.72) 45%, rgba(22,51,42,0.95) 100%); }
  .hero-copy-panel { position: relative; z-index: 1; }
  .hero-copy-panel .pill-badge { background: rgba(247,243,236,0.12); border-color: rgba(247,243,236,0.25); color: #C9E4D6; }
  .hero-copy-panel h1 { color: #fff; }
  .hero-copy-panel .accent-word { color: #8FBFA8; }
  .hero-copy-panel p.lead { color: rgba(247,243,236,0.82); }
  .hero-badge { display: none; }
}

@media (min-width: 520px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .header-inner { padding: 16px 32px; }
  .nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 600; }
  .nav-links a { text-decoration: none; color: var(--text-dim); transition: color 0.2s ease; }
  .nav-links a:hover { color: var(--accent); }
  .header-messengers { display: flex; gap: 8px; }
  .hero-split { flex-direction: row; align-items: center; gap: 64px; padding: 64px 32px 72px; }
  .hero-copy-panel { flex: 1 1 50%; padding: 0; }
  .hero-photo-panel { flex: 1 1 50%; aspect-ratio: 4 / 5; max-height: 560px; }
  .stats-band-inner { grid-template-columns: repeat(3, 1fr); padding: 68px 32px; }
  .faq-wrap { padding-inline: 32px; }

  .services-card { margin: 0 32px; }
  .services-wrap { flex-direction: column; gap: 8px; padding: 56px 40px 64px; }
  .services-intro { max-width: 640px; }
  .services-flow { position: relative; display: flex; flex-direction: row; align-items: flex-end; gap: 16px; padding-top: 36px; }
  .services-flow::before { display: none; }
  .flow-svg { display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; overflow: visible; }
  .flow-item {
    position: relative; z-index: 1; max-width: none; flex-direction: column; align-items: center; text-align: center;
    gap: 10px; padding: 0; background: none; backdrop-filter: none; border: none;
  }
  .flow-item:hover { transform: none; background: none; }
  .flow-item:hover h3 { color: #fff; }
  .flow-item:hover p { color: rgba(247,243,236,0.65); }
  .flow-item--primary { flex: 1.3 1 0; }
  .flow-item--minor { flex: 0.85 1 0; opacity: 0.85; }
  .flow-item--minor p { display: none; }
  .flow-node { width: 44px; height: 44px; font-size: 15px; }
  .flow-item--primary .flow-node { width: 62px; height: 62px; font-size: 20px; background: var(--gold); border-color: var(--gold); color: var(--ink); }
  .flow-item:hover .flow-node { transform: scale(1.08); }
  .flow-item h3 { font-size: 14px; }
  .flow-item--primary h3 { font-size: 17px; }
  .flow-item p { font-size: 12.5px; max-width: 190px; }

  .video-wrap { flex-direction: row; align-items: center; gap: 72px; padding-inline: 32px; }
  .video-intro { flex: 0 0 300px; }
  .video-frame { flex: 1 1 0; min-width: 0; max-width: 620px; }

  .lead-wrap { flex-direction: row; align-items: center; gap: 72px; padding: 88px 32px; }
  .lead-intro { flex: 1 1 400px; }
  .lead-card { flex: 0 0 420px; }

  .footer-inner { padding: 0 32px 28px; }
  .footer-top { flex-direction: row; justify-content: space-between; padding-top: 56px; }
  .footer-brand { flex: 0 0 240px; align-items: flex-start; }
  .footer-columns { display: contents; }
}
