*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #E9E4D6;
      --card:      #F2EDE0;
      --white:     #FAF9F5;
      --dark:      #1A1714;
      --dark2:     #2C2825;
      --muted:     #7A7269;
      --muted2:    #A8A098;
      --green:     #3F6B37;
      --green2:    #4E8244;
      --green-pale:#EEF4EB;
      --border:    rgba(26,23,20,.07);
      --border2:   rgba(26,23,20,.13);
      --r-sm:  10px;
      --r-md:  16px;
      --r-lg:  24px;
      --r-xl:  32px;
      --r-pill:9999px;
      --sh-sm: 0 1px 3px rgba(26,23,20,.06),0 1px 2px rgba(26,23,20,.04);
      --sh-md: 0 4px 16px rgba(26,23,20,.08),0 2px 6px rgba(26,23,20,.04);
      --sh-lg: 0 12px 40px rgba(26,23,20,.12),0 4px 12px rgba(26,23,20,.05);
    }

    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    body {

      background: var(--bg);
      color: var(--dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a   { text-decoration: none; color: inherit; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 66px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 max(32px, calc((100% - 1200px) / 2));
      background: rgba(233,228,214,.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-logo img { height: 30px; width: auto; }
    .nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
    .nav-firm { font-size: 14px; font-weight: 700; color: var(--dark); letter-spacing: -.01em; line-height: 1.2; }
    .nav-logo-sub { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .02em; }

    .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
    .nav-links a {
      font-size: 13.5px; font-weight: 500; color: var(--muted);
      padding: 6px 13px; border-radius: var(--r-pill);
      transition: color .18s, background .18s;
    }
    .nav-links a:hover { color: var(--dark); background: rgba(26,23,20,.05); }

    .btn-wa {
      display: flex; align-items: center; gap: 7px;
      background: #25D366; color: #fff;
      font-size: 13px; font-weight: 600;
      padding: 9px 17px; border-radius: var(--r-pill);
      transition: opacity .18s, transform .15s;
    }
    .btn-wa:hover { opacity: .9; transform: translateY(-1px); }
    .btn-wa svg { width: 15px; height: 15px; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100svh;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      padding: 120px 64px 80px;
    }
    .hero-inner {
      display: flex; align-items: center;
      justify-content: center; gap: 72px;
      width: 100%; max-width: 1100px;
    }
    .hero-left {
      flex: 1;
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--card); border: 1px solid var(--border2);
      border-radius: var(--r-pill);
      padding: 6px 14px;
      font-size: 11.5px; font-weight: 600; color: var(--green);
      letter-spacing: .07em; text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero-badge::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--green); border-radius: 50%;
      animation: blink 2.2s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
    @keyframes pill-pulse {
      0%,100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(63,107,55,.7); }
      45%     { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(63,107,55,0); }
    }
    @keyframes pill-shine {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes gold-shimmer {
      0%   { background-position: 200% center; }
      100% { background-position: -200% center; }
    }
    @keyframes kp-glow {
      0%, 100% { filter: brightness(.85); }
      50%       { filter: brightness(1.2);  }
    }

    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(44px, 7.5vw, 92px);
      font-weight: 700; line-height: 1.04;
      letter-spacing: -.025em;
      max-width: 860px; margin-bottom: 22px;
    }
    .hero h1 em { font-style: italic; color: var(--green); }

    .hero-sub {
      font-size: clamp(15px, 1.8vw, 18px);
      color: var(--muted); max-width: 520px;
      line-height: 1.7; margin-bottom: 40px;
    }

    .hero-btns { display: flex; gap: 11px; flex-wrap: wrap; justify-content: center; }

    .hero-offer {
      display: flex; flex-direction: column;
      gap: 10px; width: 196px; flex-shrink: 0;
    }
    .hero-offer-main {
      background: #0C0B09; border-radius: 20px;
      padding: 36px 28px;
      display: flex; flex-direction: column; align-items: center;
      gap: 11px; text-align: center;
    }
    .hero-offer-tag {
      font-size: 9px; font-weight: 800; letter-spacing: .18em;
      text-transform: uppercase; color: rgba(255,255,255,.3);
    }
    .hero-offer-n {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 80px; font-weight: 700; line-height: .9;
      background: linear-gradient(90deg,#C8961C 0%,#F0CC5A 30%,#FDE07A 50%,#F0CC5A 70%,#C8961C 100%);
      background-size: 300% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: gold-shimmer 1.8s linear infinite;
    }
    .hero-offer-u {
      font-size: 18px; font-weight: 900; text-transform: uppercase;
      letter-spacing: .06em; color: #fff;
    }
    .hero-offer-pill {
      background: linear-gradient(90deg,#3F6B37 0%,#5fa854 40%,#8dd67f 50%,#5fa854 60%,#3F6B37 100%);
      background-size: 250% auto;
      color: #fff; font-size: 11px; font-weight: 700;
      padding: 5px 16px; border-radius: var(--r-pill);
      animation: pill-pulse 1.8s ease-in-out infinite, pill-shine 2.4s linear infinite;
    }
    .hero-offer-sub-row {
      background: #0C0B09; border-radius: 20px;
      padding: 22px 20px;
      display: flex; align-items: center; justify-content: center; gap: 14px;
    }
    .hero-offer-sub-item { display: flex; align-items: center; gap: 10px; }
    .hero-offer-sub-n {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 38px; font-weight: 700; line-height: 1;
      background: linear-gradient(90deg,#C8961C 0%,#F0CC5A 30%,#FDE07A 50%,#F0CC5A 70%,#C8961C 100%);
      background-size: 300% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: gold-shimmer 1.8s linear infinite;
    }
    .hero-offer-sub-icon {
      font-size: 24px; line-height: 1;
      background: linear-gradient(90deg,#C8961C 0%,#F0CC5A 30%,#FDE07A 50%,#F0CC5A 70%,#C8961C 100%);
      background-size: 300% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      animation: gold-shimmer 1.8s linear infinite;
    }
    .hero-offer-sub-l {
      font-size: 11px; font-weight: 600;
      color: rgba(255,255,255,.5); line-height: 1.45; text-align: left;
    }
    .hero-offer-vsep { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }

    .btn-dark {
      background: var(--dark); color: #fff;
      font-size: 14px; font-weight: 600;
      padding: 14px 28px; border-radius: var(--r-pill);
      transition: opacity .18s, transform .14s;
    }
    .btn-dark:hover { opacity: .82; transform: translateY(-1px); }

    .btn-ghost {
      background: var(--card); color: var(--dark);
      font-size: 14px; font-weight: 500;
      padding: 14px 28px; border-radius: var(--r-pill);
      border: 1px solid var(--border2);
      transition: background .18s, transform .14s;
    }
    .btn-ghost:hover { background: var(--white); transform: translateY(-1px); }

    .hero-stats {
      display: flex; align-items: center; gap: 48px;
      margin-top: 56px; padding-top: 40px;
      border-top: 1px solid var(--border2);
      flex-wrap: wrap; justify-content: center;
    }
    .stat { text-align: center; }
    .stat-n {
      font-size: 34px; font-weight: 700;
      letter-spacing: -.03em; line-height: 1;
    }
    .stat-l {
      font-size: 11.5px; color: var(--muted);
      margin-top: 5px; font-weight: 500;
    }
    .stat-sep { width: 1px; height: 42px; background: var(--border2); }

    /* ─── SECTION ATOMS ─── */
    .wrap   { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
    .sec    { padding: 96px 0; }
    .sec-sm { padding: 64px 0; }

    .sec-label {
      font-size: 11px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--green); margin-bottom: 11px;
    }
    .sec-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(30px, 4.2vw, 52px);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -.022em; margin-bottom: 14px;
    }
    .sec-sub {
      font-size: 15.5px; color: var(--muted);
      max-width: 500px; line-height: 1.7;
    }
    .divider { height: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }

    /* ─── ABOUT ─── */
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: stretch;
    }
    .about-left-col { display: flex; flex-direction: column; }
    .about-right-col { display: flex; flex-direction: column; align-items: flex-end; padding-top: 26px; }
    .about-right-col .belge-row { justify-content: flex-end; }
    .about-right-col .about-photo { width: 100%; margin-top: auto; margin-bottom: auto; }

    .facts { display: flex; flex-direction: column; margin-top: 32px; }
    .fact {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }
    .fact:last-child { border-bottom: none; }
    .fact-ico {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--green-pale);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .fact strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
    .fact span   { font-size: 13px; color: var(--muted); line-height: 1.55; }

    .about-photo {
      position: relative;
      border-radius: var(--r-xl); overflow: hidden;
    }
    .about-photo img {
      width: 100%; height: 480px; object-fit: cover; object-position: top center; display: block;
    }
    .about-photo::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 38%;
      background: linear-gradient(to bottom, transparent, #E9E4D6);
      pointer-events: none;
    }
    .about-float {
      position: absolute; bottom: 20px; left: 20px;
      z-index: 1;
      background: rgba(255,255,255,.95);
      border-radius: var(--r-md);
      padding: 14px 18px;
      display: flex; align-items: center; gap: 13px;
      box-shadow: var(--sh-lg);
      backdrop-filter: blur(8px);
    }
    .about-float img  { height: 30px; width: auto; }
    .about-float-t strong { display: block; font-size: 13px; font-weight: 700; }
    .about-float-t span  { font-size: 11px; color: var(--muted); }


    .belge-row {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 24px; flex-wrap: wrap;
    }
    .belge-row img {
      height: 72px; width: auto;
      border-radius: var(--r-sm);
      border: 1px solid var(--border2);
      background: #fff; padding: 8px;
      object-fit: contain;
    }

    /* ─── COMPARE ─── */
    .compare-bg { background: var(--white); }
    .compare-bg .sec-label { color: var(--green); }
    .compare-bg .sec-title { color: var(--dark); }
    .compare-bg .sec-sub   { color: var(--muted); }

    .cmp-scroll { margin-top: 52px; }
    .cmp-table {
      border: 1px solid var(--border2);
      border-radius: var(--r-lg); overflow: hidden;
    }
    .cmp-head { display: grid; grid-template-columns: 1fr 1.1fr 1fr; }
    .cmp-head > div {
      padding: 15px 22px;
      font-size: 11px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      display: flex; align-items: center; gap: 7px;
    }
    .cmp-head .h1 { background: #FEF2F2; color: #B91C1C; }
    .cmp-head .hm {
      background: var(--card); color: var(--muted);
      justify-content: center; text-align: center;
      border-left: 1px solid var(--border2);
      border-right: 1px solid var(--border2);
    }
    .cmp-head .h2 { background: #F0FDF4; color: #166534; }

    .cmp-row { display: grid; grid-template-columns: 1fr 1.1fr 1fr; border-top: 1px solid var(--border); }
    .cmp-row > div {
      padding: 15px 22px; font-size: 13px; line-height: 1.55;
      display: flex; align-items: flex-start; gap: 9px;
    }
    .cmp-row .c1 { background: #FFF8F8; color: var(--dark); }
    .cmp-row .cm {
      background: var(--card); color: var(--dark);
      font-size: 12.5px; font-weight: 700; text-align: center;
      justify-content: center; align-items: center;
      border-left: 1px solid var(--border2); border-right: 1px solid var(--border2);
    }
    .cmp-row .c2 { background: #F7FDF8; color: var(--dark); }

    .ico-b, .ico-g {
      width: 15px; height: 15px; border-radius: 4px;
      flex-shrink: 0; margin-top: 2px;
    }
    .ico-b { background: #FCA5A5; }
    .ico-g { background: var(--green); }

    /* ─── PRODUCTS ─── */
    .tab-bar {
      display: flex; gap: 6px; flex-wrap: wrap;
      margin: 36px 0 32px;
    }
    .tab {
      padding: 8px 17px; min-height: 44px;
      border-radius: var(--r-pill);
      border: 1px solid var(--border2);
      background: transparent;
      font-size: 13px; font-weight: 500; color: var(--muted);
      cursor: pointer; font-family: inherit;
      transition: all .18s; white-space: nowrap; flex-shrink: 0;
    }
    .tab:hover { background: var(--card); color: var(--dark); }
    .tab.on    { background: var(--dark); color: #fff; border-color: var(--dark); }

    .prod-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
      gap: 15px;
    }

    .pcard {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
      cursor: pointer;
    }
    .pcard:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

    .pcard-img-wrap {
      position: relative;
      margin: 12px 12px 0;
      border-radius: 8px;
      overflow: hidden;
    }
    .pcard-img {
      width: 100%; height: 160px;
      object-fit: contain; display: block;
      padding: 14px 18px;
      background: transparent;
    }
    .pcard-tag {
      position: absolute; top: 12px; left: 12px;
      background: rgba(255,255,255,.92);
      border-radius: var(--r-pill);
      padding: 4px 10px;
      font-size: 10px; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      color: var(--dark);
      box-shadow: var(--sh-sm);
    }
    .pcard-tag.red { background: #C0392B; color: #fff; }

    .pcard-info {
      padding: 15px 17px 18px;
      background: var(--white);
      border-top: 1px solid var(--border);
    }
    .pcard-cat {
      display: flex; align-items: center; gap: 7px;
      font-size: 10px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--green); margin-bottom: 5px;
    }
    .pcard-cat::before {
      content: '';
      width: 14px; height: 1.5px;
      background: var(--green); flex-shrink: 0;
    }
    .pcard-name { font-size: 15px; font-weight: 700; line-height: 1.3; }

    /* ─── WHY ─── */
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 14px; margin-top: 44px;
    }
    .why-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r-lg); padding: 30px;
      transition: transform .2s;
    }
    .why-card:hover { transform: translateY(-3px); }
    .why-ico  { font-size: 26px; margin-bottom: 14px; }
    .why-t    { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
    .why-sub  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

    /* ─── CAMPAIGN ─── */
    /* ─── CAMPAIGN ─── */
    .kp-wrap {
      background: #0C0B09;
      background-image:
        radial-gradient(ellipse 600px 320px at 8%  50%, rgba(190,148,48,.18) 0%, transparent 70%),
        radial-gradient(ellipse 480px 400px at 92% 38%, rgba(190,148,48,.13) 0%, transparent 70%),
        radial-gradient(circle 140px at 52% 10%, rgba(255,210,80,.08) 0%, transparent 60%),
        radial-gradient(circle 100px at 20% 85%, rgba(190,148,48,.07) 0%, transparent 60%),
        radial-gradient(circle  80px at 82% 88%, rgba(210,165,55,.06) 0%, transparent 60%);
      border-radius: var(--r-xl);
      overflow: hidden;
      padding: 44px 0 40px;
      text-align: center;
    }
    .kp-over {
      font-size: 10px; font-weight: 800;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(255,255,255,.3);
      margin-bottom: 20px;
    }
    .kp-hero {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
    }
    .kp-n {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(80px, 10vw, 120px);
      font-weight: 700; line-height: .9; letter-spacing: -.04em;
      color: #F0CC5A;
      text-shadow: 0 2px 0 rgba(180,130,20,.6), 0 0 60px rgba(240,204,90,.35);
      animation: kp-glow 2.4s ease-in-out infinite;
    }
    .kp-mid { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
    .kp-u {
      font-size: clamp(30px, 4.5vw, 58px); font-weight: 900;
      text-transform: uppercase; letter-spacing: .06em;
      color: #fff; line-height: 1;
    }
    .kp-pill {
      display: inline-flex; align-items: center;
      background: linear-gradient(90deg,#3F6B37 0%,#5fa854 40%,#8dd67f 50%,#5fa854 60%,#3F6B37 100%);
      background-size: 250% auto;
      color: #fff; font-size: 12px; font-weight: 700;
      padding: 6px 18px; border-radius: var(--r-pill);
      align-self: flex-start;
      animation: pill-pulse 1.8s ease-in-out infinite, pill-shine 2.4s linear infinite;
    }
    .kp-sep {
      width: 64px; height: 1px;
      background: rgba(255,255,255,.14);
      margin: 4px auto 36px;
    }
    .kp-row {
      display: flex; align-items: center;
      justify-content: center; gap: 40px;
    }
    .kp-stat { display: flex; align-items: center; gap: 14px; }
    .kp-sn {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 52px; font-weight: 700; line-height: 1;
      background: linear-gradient(90deg,#C8961C 0%,#F0CC5A 30%,#FDE07A 50%,#F0CC5A 70%,#C8961C 100%);
      background-size: 300% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gold-shimmer 2s linear infinite;
    }
    .kp-si {
      font-size: 30px; line-height: 1;
      background: linear-gradient(90deg,#C8961C 0%,#F0CC5A 30%,#FDE07A 50%,#F0CC5A 70%,#C8961C 100%);
      background-size: 300% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gold-shimmer 1.6s linear infinite;
    }
    .kp-sl {
      font-size: 14px; font-weight: 600;
      color: rgba(255,255,255,.65);
      line-height: 1.45; text-align: left; white-space: nowrap;
    }
    .kp-vsep { width: 1px; height: 44px; background: rgba(255,255,255,.15); }
    .kp-cta-row { margin-top: 40px; }
    .kp-cta {
      display: inline-flex; align-items: center;
      background: #fff; color: var(--dark);
      font-size: 15px; font-weight: 700;
      padding: 14px 32px; border-radius: var(--r-pill);
      text-decoration: none; white-space: nowrap;
      transition: opacity .18s, transform .14s;
    }
    .kp-cta:hover { opacity: .88; transform: translateY(-1px); }

    /* ─── CONTACT ─── */
    .contact-bg { background: var(--card); }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: center;
      padding: 96px 0px;
      max-width: 1214px; margin: 0 auto;
      font-family: 'Inter', -apple-system, sans-serif;
    }

    .cinfo-list { margin-top: 36px; }
    .cinfo-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
    }
    .cinfo-item:last-child { border-bottom: none; }
    .cinfo-ico {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--white); border: 1px solid var(--border2);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 19px;
    }
    .cinfo-label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
    .cinfo-val   { font-size: 15px; font-weight: 600; }
    .cinfo-val a { transition: color .18s; }
    .cinfo-val a:hover { color: var(--green); }
    .cinfo-val-sm { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

    .contact-form {
      overflow: hidden;
      border-radius: var(--r-md);
      box-shadow: 0 4px 32px rgba(0,0,0,.13);
    }
    .wa-head {
      background: #075E54;
      padding: 14px 20px;
      display: flex; align-items: center; gap: 12px;
    }
    .wa-head-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: #fff;
      overflow: hidden; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      padding: 6px;
    }
    .wa-head-avatar img { width: 100%; height: 100%; object-fit: contain; }
    .wa-head-name { font-size: 15px; font-weight: 600; color: #fff; }
    .wa-head-status { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 2px; }
    .wa-body {
      background-color: #ECE5DD;
      background-image: url("../images/wp-arka-plan.jpg");
      background-size: cover;
      background-position: center;
      padding: 16px 16px 12px;
      max-height: 400px;
      overflow-y: auto;
      scroll-behavior: smooth;
    }
    .wa-body::-webkit-scrollbar { width: 4px; }
    .wa-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,.2); border-radius: 4px; }
    .wa-msg { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; }
    .wa-msg-out { display: flex; justify-content: flex-end; margin-bottom: 10px; }
    .wa-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: #fff;
      border: 1px solid rgba(0,0,0,.08);
      overflow: hidden; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      padding: 5px;
    }
    .wa-avatar img { width: 100%; height: 100%; object-fit: contain; }
    .wa-bubble {
      background: #fff;
      border-radius: 0 14px 14px 14px;
      padding: 10px 14px;
      font-size: 14px; font-weight: 400; line-height: 1.6;
      color: var(--dark); max-width: 88%;
      box-shadow: 0 1px 4px rgba(0,0,0,.12);
    }
    .wa-bubble-out {
      background: #DCF8C6;
      border-radius: 14px 0 14px 14px;
      padding: 10px 14px;
      font-size: 14px; color: #111; line-height: 1.4;
      max-width: 80%;
      box-shadow: 0 1px 3px rgba(0,0,0,.10);
    }
    .wa-typing {
      display: flex; align-items: center; gap: 4px;
      background: #fff;
      border-radius: 0 14px 14px 14px;
      padding: 12px 16px;
      box-shadow: 0 1px 4px rgba(0,0,0,.12);
    }
    .wa-typing span {
      width: 7px; height: 7px; border-radius: 50%;
      background: #aaa;
      animation: waDot 1.2s ease-in-out infinite;
    }
    .wa-typing span:nth-child(2) { animation-delay: .2s; }
    .wa-typing span:nth-child(3) { animation-delay: .4s; }
    @keyframes waDot {
      0%,80%,100% { transform: scale(.6); opacity: .4; }
      40%          { transform: scale(1);  opacity: 1; }
    }
    .wa-input-bar {
      background: #F0F0F0;
      padding: 8px 10px;
      display: flex; align-items: center; gap: 8px;
      border-top: 1px solid rgba(0,0,0,.07);
    }
    .wa-emoji-btn { font-size: 22px; flex-shrink: 0; line-height: 1; }
    .wa-input-wrap { flex: 1; min-width: 0; }
    .wa-input-wrap input,
    .wa-input-wrap select {
      width: 100%; border: none;
      border-radius: 20px;
      padding: 10px 16px;
      font-size: 14px; outline: none;
      background: #fff; font-family: inherit;
      color: var(--dark); box-sizing: border-box;
    }
    .wa-input-wrap textarea {
      width: 100%; border: none;
      border-radius: 16px;
      padding: 10px 16px;
      font-size: 14px; outline: none;
      background: #fff; font-family: inherit;
      color: var(--dark); resize: none;
      min-height: 42px; max-height: 100px;
      display: block; box-sizing: border-box;
    }
    .wa-final-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; padding: 10px 16px;
      background: #25D366; color: #fff;
      border: none; border-radius: 20px;
      font-size: 14px; font-weight: 600; font-family: inherit;
      cursor: pointer; transition: background .2s; box-sizing: border-box;
    }
    .wa-final-btn:hover { background: #128C7E; }
    .wa-send-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: #25D366; border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; flex-shrink: 0; transition: background .2s;
    }
    .wa-send-btn:hover { background: #128C7E; }
    .fgroup     { margin-bottom: 14px; }
    .fgroup label {
      display: block; font-size: 11.5px; font-weight: 600;
      color: var(--muted); margin-bottom: 6px; letter-spacing: .02em;
    }
    .fgroup input,
    .fgroup select,
    .fgroup textarea {
      width: 100%; padding: 11px 15px;
      border: 1px solid var(--border2);
      border-radius: var(--r-sm);
      background: var(--bg);
      font-family: inherit; font-size: 14px; color: var(--dark);
      outline: none; transition: border-color .18s, box-shadow .18s;
    }
    .fgroup input:focus,
    .fgroup select:focus,
    .fgroup textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(63,107,55,.1);
    }
    .fgroup textarea { resize: vertical; min-height: 96px; }
    .btn-submit {
      width: 100%; padding: 13px;
      background: var(--dark); color: #fff;
      border: none; border-radius: var(--r-pill);
      font-family: inherit; font-size: 14px; font-weight: 600;
      cursor: pointer; margin-top: 6px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: opacity .18s;
    }
    .btn-submit:hover { opacity: .84; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark2);
      color: rgba(255,255,255,.45);
      text-align: center; padding: 26px 32px;
      font-size: 13px;
    }
    footer strong { color: rgba(255,255,255,.75); }
    footer a      { color: rgba(255,255,255,.45); transition: color .18s; }
    footer a:hover{ color: rgba(255,255,255,.75); }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─── PRODUCT CARD ANIMATION ─── */
    .pcard { transition: transform .22s ease, box-shadow .22s ease, opacity .3s ease; }
    .pcard.gone { display: none; }

    /* ─── TAB FILTER FADE ─── */
    .pcard.fade-out { opacity: 0; transform: scale(.97); }
    .pcard.fade-in  { animation: fadeInCard .28s ease forwards; }
    @keyframes fadeInCard {
      from { opacity: 0; transform: scale(.97); }
      to   { opacity: 1; transform: scale(1); }
    }


    /* ─── HAMBURGER ─── */
    .nav-burger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px; width: 44px; height: 44px;
      background: none; border: none; cursor: pointer;
      border-radius: var(--r-sm); padding: 6px;
    }
    .nav-burger span {
      display: block; width: 22px; height: 2px;
      background: var(--dark); border-radius: 2px;
      transition: transform .22s, opacity .22s;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed; top: 66px; left: 0; right: 0;
      background: rgba(233,228,214,.97);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border2);
      z-index: 199; padding: 16px 20px 24px;
      flex-direction: column; gap: 4px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 16px; font-weight: 500; color: var(--dark);
      padding: 12px 14px; border-radius: var(--r-md);
      transition: background .16s;
      min-height: 48px; display: flex; align-items: center;
    }
    .mobile-menu a:hover { background: rgba(26,23,20,.06); }
    .mobile-menu .menu-wa {
      margin-top: 12px;
      background: #25D366; color: #fff; font-weight: 600;
      justify-content: center; border-radius: var(--r-pill);
    }
    .mobile-menu .menu-wa:hover { background: #20bc5a; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .wrap  { padding: 0 20px; }
      .about-grid    { grid-template-columns: 1fr; gap: 36px; }
      .about-right-col { align-items: flex-start; }
      .about-right-col .belge-row { justify-content: flex-start; }
      .about-photo img { height: 240px; object-position: center; }
      .about-float { display: none; }
      .belge-row img { height: 56px; }
      .cmp-scroll {
        overflow-x: auto; -webkit-overflow-scrolling: touch;
        scrollbar-width: none; -ms-overflow-style: none;
        margin-left: -20px; margin-right: -20px;
        padding-left: 20px; padding-right: 20px;
        padding-bottom: 4px;
      }
      .cmp-scroll::-webkit-scrollbar { display: none; }
      .cmp-table { min-width: 580px; }
      .why-grid      { grid-template-columns: 1fr 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 20px; }
      .kp-wrap       { padding: 60px 0 48px; }
      .kp-hero       { gap: 16px; }
      .kp-row        { gap: 28px; }
      .hero-stats    { gap: 24px; }
      .tab-bar {
        flex-wrap: nowrap;
        overflow-x: auto; overflow-y: hidden;
        scrollbar-width: none; -ms-overflow-style: none;
        padding-bottom: 4px;
        margin-left: -20px; margin-right: -20px;
        padding-left: 20px; padding-right: 20px;
      }
      .tab-bar::-webkit-scrollbar { display: none; }
    }
    @media (max-width: 960px) {
      .hero { padding: 100px 32px 80px; }
      .hero-inner { flex-direction: column; gap: 40px; }
      .hero-offer { width: 100%; flex-direction: row; gap: 12px; }
      .hero-offer-main { flex: 1; padding: 24px 20px; border-radius: 16px; }
      .hero-offer-n { font-size: 60px; }
      .hero-offer-sub-row { flex: 1; border-radius: 16px; flex-direction: column; gap: 12px; padding: 18px 16px; }
    }
    @media (max-width: 600px) {
      .hero { padding: 100px 20px 64px; }
      .hero h1 { font-size: clamp(36px, 10vw, 58px); }
      .hero-stats { gap: 16px; }
      .stat-sep { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .kp-wrap       { padding: 48px 20px 44px; border-radius: var(--r-lg); }
      .kp-hero       { gap: 12px; flex-direction: column; align-items: center; }
      .kp-mid        { align-items: center; }
      .kp-row        { gap: 24px; flex-wrap: wrap; justify-content: center; }
      .kp-vsep       { display: none; }
      .kp-sl         { text-align: center; white-space: normal; }
      .prod-grid { grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); }
      .pcard-img { height: 154px; }
      .cinfo-item { flex-wrap: wrap; }
      .cinfo-item .btn-ghost { margin-left: 0 !important; width: 100%; justify-content: center; }
    }

    /* ── Product Modal ── */
    .pmodal-overlay {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: rgba(26,23,20,.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      align-items: center; justify-content: center; padding: 16px;
    }
    .pmodal-overlay.open { display: flex; animation: pmFade .2s ease; }
    @keyframes pmFade { from{opacity:0} to{opacity:1} }
    .pmodal-box {
      background: #fff; border-radius: 20px; max-width: 760px; width: 100%; max-height: 90vh;
      display: flex; overflow: hidden; position: relative;
      box-shadow: 0 40px 100px rgba(26,23,20,.3);
      animation: pmUp .28s cubic-bezier(.22,.61,.36,1);
    }
    @keyframes pmUp { from{opacity:0;transform:translateY(20px) scale(.97)} to{opacity:1;transform:none} }
    .pmodal-close {
      position: absolute; top: 14px; right: 14px; z-index: 10;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid rgba(26,23,20,.15); background: #fff;
      font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
      color: var(--dark); transition: background .15s, color .15s;
    }
    .pmodal-close:hover { background: var(--dark); color: #fff; }
    .pmodal-left {
      width: 42%; flex-shrink: 0; background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      padding: 50px 24px; position: relative; min-height: 340px;
    }
    .pmodal-left img { max-width: 100%; max-height: 240px; object-fit: contain; }
    .pmodal-lbadge {
      position: absolute; top: 16px; left: 16px;
      font-size: 9.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px;
    }
    .pmodal-lbadge.green { background: var(--green); color: #fff; }
    .pmodal-lbadge.red   { background: #C0392B; color: #fff; }
    .pmodal-right {
      flex: 1; padding: 40px 32px 36px; overflow-y: auto;
      display: flex; flex-direction: column;
    }
    .pmodal-cat {
      display: inline-block; font-size: 10px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      color: #C0392B; background: rgba(192,57,43,.09);
      padding: 4px 11px; border-radius: 20px; margin-bottom: 12px; align-self: flex-start;
    }
    .pmodal-title {
      font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700;
      color: var(--dark); margin-bottom: 10px; line-height: 1.2;
    }
    .pmodal-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
    .pmodal-feats { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 9px; }
    .pmodal-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--dark); font-weight: 500; }
    .pmodal-feat-icon {
      width: 20px; height: 20px; border-radius: 50%;
      background: rgba(192,57,43,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .pmodal-feat-icon svg { width:11px; height:11px; }
    .pmodal-actions { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
    .pmodal-btn-ag {
      flex: 1; min-width: 160px; text-align: center;
      padding: 13px 18px; border-radius: 50px; background: #C0392B; color: #fff;
      font-size: 13px; font-weight: 700; text-decoration: none;
      display: flex; align-items: center; justify-content: center; gap: 7px;
      transition: opacity .2s;
    }
    .pmodal-btn-ag:hover { opacity: .85; }
    .pmodal-btn-teklif {
      flex: 1; min-width: 110px; text-align: center;
      padding: 13px 18px; border-radius: 50px;
      border: 1.5px solid rgba(26,23,20,.15); background: #fff;
      color: var(--dark); font-size: 13px; font-weight: 600; text-decoration: none;
      transition: background .15s;
    }
    .pmodal-btn-teklif:hover { background: var(--bg); }
    @media (max-width: 600px) {
      .pmodal-box { flex-direction: column; max-height: 95vh; }
      .pmodal-left { width: 100%; padding: 28px 20px; min-height: unset; max-height: 180px; }
      .pmodal-left img { max-height: 140px; }
      .pmodal-right { padding: 20px 20px 24px; }
      .pmodal-title { font-size: 1.35rem; }
      .pmodal-actions { flex-direction: column; }
    }

    /* ── Image Lightbox Modal ── */
    .wa-head-avatar img, .wa-avatar img { cursor: pointer; }
    .imodal-overlay {
      display: none; position: fixed; inset: 0; z-index: 9100;
      background: rgba(26,23,20,.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      align-items: center; justify-content: center; padding: 24px;
    }
    .imodal-overlay.open { display: flex; animation: pmFade .2s ease; }
    .imodal-box {
      position: relative; max-width: 90vw; max-height: 90vh;
      animation: pmUp .28s cubic-bezier(.22,.61,.36,1);
    }
    .imodal-box img {
      display: block; max-width: 90vw; max-height: 90vh;
      border-radius: 16px; background: #fff;
      box-shadow: 0 40px 100px rgba(26,23,20,.4);
    }
    .imodal-close {
      position: absolute; top: -14px; right: -14px; z-index: 10;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1.5px solid rgba(26,23,20,.15); background: #fff;
      font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
      color: var(--dark); transition: background .15s, color .15s;
    }
    .imodal-close:hover { background: var(--dark); color: #fff; }