  :root {
    --bg: #0B1220;
    --bg-deep: #080D17;
    --panel: #131F38;
    --panel-line: rgba(245,241,232,0.10);
    --ink: #F5F1E8;
    --muted: #97A1B8;
    --gold: #C9A35A;
    --gold-soft: rgba(201,163,90,0.14);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, .display {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

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

  /* ---------- NAV ---------- */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 18, 32, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--panel-line);
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .logo span { color: var(--gold); font-style: italic; font-weight: 600; }

  .nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
  }
  .nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a.active { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--bg-deep);
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, opacity 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* ---------- MOBILE NAV (hamburger) ---------- */
  .nav-toggle { display: none; }
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin-left: 12px;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }

  /* ---------- SIGNATURE: GOLD RULE + TOWER MARK ---------- */
  .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 28px 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--panel-line);
    border-bottom: 1px solid var(--panel-line);
  }
  .divider .rule {
    height: 1px;
    flex: 1;
    max-width: 360px;
    background: linear-gradient(90deg, transparent, var(--panel-line) 30%, var(--panel-line) 70%, transparent);
  }
  .divider svg { width: 28px; height: 28px; flex-shrink: 0; }
  .divider svg path, .divider svg rect, .divider svg circle { fill: var(--gold); }

  /* ---------- HERO ---------- */
  .hero {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 80px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 24px;
  }
  .eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1.08;
    margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero p.lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 36px;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--bg-deep);
  }
  .btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
  }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--panel-line);
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-portrait-wrap {
    position: relative;
  }
  .hero-portrait {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
    position: relative;
    border: 1px solid var(--panel-line);
  }
  .hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-tag {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 6px;
    padding: 16px 22px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.4);
    font-size: 0.85rem;
    max-width: 220px;
  }
  .hero-tag .loc {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
  }
  .hero-tag .sub { color: var(--muted); }

  /* ---------- ABOUT ---------- */
  .about {
    padding: 100px 0 90px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
  }
  .section-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
    display: block;
  }
  .about h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 24px;
    line-height: 1.2;
  }
  .about-photo {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--panel-line);
  }
  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-text p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: 1.02rem;
  }
  .about-text p strong { color: var(--ink); font-weight: 600; }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--panel-line);
  }
  .stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .stat .num.small { font-size: 1.4rem; }
  .stat .num span { color: var(--gold); }
  .stat .label {
    font-size: 0.85rem;
    color: var(--muted);
  }

  /* ---------- SERVICES ---------- */
  .services {
    padding: 90px 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--panel-line);
    border-bottom: 1px solid var(--panel-line);
  }
  .services-head {
    max-width: 640px;
    margin-bottom: 56px;
  }
  .services-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .services-head p {
    color: var(--muted);
    font-size: 1.05rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--panel-line);
    border: 1px solid var(--panel-line);
  }
  .service-card {
    background: var(--bg-deep);
    padding: 36px 30px;
    transition: background 0.3s;
  }
  .service-card:hover {
    background: var(--panel);
  }
  .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.3rem;
    color: var(--gold);
  }
  .service-card h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }
  .service-card p {
    color: var(--muted);
    font-size: 0.95rem;
  }

  .price-note {
    margin-top: 1px;
    padding: 28px 32px;
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .price-note p {
    font-size: 0.98rem;
    color: var(--muted);
    max-width: 540px;
  }
  .price-note strong { color: var(--gold); font-weight: 600; }

  /* ---------- CASES ---------- */
  .cases {
    padding: 90px 0;
  }
  .cases-head { margin-bottom: 48px; max-width: 640px; }
  .cases-head h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 16px; line-height: 1.2; }
  .cases-head p { color: var(--muted); font-size: 1.05rem; }

  .case-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--panel-line);
  }
  .case-item {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--panel-line);
    align-items: start;
  }
  .case-tag {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding-top: 4px;
  }
  .case-item h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 600;
  }
  .case-item .result {
    color: var(--muted);
    font-size: 0.98rem;
  }
  .case-item .result strong {
    color: var(--ink);
    font-weight: 600;
  }

  /* ---------- CONTACT ---------- */
  .contact {
    padding: 100px 0 80px;
    background: var(--panel);
    border-top: 1px solid var(--panel-line);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
  .contact h2 {
    color: var(--ink);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .contact h2 em {
    font-style: italic;
    color: var(--gold);
  }
  .contact p.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 460px;
    margin-bottom: 32px;
  }
  .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--bg);
    border: 1px solid var(--panel-line);
    border-radius: 6px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.25s;
  }
  .channel:hover {
    border-color: var(--gold);
  }
  .channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .channel-text .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 2px;
  }
  .channel-text .value {
    font-weight: 600;
    font-size: 1.02rem;
  }

  .contact-photo {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 1px solid var(--panel-line);
  }
  .contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  footer {
    background: var(--panel);
    color: var(--muted);
    text-align: center;
    padding: 28px 0;
    font-size: 0.85rem;
    border-top: 1px solid var(--panel-line);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 860px) {
    .nav-burger { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: var(--bg-deep);
      border-bottom: 1px solid var(--panel-line);
      box-shadow: 0 16px 32px rgba(0,0,0,0.35);
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 16px 24px;
      border-top: 1px solid var(--panel-line);
    }
    .nav-toggle:checked ~ .nav-links { display: flex; }
    .hero-grid, .about-grid, .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .hero { padding: 48px 0 0; }
    .hero-grid { padding-bottom: 64px; }
    .hero-portrait-wrap { order: -1; max-width: 360px; margin: 0 auto; }
    .hero-tag { left: 16px; bottom: -18px; }
    .services-grid { grid-template-columns: 1fr; }
    .case-item {
      grid-template-columns: 1fr;
      gap: 10px;
      padding: 28px 0;
    }
    .stats-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .stat .num { font-size: 1.6rem; }
    .stat .num.small { font-size: 1.1rem; }
    .price-note { flex-direction: column; align-items: flex-start; }
    .contact { padding: 64px 0 56px; }
    .contact-photo { max-width: 320px; margin: 0 auto; order: -1; }
    .section { padding: 56px 0; }
    .step { grid-template-columns: 48px 1fr; gap: 18px; }
    .step .step-num { font-size: 1.7rem; }
    .inline-cta { flex-direction: column; align-items: flex-start; }
    .final-cta { padding: 56px 0; }
  }

  @media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .btn { padding: 14px 24px; font-size: 0.9rem; }
    .container { padding: 0 18px; }
  }

  /* ---------- GENERIC SECTION ---------- */
  .section { padding: 90px 0; }
  .section.alt {
    background: var(--bg-deep);
    border-top: 1px solid var(--panel-line);
    border-bottom: 1px solid var(--panel-line);
  }
  .section-head { max-width: 720px; margin-bottom: 48px; }
  .section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .section-head p { color: var(--muted); font-size: 1.05rem; }
  .section-foot {
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--gold-soft);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    color: var(--ink);
    font-size: 0.98rem;
    max-width: 760px;
  }

  /* ---------- TRUST BADGES (HERO + ABOUT) ---------- */
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
  }
  .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
  }
  .trust-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ---------- ACCORDION (services / cases) ---------- */
  details.acc {
    margin-top: 16px;
    border: 1px solid var(--panel-line);
    border-radius: 6px;
    background: rgba(0,0,0,0.18);
    overflow: hidden;
  }
  details.acc summary {
    padding: 13px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--gold);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
  }
  details.acc summary::-webkit-details-marker { display: none; }
  details.acc summary .ico {
    font-size: 1.1rem;
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
  }
  details.acc[open] summary .ico { transform: rotate(45deg); }
  details.acc .acc-body {
    padding: 0 16px 18px;
    color: var(--muted);
    font-size: 0.93rem;
  }
  details.acc .acc-body p { margin-bottom: 12px; }
  details.acc .acc-body p:last-child { margin-bottom: 0; }
  details.acc .acc-body strong { color: var(--ink); }
  details.acc .acc-body .result-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 6px;
  }

  /* ---------- STEPS ("Как проходит работа") ---------- */
  .steps {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--panel-line);
  }
  .step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid var(--panel-line);
  }
  .step .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
  }
  .step h3 { font-size: 1.12rem; margin-bottom: 8px; font-weight: 600; }
  .step p { color: var(--muted); font-size: 0.97rem; }

  /* ---------- CASE GRID ---------- */
  .case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .case-card {
    background: var(--bg-deep);
    border: 1px solid var(--panel-line);
    border-radius: 8px;
    padding: 30px;
  }
  .case-card .case-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
  }
  .case-card h3 {
    font-size: 1.18rem;
    margin-bottom: 14px;
    line-height: 1.35;
    font-weight: 600;
  }
  .case-card .case-problem {
    color: var(--muted);
    font-size: 0.95rem;
  }
  .case-card .case-problem strong { color: var(--ink); font-weight: 600; }

  /* ---------- AUDIENCE GRID ---------- */
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
  }
  .audience-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    background: var(--bg-deep);
    border: 1px solid var(--panel-line);
    border-radius: 6px;
    font-size: 0.97rem;
  }
  .audience-item .mark {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
  }

  @media (max-width: 860px) {
    .case-grid, .audience-grid { grid-template-columns: 1fr; }
  }

  /* ---------- GUIDE (LONG-FORM SEO TEXT) ---------- */
  .guide h3 {
    font-size: 1.3rem;
    margin: 32px 0 12px;
    font-weight: 600;
  }
  .guide h3:first-of-type { margin-top: 0; }
  .guide p { color: var(--muted); font-size: 0.99rem; margin-bottom: 14px; max-width: 760px; }
  .guide p strong { color: var(--ink); }

  /* ---------- FAQ ---------- */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    border: 1px solid var(--panel-line);
    border-radius: 6px;
    background: var(--panel);
  }
  .faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .ico {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
  }
  .faq-item[open] summary .ico { transform: rotate(45deg); }
  .faq-item .faq-body {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 0.97rem;
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--panel) 0%, var(--bg-deep) 100%);
    border-top: 1px solid var(--panel-line);
    border-bottom: 1px solid var(--panel-line);
  }
  .final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta p.lead2 {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto 32px;
  }
  .final-cta .hero-actions { justify-content: center; }

  /* ---------- INLINE CTA STRIP ---------- */
  .inline-cta {
    margin-top: 48px;
    padding: 26px 30px;
    background: var(--panel);
    border: 1px solid var(--panel-line);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .inline-cta p {
    color: var(--muted);
    font-size: 0.97rem;
    max-width: 480px;
    margin: 0;
  }
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
  }

  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  /* ---------- PAGE HEADER (sub-pages) ---------- */
  .page-header {
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--panel-line);
  }
  .page-header::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-header .container { position: relative; z-index: 1; }
  .page-header h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 780px;
  }
  .page-header p.lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 0;
  }

  /* ---------- FOOTER SITE LINKS ---------- */
  footer {
    text-align: left;
    padding: 48px 0 28px;
  }
  .footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--panel-line);
    margin-bottom: 20px;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
  }
  .footer-logo span { color: var(--gold); font-style: italic; font-weight: 600; }
  .footer-logo + p {
    margin-top: 10px;
    max-width: 280px;
    font-size: 0.9rem;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
  }
  .footer-links .col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links .col-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
  }

  /* ---------- MINI SERVICE CARDS (home overview) ---------- */
  .mini-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--panel-line);
    border: 1px solid var(--panel-line);
  }
  .mini-service {
    background: var(--bg-deep);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.3s;
  }
  .mini-service:hover { background: var(--panel); }
  .mini-service .service-icon { margin-bottom: 6px; }
  .mini-service h3 { font-size: 1.05rem; }
  .mini-service p { color: var(--muted); font-size: 0.92rem; flex: 1; }
  .mini-service .mini-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .mini-service .mini-link:hover { opacity: 0.8; }

  /* ---------- FEATURED CASES (home) ---------- */
  .featured-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* ---------- FAQ TEASER (home) ---------- */
  .faq-teaser-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  /* ---------- BREADCRUMB ---------- */
  .breadcrumb {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 18px;
  }
  .breadcrumb a { color: var(--muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb span { color: var(--gold); }

  @media (max-width: 860px) {
    .mini-services { grid-template-columns: 1fr; }
    .featured-cases { grid-template-columns: 1fr; }
    .footer-grid { flex-direction: column; }
    .footer-links { gap: 24px; }
    .page-header { padding: 48px 0 40px; }
  }
