*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --forest: #2E7D5E;
    --forest-hover: #245F49;
    --forest-deeper: #1A4A37;
    --sage: #4EA882;
    --sage-glow: rgba(78,168,130,.10);
    --gold: #8BAF8E;
    --gold-glow: rgba(139,175,142,.10);
    --bg-light: #F7FAF8;
    --bg-white: #F2F7F4;
    --border: #DDE8E2;
    --text: #1A2E24;
    --text-muted: #4A6358;
    --text-light: #7A9A88;
    --whatsapp: #25D366;
    --radius: 14px;
    --radius-lg: 20px;
    /* Accent sections (nav, wa-feature, info-bar, footer) */
    --nav-bg: rgba(255,255,255,.92);
    --nav-bg-scrolled: rgba(255,255,255,.97);
    --nav-text: var(--text);
    --nav-text-muted: var(--text-muted);
    --nav-border: rgba(0,0,0,.06);
    --accent-bg: #EFF5F2;
    --accent-bg-gradient: linear-gradient(135deg, #EFF5F2 0%, #E5EDE9 100%);
    --accent-text: var(--text);
    --accent-text-muted: var(--text-muted);
    --accent-pill-bg: rgba(46,125,94,.06);
    --accent-pill-border: rgba(46,125,94,.1);
    --footer-bg: #E8F0EC;
    --footer-text: var(--text-muted);
    --footer-text-muted: var(--text-light);
  }
  /* ── Dark Theme ── */
  [data-theme="dark"] {
    --bg-light: #0f1117;
    --bg-white: #1a1d27;
    --border: #2d3344;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --text-light: #6b7280;
    --forest: #4EA882;
    --forest-hover: #3d9070;
    --forest-deeper: #0a0d10;
    --sage: #6DC49A;
    --sage-glow: rgba(109,196,154,.12);
    --gold: #6DC49A;
    --gold-glow: rgba(109,196,154,.10);
    --nav-bg: rgba(15,17,23,.97);
    --nav-bg-scrolled: rgba(15,17,23,.99);
    --nav-text: #fff;
    --nav-text-muted: rgba(255,255,255,.7);
    --nav-border: rgba(255,255,255,.08);
    --accent-bg: var(--forest-deeper);
    --accent-bg-gradient: linear-gradient(135deg, var(--forest-deeper) 0%, #0D1A12 100%);
    --accent-text: #fff;
    --accent-text-muted: rgba(255,255,255,.65);
    --accent-pill-bg: rgba(255,255,255,.07);
    --accent-pill-border: rgba(255,255,255,.1);
    --footer-bg: var(--forest-deeper);
    --footer-text: rgba(255,255,255,.4);
    --footer-text-muted: rgba(255,255,255,.35);
  }
  /* dark nav now handled by --nav-bg vars in [data-theme="dark"] */
  [data-theme="dark"] img { opacity: .95; }
  [data-theme="dark"] .service-card,
  [data-theme="dark"] .trust-item {
    background: var(--bg-white);
    border-color: var(--border);
  }
  [data-theme="dark"] .stats-section {
    background: #141720;
  }
  [data-theme="dark"] .hero-bg { opacity: .3; }
  [data-theme="dark"] .hero-overlay { background: linear-gradient(135deg, rgba(10,13,16,.92) 0%, rgba(15,17,23,.85) 100%); }

  /* ── Theme Toggle ── */
  .theme-toggle {
    background: none; border: none; cursor: pointer;
    color: var(--nav-text-muted); font-size: 18px; padding: 6px;
    line-height: 1; transition: color .2s;
  }
  .theme-toggle:hover { color: var(--nav-text); }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', system-ui, -apple-system, sans-serif; background: var(--bg-light); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; transition: background .3s, color .3s; }
  img { display: block; max-width: 100%; }

  /* ================================================================
     NAVIGATION
     ================================================================ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--nav-border);
    transition: background .3s, box-shadow .3s;
  }
  .nav.scrolled {
    background: var(--nav-bg-scrolled);
    box-shadow: 0 2px 32px rgba(0,0,0,.08);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 300; color: var(--nav-text);
    letter-spacing: 0.06em;
  }
  .nav-brand span { color: var(--sage); font-style: italic; font-weight: 400; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a {
    color: var(--nav-text-muted); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--nav-text); }
  .nav-wa-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--forest); color: #fff;
    padding: 9px 20px; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .nav-wa-btn:hover { background: var(--forest-hover); transform: translateY(-1px); }
  .nav-wa-btn svg { width: 18px; height: 18px; fill: #fff; }

  /* ================================================================
     HERO
     ================================================================ */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
  }
  .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
  }
  @media (max-width: 768px) {
    .hero { min-height: 80vh; }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,42,36,.75) 0%, rgba(26,42,36,.45) 50%, rgba(26,42,36,.85) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 120px 24px 80px;
    max-width: 760px;
  }
  .hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 400; color: #fff;
    line-height: 1.1; margin-bottom: 20px;
    letter-spacing: 0.01em;
  }
  .hero-content h1 em {
    font-style: italic; color: var(--sage);
  }
  .hero-content p {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255,255,255,.8);
    max-width: 540px; margin: 0 auto 36px;
    line-height: 1.6;
  }
  .hero-cta-row {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 48px;
  }
  .hero-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--forest); color: #fff;
    padding: 16px 40px; border-radius: 50px;
    font-size: 16px; font-weight: 500; letter-spacing: .04em;
    border: none; cursor: pointer;
    transition: background .3s, transform .3s, box-shadow .3s;
    box-shadow: 0 4px 28px rgba(46,125,94,.35);
    text-decoration: none;
  }
  .hero-btn:hover {
    background: var(--forest-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(46,125,94,.45);
  }
  .hero-btn svg { width: 22px; height: 22px; fill: #fff; }
  .hero-btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 16px 32px; border-radius: 50px;
    font-size: 16px; font-weight: 500;
    border: 1px solid rgba(255,255,255,.3);
    cursor: pointer; text-decoration: none;
    transition: background .2s, border-color .2s;
  }
  .hero-btn-secondary:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
  }
  .hero-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
  }
  .hero-badge {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  }
  .hero-badge-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(78,168,130,.15);
    border: 1px solid rgba(78,168,130,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  /* ================================================================
     SECTION SHARED
     ================================================================ */
  .section { padding: 100px 24px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; color: var(--sage);
    margin-bottom: 14px; font-style: italic;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::before {
    content: ''; display: inline-block;
    width: 32px; height: 1px; background: var(--sage);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 300; color: var(--forest-deeper);
    line-height: 1.15; margin-bottom: 16px;
    letter-spacing: 0.02em;
  }
  [data-theme="dark"] .section-title { color: var(--text); }
  .section-subtitle {
    font-size: 17px; color: var(--text-muted);
    max-width: 560px; line-height: 1.7;
  }

  .fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ================================================================
     SERVICES
     ================================================================ */
  .services-section { background: var(--bg-white); }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 56px;
  }
  .service-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(46,125,94,.08), 0 4px 16px rgba(0,0,0,.06);
    border-color: rgba(46,125,94,.2);
  }
  .service-card img {
    width: 100%; height: 220px;
    object-fit: cover;
  }
  .service-card-body { padding: 28px 28px 32px; }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 500;
    color: var(--forest-deeper); margin-bottom: 10px;
    letter-spacing: 0.01em;
  }
  [data-theme="dark"] .service-card h3 { color: var(--text); }
  .service-card p {
    font-size: 15px; color: var(--text-muted);
    line-height: 1.7;
  }

  /* ================================================================
     ABOUT / TRUST
     ================================================================ */
  .about-section { background: var(--bg-light); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; margin-top: 56px;
  }
  .about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(46,125,94,.08), 0 4px 20px rgba(0,0,0,.08);
  }
  .about-image img {
    width: 100%; height: 440px;
    object-fit: cover;
  }
  .trust-list { display: flex; flex-direction: column; gap: 28px; }
  .trust-item { display: flex; gap: 18px; align-items: flex-start; }
  .trust-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--sage-glow);
    border: 1px solid rgba(78,168,130,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
  }
  .trust-text h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px; font-weight: 500;
    color: var(--forest-deeper); margin-bottom: 4px;
  }
  [data-theme="dark"] .trust-text h4 { color: var(--text); }
  .trust-text p {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
  }

  /* ================================================================
     TEAM
     ================================================================ */
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px; margin-top: 56px;
  }
  .team-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    text-align: center; transition: box-shadow .3s;
  }
  .team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
  .team-card img {
    width: 100%; height: 280px;
    object-fit: cover; object-position: center top;
  }
  .team-card-body { padding: 20px 16px; }
  .team-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--forest-deeper);
    margin-bottom: 4px;
  }
  [data-theme="dark"] .team-card-name { color: var(--text); }
  .team-card-role {
    font-size: 13px; color: var(--sage); font-weight: 600;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px;
  }
  .team-card-bio {
    font-size: 14px; color: var(--text-muted); line-height: 1.5;
  }
  @media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .team-card img { height: 200px; }
  }

  /* ================================================================
     REVIEWS / SOCIAL PROOF
     ================================================================ */
  .reviews-section { background: var(--bg-light); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 56px;
  }
  .review-card {
    background: var(--bg-white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px;
    transition: transform .3s, box-shadow .3s;
  }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.06);
  }
  .review-stars { color: #FBBF24; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
  .review-text {
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
    font-style: italic; margin-bottom: 20px;
  }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--sage-glow); border: 1px solid rgba(78,168,130,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 600; color: var(--sage);
  }
  .review-author-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .review-author-source { font-size: 12px; color: var(--text-light); }
  @media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
  }

  /* ================================================================
     LOCATION / MAP
     ================================================================ */
  .location-section { background: var(--bg-light); }
  .location-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center; margin-top: 56px;
  }
  .location-map {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3; background: var(--bg-white);
    border: 1px solid var(--border);
  }
  .location-map iframe { width: 100%; height: 100%; border: 0; }
  .location-details { display: flex; flex-direction: column; gap: 24px; }
  .location-detail {
    display: flex; gap: 16px; align-items: flex-start;
  }
  .location-detail-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--sage-glow);
    border: 1px solid rgba(78,168,130,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .location-detail h4 {
    font-size: 15px; font-weight: 600; color: var(--text);
    margin-bottom: 4px;
  }
  .location-detail p {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
  }

  /* ================================================================
     FAQ
     ================================================================ */
  .faq-section { background: var(--bg-white); }
  .faq-list {
    max-width: 760px; margin: 56px auto 0;
    display: flex; flex-direction: column; gap: 12px;
  }
  .faq-item {
    background: var(--bg-light); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: border-color .2s;
  }
  .faq-item.open { border-color: var(--forest); }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; cursor: pointer;
    font-size: 16px; font-weight: 600; color: var(--text);
    background: none; border: none; width: 100%; text-align: left;
    font-family: inherit; transition: color .2s;
  }
  .faq-question:hover { color: var(--forest); }
  .faq-icon {
    font-size: 20px; color: var(--text-light);
    transition: transform .3s;
    flex-shrink: 0; margin-left: 16px;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--forest); }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
  }

  /* ================================================================
     STATS BAR
     ================================================================ */
  .stats-section {
    background: var(--forest);
    padding: 60px 24px;
  }
  .stats-inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px; text-align: center;
  }
  .stat-item {}
  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px); font-weight: 300;
    color: #fff; line-height: 1;
  }
  .stat-label {
    font-size: 13px; font-weight: 500; letter-spacing: .08em;
    text-transform: uppercase; color: rgba(255,255,255,.65);
    margin-top: 8px;
  }

  /* ================================================================
     CHAT FEATURE SECTION
     ================================================================ */
  .wa-feature-section {
    background: var(--accent-bg);
    background-image: var(--accent-bg-gradient);
    color: var(--accent-text); position: relative; overflow: hidden;
  }
  .wa-feature-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  .wa-feature-content .section-label { color: var(--sage); }
  .wa-feature-content .section-label::before { background: var(--sage); }
  .wa-feature-content .section-title { color: var(--accent-text); }
  .wa-feature-content .section-subtitle { color: var(--accent-text-muted); }
  .wa-feature-pills {
    display: flex; flex-direction: column; gap: 16px; margin-top: 36px;
  }
  .wa-pill {
    display: flex; align-items: center; gap: 14px;
    background: var(--accent-pill-bg);
    border: 1px solid var(--accent-pill-border);
    border-radius: var(--radius);
    padding: 18px 22px;
    transition: background .2s;
  }
  .wa-pill:hover { opacity: .85; }
  .wa-pill-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(78,168,130,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .wa-pill-text {
    font-size: 15px; font-weight: 500; color: var(--accent-text);
  }
  .wa-feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,.3);
  }
  .wa-feature-image img {
    width: 100%; height: 460px;
    object-fit: cover;
  }

  /* ================================================================
     ADMIN IMAGE SWAP
     ================================================================ */
  .img-swap-wrap { position: relative; }
  .img-swap-overlay {
    display: none; position: absolute; inset: 0;
    background: rgba(0,0,0,.45); cursor: pointer;
    align-items: center; justify-content: center;
    border-radius: inherit; transition: opacity .2s;
  }
  .img-swap-wrap:hover .img-swap-overlay { display: flex; }
  .img-swap-label {
    background: rgba(0,0,0,.7); color: #fff; padding: 8px 16px;
    border-radius: 8px; font-size: 13px; font-weight: 600; pointer-events: none;
  }
  .img-swap-wrap input[type="file"] { display: none; }

  /* ================================================================
     EDIT DATA PANEL
     ================================================================ */
  .admin-only { display: none; }
  .edit-data-section {
    background: var(--bg-light); border-top: 1px solid var(--border);
    padding: 64px 24px;
  }
  .edit-data-inner { max-width: 640px; margin: 0 auto; }
  .edit-data-inner .section-label { margin-bottom: 8px; }
  .edit-data-inner .section-title { font-size: 24px; margin-bottom: 8px; }
  .edit-data-desc {
    font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px;
  }
  .edit-field { margin-bottom: 20px; }
  .edit-label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 6px;
  }
  .edit-input {
    width: 100%; padding: 12px 16px; font-size: 15px;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--bg-white); color: var(--text);
    font-family: inherit; transition: border-color .2s;
  }
  .edit-input:focus { outline: none; border-color: var(--forest); }
  .edit-textarea { min-height: 80px; resize: vertical; }
  .edit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .edit-submit {
    display: inline-block; padding: 14px 36px;
    background: var(--forest); color: #fff;
    font-size: 15px; font-weight: 700; border: none;
    border-radius: var(--radius); cursor: pointer;
    transition: background .2s; margin-top: 8px;
  }
  .edit-submit:hover { background: var(--forest-hover); }
  .edit-success {
    display: none; padding: 12px 20px; margin-top: 16px;
    background: #e8f5e9; color: #2e7d32; border-radius: var(--radius);
    font-size: 14px; font-weight: 500;
  }

  /* ================================================================
     QR CODE
     ================================================================ */
  .qr-section {
    background: var(--bg-light); border-top: 1px solid var(--border);
    padding: 64px 24px; text-align: center;
  }
  .qr-section .section-label { margin-bottom: 8px; }
  .qr-section .section-title { font-size: 24px; margin-bottom: 8px; }
  .qr-section .qr-desc {
    font-size: 15px; color: var(--text-muted); line-height: 1.6;
    margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto;
  }
  .qr-card {
    display: inline-block; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; text-align: center;
  }
  .qr-card canvas { border-radius: var(--radius); }
  .qr-business-name { font-size: 17px; font-weight: 600; color: var(--text); margin-top: 16px; }
  .qr-phone { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
  .qr-download {
    display: inline-block; padding: 12px 28px; margin-top: 20px;
    background: var(--forest); color: #fff;
    font-size: 14px; font-weight: 600; border: none;
    border-radius: var(--radius); cursor: pointer;
    transition: background .2s; font-family: inherit;
  }
  .qr-download:hover { background: var(--forest-hover); }

  /* ================================================================
     INFO BAR
     ================================================================ */
  .info-bar {
    background: var(--accent-bg);
    padding: 40px 24px;
  }
  .info-bar-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .info-item { text-align: center; }
  .info-item-icon { font-size: 24px; margin-bottom: 8px; }
  .info-item-label {
    font-size: 12px; font-weight: 500; letter-spacing: .1em;
    text-transform: uppercase; color: var(--accent-text-muted);
    margin-bottom: 6px;
  }
  .info-item-value { font-size: 17px; font-weight: 600; color: var(--accent-text); }

  /* ================================================================
     FOOTER
     ================================================================ */
  .site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
  }
  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 300; color: var(--sage);
    margin-bottom: 8px; letter-spacing: .06em;
  }
  .footer-powered {
    font-size: 13px; color: var(--footer-text);
    margin-bottom: 12px;
  }
  .footer-powered a { color: var(--footer-text); text-decoration: none; }
  .footer-powered a:hover { opacity: .7; }
  .footer-links { display: flex; justify-content: center; gap: 24px; }
  .footer-links a {
    font-size: 13px; color: var(--footer-text-muted);
    text-decoration: none; transition: color .2s;
  }
  .footer-links a:hover { opacity: .7; }

  /* ================================================================
     PANEL DER PRAXIS
     ================================================================ */
  .demo-divider {
    max-width: 1100px; margin: 80px auto 40px; padding: 0 24px;
    display: flex; align-items: center; gap: 16px;
    color: var(--text-light); font-size: 12px;
    text-transform: uppercase; letter-spacing: .12em; font-weight: 500;
  }
  .demo-divider::before, .demo-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

  .panel-section { max-width: 1100px; margin: 0 auto 80px; padding: 0 24px; }
  .panel-header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; padding-bottom: 16px;
    border-bottom: 2px solid var(--forest);
  }
  .panel-header h2 { font-size: 22px; font-weight: 600; color: var(--text); }
  .panel-header .panel-badge {
    background: var(--forest); color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 3px 12px; border-radius: 12px;
  }
  .panel-empty {
    text-align: center; padding: 56px 24px;
    color: var(--text-muted); font-size: 15px;
    background: var(--bg-white);
    border: 1px dashed var(--border); border-radius: var(--radius-lg);
  }
  .panel-list { display: flex; flex-direction: column; gap: 12px; }
  .panel-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex; align-items: flex-start; gap: 16px;
    transition: box-shadow .2s;
  }
  .panel-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
  .panel-card .urgency-dot {
    width: 12px; height: 12px; border-radius: 50%;
    flex-shrink: 0; margin-top: 5px;
  }
  .urgency-normal { background: #f1c40f; }
  .urgency-dringend { background: #e74c3c; animation: pulse-red 1.5s infinite; }
  @keyframes pulse-red {
    0%,100% { box-shadow: 0 0 0 0 rgba(231,76,60,.4); }
    50%      { box-shadow: 0 0 0 6px rgba(231,76,60,0); }
  }
  .panel-card-body { flex: 1; min-width: 0; }
  .panel-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
  .panel-card-name { font-weight: 600; font-size: 15px; color: var(--text); }
  .panel-card-status {
    font-size: 11px; font-weight: 600;
    padding: 2px 10px; border-radius: 10px;
    text-transform: uppercase; letter-spacing: .04em;
  }
  .status-neu { background: #e8f5e9; color: #2e7d32; }
  .status-in-bearbeitung { background: #fff3e0; color: #e65100; }
  .status-erledigt { background: #e0e0e0; color: #616161; }
  .panel-card-urgency {
    font-size: 11px; font-weight: 600;
    padding: 2px 10px; border-radius: 10px;
    text-transform: uppercase; letter-spacing: .04em;
  }
  .badge-normal  { background: #fff9c4; color: #f57f17; }
  .badge-dringend { background: #ffebee; color: #c62828; }
  .panel-card-summary { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
  .panel-card-time { font-size: 12px; color: var(--text-light); }
  .panel-card-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; align-self: center; }
  .panel-btn {
    padding: 8px 18px; border-radius: 8px; border: none;
    font-size: 13px; font-weight: 600; cursor: pointer;
    white-space: nowrap; transition: background .2s, transform .15s;
  }
  .panel-btn:hover { transform: translateY(-1px); }
  .panel-btn-call { background: var(--forest); color: #fff; }
  .panel-btn-call:hover { background: var(--forest-hover); }
  .panel-btn-resolve { background: #f0f0f0; color: #333; }
  .panel-btn-resolve:hover { background: #e0e0e0; }

  /* ================================================================
     CHAT WIDGET (On-Site Demo)
     ================================================================ */
  .chat-bubble {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(37,211,102,.4);
    z-index: 1000;
    transition: transform .2s, box-shadow .2s;
  }
  .chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37,211,102,.5);
  }
  .chat-bubble svg { width: 32px; height: 32px; fill: #fff; }
  .chat-badge {
    position: absolute; top: -4px; right: -4px;
    background: #e74c3c; color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff;
  }

  .chat-window {
    position: fixed;
    bottom: 96px; right: 24px;
    width: 370px; height: 540px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,.25);
    display: none; flex-direction: column;
    z-index: 1000;
    font-family: -apple-system, 'Segoe UI', system-ui, sans-serif;
  }
  .chat-window.open { display: flex; }

  .chat-header {
    background: var(--forest);
    padding: 14px 16px;
    display: flex; align-items: center; gap: 10px;
    color: #fff;
  }
  .chat-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--forest-hover);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .chat-header-info { flex: 1; }
  .chat-header-name { font-size: 15px; font-weight: 600; }
  .chat-header-sub  { font-size: 12px; opacity: .8; }
  .chat-close {
    background: none; border: none; color: #fff;
    font-size: 20px; cursor: pointer; opacity: .7; padding: 4px;
  }
  .chat-close:hover { opacity: 1; }

  .chat-body {
    flex: 1;
    background: #f0f4f2;
    overflow-y: auto;
    padding: 12px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .chat-msg {
    max-width: 80%;
    padding: 10px 12px 7px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
    word-break: break-word;
  }
  .chat-msg-time { font-size: 10px; opacity: .6; text-align: right; margin-top: 2px; }
  .chat-msg.bot {
    background: #fff; color: #303030; align-self: flex-start;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
  }
  .chat-msg.user {
    background: #C8E6C9; color: #1B4D2E; align-self: flex-end;
    border-radius: 8px 8px 0 8px;
  }

  .chat-typing {
    display: none; align-self: flex-start;
    background: #fff; border-radius: 0 8px 8px 8px;
    padding: 10px 14px; box-shadow: 0 1px 2px rgba(0,0,0,.08);
  }
  .chat-typing span {
    display: inline-block; width: 7px; height: 7px;
    background: #999; border-radius: 50%;
    animation: bounce .9s infinite; margin: 0 1px;
  }
  .chat-typing span:nth-child(2) { animation-delay: .15s; }
  .chat-typing span:nth-child(3) { animation-delay: .3s; }
  @keyframes bounce {
    0%,60%,100% { transform: translateY(0); }
    30%          { transform: translateY(-6px); }
  }

  .chat-footer {
    background: #e8ede9;
    padding: 8px 10px;
    display: flex; align-items: center; gap: 8px;
    border-top: 1px solid #d0ddd3;
  }
  .chat-input {
    flex: 1; background: #fff; border: none; outline: none;
    border-radius: 20px; padding: 9px 14px;
    font-size: 14px; font-family: inherit;
  }
  .chat-send {
    width: 40px; height: 40px;
    background: var(--forest);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background .2s;
  }
  .chat-send:hover { background: var(--forest-hover); }
  .chat-send svg { width: 20px; height: 20px; fill: #fff; }
  .chat-send:disabled { background: #ccc; cursor: default; }

  .chat-intro {
    background: rgba(46,125,94,0.08); border-radius: 8px;
    padding: 10px 12px; font-size: 12px;
    color: #2E4A38; text-align: center;
    margin-bottom: 4px; line-height: 1.5;
  }
  .chat-limit {
    background: #ffebee; border-radius: 8px;
    padding: 10px 12px; font-size: 12px;
    color: #c62828; text-align: center;
    margin-top: 4px; line-height: 1.5;
  }

  /* ================================================================
     RESPONSIVE
     ================================================================ */
  @media (max-width: 900px) {
    .services-grid,
    .services-default { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 300px; }
    .wa-feature-grid { grid-template-columns: 1fr; gap: 40px; }
    .wa-feature-image { order: -1; }
    .wa-feature-image img { height: 300px; }
    .stats-inner { grid-template-columns: 1fr; gap: 28px; }
    .location-grid { grid-template-columns: 1fr; }
    .info-bar-inner { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 640px) {
    .services-grid,
    .services-default { grid-template-columns: 1fr; }
    .nav-links a:not(.nav-wa-btn) { display: none; }
    .hero-content h1 { font-size: 32px; }
    .hero-badges { gap: 16px; }
    .section { padding: 64px 20px; }
    .chat-window { width: calc(100vw - 16px); right: 8px; bottom: 80px; }
    .panel-card { flex-direction: column; }
    .panel-card-actions { flex-direction: row; align-self: flex-start; }
    .edit-row { grid-template-columns: 1fr; }
    .qr-card { padding: 24px; }
  }
  [data-toggleable].hidden-section { display: none !important; }
