:root {
    --dp-green:        #27923f;
    --dp-green-dark:   #1f7533;
    --dp-green-light:  #edfaf1;
    --dp-black:        #0d0d0d;
    --dp-dark:         #141414;
    --dp-dark-2:       #1e1e1e;
    --dp-dark-3:       #2a2a2a;
    --dp-gray:         #6c757d;
    --dp-border:       #dee2e6;
  }

  /* ── TWEAKS PANEL ── */
  #tweaks-panel {
    display: none;
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 300px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    color: #c0c0c0;
    overflow: hidden;
  }
  #tweaks-panel.visible { display: block; }
  .twk-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #2a2a2a;
  }
  .twk-title { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.04em; }
  .twk-close {
    background: none; border: none; cursor: pointer;
    color: #5a5a5a; font-size: 18px; line-height: 1; padding: 0;
    transition: color 150ms;
  }
  .twk-close:hover { color: #fff; }
  .twk-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 14px; }
  .twk-section { display: flex; flex-direction: column; gap: 8px; }
  .twk-section-title {
    font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: #5a5a5a;
  }
  .twk-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .twk-label { font-size: 12px; color: #9a9a9a; flex: 1; }
  .twk-color {
    width: 32px; height: 22px; border-radius: 4px; border: 1px solid #3a3a3a;
    cursor: pointer; padding: 0;
  }
  .twk-select {
    background: #141414; border: 1px solid #3a3a3a; color: #c0c0c0;
    border-radius: 5px; padding: 4px 8px; font-size: 12px;
    font-family: inherit; cursor: pointer; flex: 1.2;
  }
  .twk-toggle {
    position: relative; width: 36px; height: 20px; flex-shrink: 0;
  }
  .twk-toggle input { opacity: 0; width: 0; height: 0; }
  .twk-slider-track {
    position: absolute; inset: 0; border-radius: 99px;
    background: #3a3a3a; cursor: pointer; transition: background 200ms;
  }
  .twk-slider-track::before {
    content: ''; position: absolute;
    width: 14px; height: 14px; border-radius: 50%;
    background: #fff; top: 3px; left: 3px;
    transition: transform 200ms;
  }
  .twk-toggle input:checked + .twk-slider-track { background: #27923f; }
  .twk-toggle input:checked + .twk-slider-track::before { transform: translateX(16px); }
  .twk-range { width: 100%; accent-color: var(--dp-green); }
  .twk-range-val { font-size: 11px; color: #5a5a5a; min-width: 28px; text-align: right; }

  * { box-sizing: border-box; }

  body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
  }

  /* ── Scrollbar ── */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: #f0f0f0; }
  ::-webkit-scrollbar-thumb { background: #c0c0c0; border-radius: 99px; }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--dp-dark);
    color: #9a9a9a;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--dp-dark-3);
  }
  .topbar a { color: #fff; text-decoration: none; font-weight: 600; }
  .topbar a:hover { color: var(--dp-green); }

  /* ── NAVBAR ── */
  .navbar {
    background: var(--dp-dark-2);
    padding: 0;
    border-bottom: 1px solid var(--dp-dark-3);
    position: sticky; top: 0; z-index: 1000;
  }
  .navbar-brand { padding: 14px 0; }
  .nav-link {
    color: #9a9a9a !important;
    font-size: 14px; font-weight: 500;
    padding: 18px 14px !important;
    transition: color 150ms ease;
    border-bottom: 2px solid transparent;
  }
  .nav-link:hover, .nav-link.active {
    color: #fff !important;
    border-bottom-color: var(--dp-green);
  }
  .btn-nav-cta {
    background: var(--dp-green);
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 18px !important;
    font-weight: 600;
    font-size: 14px;
    border-bottom: none !important;
    margin: 10px 0 10px 8px;
    transition: background 150ms ease;
  }
  .btn-nav-cta:hover { background: var(--dp-green-dark) !important; }

  /* ── HERO ── */
  .hero {
    background: var(--dp-dark);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39,146,63,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--dp-green);
    background: rgba(39,146,63,0.12);
    padding: 5px 12px; border-radius: 99px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }
  .hero h1 span { color: var(--dp-green); }
  .hero-sub {
    font-size: 17px; color: #8a8a8a; line-height: 1.7;
    max-width: 520px; margin-bottom: 36px;
  }
  .btn-primary-dp {
    background: var(--dp-green);
    border: none; color: #fff;
    font-size: 15px; font-weight: 600;
    padding: 13px 28px; border-radius: 6px;
    cursor: pointer; transition: background 150ms ease, box-shadow 150ms ease;
    box-shadow: 0 4px 20px rgba(39,146,63,0.3);
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary-dp:hover { background: var(--dp-green-dark); color: #fff; }
  .btn-outline-dp {
    background: transparent;
    border: 1.5px solid #3a3a3a; color: #c0c0c0;
    font-size: 15px; font-weight: 500;
    padding: 12px 24px; border-radius: 6px;
    cursor: pointer; transition: border-color 150ms, color 150ms;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-outline-dp:hover { border-color: var(--dp-green); color: var(--dp-green); }

  /* Hero stats */
  .hero-stats {
    display: flex; gap: 0;
    border-top: 1px solid #2a2a2a;
    padding-top: 32px; margin-top: 32px;
    flex-wrap: nowrap;
    width: 100%;
  }
  .hero-stat {
    flex: 1;
    padding: 0 24px;
    border-right: 1px solid #2a2a2a;
    text-align: center;
  }
  .hero-stat:first-child { padding-left: 24px; }
  .hero-stat:last-child { border-right: none; padding-right: 24px; }
  .hero-stat-val {
    font-size: 32px; font-weight: 800;
    color: #fff; line-height: 1;
  }
  .hero-stat-val span { color: var(--dp-green); }
  .hero-stat-label { font-size: 13px; color: #5a5a5a; margin-top: 4px; }

  /* Hero icon visual */
  .hero-visual {
    display: flex; align-items: center; justify-content: center;
    height: 100%;
  }
  .hero-disk-ring {
    width: 420px; height: 420px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-disk-ring::before {
    content: '';
    position: absolute; inset: 30px;
    border-radius: 50%; border: 1px solid #222;
  }
  .hero-disk-inner {
    width: 160px; height: 160px;
    background: var(--dp-dark-3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #3a3a3a;
    box-shadow: 0 0 60px rgba(39,146,63,0.18);
  }
  .hero-disk-pulse {
    position: absolute;
    width: 90px; height: 90px; border-radius: 50%;
    border: 1px solid rgba(39,146,63,0.4);
    animation: pulse 2.5s ease-out infinite;
  }
  .hero-disk-pulse:nth-child(2) { animation-delay: 0.8s; }
  .hero-disk-pulse:nth-child(3) { animation-delay: 1.6s; }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(4.8); opacity: 0; }
  }
  /* Orbit dots */
  .orbit-dot {
    position: absolute;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--dp-green);
  }

  /* ── WARNING BANNER ── */
  .warning-banner {
    background: #fffbf2;
    border-top: 1px solid #f0e0b0;
    border-bottom: 1px solid #f0e0b0;
    padding: 18px 0;
  }
  .warning-banner .inner {
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; color: #5a4a20;
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
  }
  .warning-banner .warn-icon-wrap {
    width: 38px; height: 38px; border-radius: 8px;
    background: #fef0c7; border: 1px solid #f5d87a;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .warning-banner i { color: #c08000; font-size: 20px; }

  /* ── SECTION BASE ── */
  .section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--dp-green);
    margin-bottom: 8px;
  }
  .section-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800; letter-spacing: -0.01em; color: #1a1a1a;
    margin-bottom: 12px;
  }
  .section-sub { font-size: 16px; color: #6c757d; line-height: 1.65; }

  /* ── PROCESS STEPS ── */
  .process-section { background: #f8f9fa; padding: 80px 0; }
  .step-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow 200ms ease, transform 200ms ease;
    position: relative;
  }
  .step-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); transform: translateY(-4px); }
  .step-header {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .step-number {
    font-size: 40px; font-weight: 900; color: #ebebeb;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
  }
  .step-icon {
    font-size: 36px; color: var(--dp-green);
    line-height: 1; flex-shrink: 0; margin-bottom: 16px;
  }
  .step-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
  .step-desc { font-size: 14px; color: #6c757d; line-height: 1.6; }

  /* ── SERVICES GRID ── */
  .services-section { padding: 80px 0; background: #fff; }
  .service-card {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    transition: border-color 200ms, box-shadow 200ms, transform 200ms;
    cursor: default;
  }
  .service-card:hover {
    border-color: var(--dp-green);
    box-shadow: 0 8px 24px rgba(39,146,63,0.10);
    transform: translateY(-2px);
  }
  .service-icon {
    width: 80px; height: 80px; border-radius: 16px;
    background: var(--dp-green-light); color: var(--dp-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; margin-bottom: 16px;
  }
  .service-title { font-size: 17px; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
  .service-desc { font-size: 14px; color: #6c757d; line-height: 1.6; margin-bottom: 14px; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .service-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
    border: 1.5px solid #d9d9d9; color: #6c757d;
  }
  .service-price {
    font-size: 13px; font-weight: 700; color: var(--dp-green);
    margin-top: 14px;
  }

  /* ── ADVANTAGES ── */
  .advantages-section { background: var(--dp-dark); padding: 80px 0; }
  .adv-card {
    background: var(--dp-dark-2);
    border: 1px solid var(--dp-dark-3);
    border-radius: 10px; padding: 28px 24px;
    height: 100%;
    transition: border-color 200ms;
  }
  .adv-card:hover { border-color: #3a3a3a; }
  .adv-icon {
    width: 80px; height: 80px; border-radius: 16px;
    background: rgba(39,146,63,0.12); color: var(--dp-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; margin-bottom: 16px;
  }
  .adv-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .adv-desc { font-size: 14px; color: #6c757d; line-height: 1.6; }

  /* ── BRANCHES ── */
  .branches-section { background: #fff; padding: 80px 0; }

  /* Search row */
  .branch-search-row {
    display: flex; gap: 0; width: 100%;
    border: 1.5px solid #d9d9d9; border-radius: 6px;
    overflow: hidden;
    transition: border-color 150ms, box-shadow 150ms;
    background: #fff;
  }
  .branch-search-row:focus-within {
    border-color: var(--dp-green);
    box-shadow: 0 0 0 3px rgba(39,146,63,0.12);
  }
  .branch-search-row input {
    flex: 1;
    border: none; outline: none;
    padding: 11px 14px 11px 40px; font-size: 15px;
    font-family: inherit; background: transparent;
    min-width: 0;
  }
  .branch-search-input-wrap {
    flex: 1; position: relative; display: flex; align-items: center;
  }
  .branch-search-icon {
    position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
    color: #9a9a9a; font-size: 16px; pointer-events: none;
  }
  .branch-clear-btn {
    border: none; border-left: 1.5px solid #d9d9d9; background: #fff;
    padding: 11px 20px; font-size: 14px; font-weight: 500; color: #3f3f3f;
    cursor: pointer; font-family: inherit; white-space: nowrap;
    transition: background 150ms, color 150ms;
    display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  }
  .branch-clear-btn:hover { background: #f5f5f5; color: #1a1a1a; }

  /* Search results chips */
  .branch-results {
    margin-top: 14px; min-height: 36px;
  }
  .branch-result-chips {
    display: flex; flex-wrap: wrap; gap: 6px;
  }
  .branch-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--dp-green-light);
    border: 1px solid rgba(39,146,63,0.2);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 13px; font-weight: 500; color: #1a5c2e;
  }
  .branch-chip i { font-size: 12px; color: var(--dp-green); }
  .branch-no-result {
    font-size: 14px; color: #9a9a9a; padding: 8px 0;
  }

  /* Right info card */
  .courier-card {
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 28px;
    height: 100%;
  }
  .courier-card-title {
    font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px;
  }
  .courier-card-sub {
    font-size: 14px; color: #6c757d; line-height: 1.6; margin-bottom: 20px;
  }
  .courier-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
  .courier-step { display: flex; align-items: flex-start; gap: 12px; }
  .courier-step-num {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--dp-green); color: #fff;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
  }
  .courier-step-text { font-size: 13px; color: #3f3f3f; line-height: 1.55; }
  .courier-step-text strong { color: #1a1a1a; }
  .courier-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(39,146,63,0.1);
    border: 1px solid rgba(39,146,63,0.2);
    border-radius: 99px; padding: 5px 14px;
    font-size: 12px; font-weight: 600; color: var(--dp-green);
  }

  /* ── CTA BANNER ── */
  .cta-section { background: var(--dp-green); padding: 72px 0; }
  .cta-section h2 {
    font-size: clamp(28px, 4vw, 44px); font-weight: 800;
    color: #fff; letter-spacing: -0.01em; margin-bottom: 12px;
  }
  .cta-section p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
  .btn-cta-white {
    background: #fff; color: var(--dp-green); border: none;
    font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: 6px;
    cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: box-shadow 150ms;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .btn-cta-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.2); color: var(--dp-green-dark); }
  .btn-cta-outline-white {
    background: transparent; color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.35);
    font-size: 15px; font-weight: 500; padding: 13px 24px; border-radius: 6px;
    cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: border-color 150ms, color 150ms;
  }
  .btn-cta-outline-white:hover { border-color: #fff; color: #fff; }

  /* ── FOOTER ── */
  footer {
    background: var(--dp-dark);
    border-top: 1px solid var(--dp-dark-3);
    padding: 48px 0 24px;
  }
  .footer-col-title {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: #5a5a5a; margin-bottom: 16px;
  }
  .footer-link {
    display: block; color: #6c757d; font-size: 14px;
    text-decoration: none; margin-bottom: 10px;
    transition: color 150ms;
  }
  .footer-link:hover { color: #fff; }
  .footer-bottom {
    border-top: 1px solid var(--dp-dark-3);
    padding-top: 20px; margin-top: 40px;
    font-size: 13px; color: #3f3f3f;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
  }

  /* ── PHONE BADGE ── */
  .phone-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(39,146,63,0.12);
    border: 1px solid rgba(39,146,63,0.25);
    border-radius: 99px; padding: 6px 16px;
    color: var(--dp-green); font-size: 14px; font-weight: 600;
    text-decoration: none; transition: background 150ms;
  }
  .phone-badge:hover { background: rgba(39,146,63,0.2); color: var(--dp-green); }

  /* ── TRUST STRIP ── */
  .trust-strip { background: #f8f9fa; border-bottom: 1px solid #e8e8e8; padding: 28px 0; }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 24px;
    align-items: center;
  }
  @media (max-width: 991px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 575px) {
    .trust-grid { grid-template-columns: 1fr; }
  }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: #3f3f3f; }
  .trust-item i { color: var(--dp-green); font-size: 30px; flex-shrink: 0; }

  /* ── SVG LOGO ── */
  .logo-light .l0 { fill: #fff; }
  .logo-light .l1 { fill: #27923f; }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .reveal.reveal-left  { transform: translateX(-28px); }
  .reveal.reveal-right { transform: translateX(28px); }
  .reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
  }
  .reveal-delay-1 { transition-delay: 80ms; }
  .reveal-delay-2 { transition-delay: 160ms; }
  .reveal-delay-3 { transition-delay: 240ms; }
  .reveal-delay-4 { transition-delay: 320ms; }

  /* Section heading reveal */
  .section-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 450ms ease, transform 450ms ease;
  }
  .section-reveal.visible { opacity: 1; transform: translateY(0); }

  /* Responsive */
  @media (max-width: 768px) {
    .hero { padding: 48px 0 40px; }
    .hero-visual { display: none; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 40%; border-right: none; text-align: left; padding: 0; }
    .process-section, .services-section, .advantages-section, .branches-section { padding: 56px 0; }
  }

  /* ── REPLACED INLINE STYLES ── */
  .custom-toggler { color: #9a9a9a; }
  .custom-toggler-icon { font-size: 24px; }
  .orbit-dot-top { top: 16px; left: 50%; transform: translateX(-50%); }
  .orbit-dot-bottom { bottom: 16px; left: 50%; transform: translateX(-50%); background: #3f3f3f; }
  .orbit-dot-right { top: 50%; right: 16px; transform: translateY(-50%); background: #3f3f3f; }
  .process-section-sub { max-width: 520px; margin: 0 auto; }
  .advantages-section .section-title { color: #fff; }
  .branch-no-result-empty { color: #9a9a9a; font-size: 13px; margin-top: 10px; }
  .cta-feature-icon { color: rgba(255,255,255,0.6); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
  .cta-feature-text { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.6; }
  .cta-form-title { font-size: 16px; color: #1a1a1a; }
  .cta-form-control { font-size: 14px; border-radius: 6px; border: 1.5px solid #d9d9d9; }
  .cta-form-textarea { resize: vertical; }
  .cta-form-success { background: #edfaf1; color: #1a5c2e; font-size: 14px; }
  .footer-about-text { font-size: 14px; color: #5a5a5a; line-height: 1.7; margin: 0; }
  .footer-schedule-text { font-size: 13px; color: #5a5a5a; margin-top: 8px; line-height: 1.6; }
  .footer-policy-link { color: #3f3f3f; }

 .dp-form { --bs-primary: #27923f; --bs-primary-rgb: 39,146,63; }
  .dp-form .form-control:focus,
  .dp-form .form-select:focus,
  .dp-form .form-check-input:focus { border-color: #27923f; box-shadow: 0 0 0 .2rem rgba(39,146,63,.15); }
  .dp-form .form-check-input:checked { background-color: #27923f; border-color: #27923f; }
  .dp-form .btn-primary { background-color: #27923f; border-color: #27923f; }
  .dp-form .btn-primary:hover { background-color: #1f7533; border-color: #1f7533; }
  @media (min-width: 768px) {
    .dp-form .col-name { flex: 0 0 auto; width: 30%; }
    .dp-form .col-phone { flex: 0 0 auto; width: 30%; }
    .dp-form .col-email { flex: 0 0 auto; width: 40%; }
  }