:root{
    --navy:#122C45;
    --blue:#1B5A96;
    --blue-light:#4D86BE;
    --red:#E0382C;
    --bg:#F6F7F9;
    --paper:#FFFFFF;
    --steel:#5C6B7A;
    --line:#DDE3E9;
    --display: 'Big Shoulders', sans-serif;
    --body: 'IBM Plex Sans', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  section[id], #top{scroll-margin-top:90px;}
  body{
    font-family:var(--body);
    background:var(--bg);
    color:var(--navy);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  :focus-visible{outline:3px solid var(--red); outline-offset:3px;}

  .wrap{max-width:1180px; margin:0 auto; padding:0 28px;}

  .eyebrow{
    font-family:var(--mono);
    font-size:0.78rem;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--red);
    font-weight:500;
  }
  .question-mark{
    display:inline-flex; align-items:center; justify-content:center;
    width:18px; height:18px; border-radius:50%; background:var(--blue); color:#fff;
    font-family:var(--mono); font-size:0.7rem; font-weight:700; letter-spacing:0;
    vertical-align:middle; margin-left:4px;
  }

  h1,h2,h3{
    font-family:var(--display);
    font-weight:700;
    letter-spacing:0.01em;
    color:var(--navy);
    text-transform:uppercase;
  }

  /* ---------- HEADER ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(246,247,249,0.92);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 0;
  }
  .brand{display:flex; align-items:center; gap:12px; text-decoration:none; cursor:pointer;}
  .brand img{height:52px; width:auto;}
  .brand-text{font-family:var(--display); font-weight:700; font-size:1.05rem; color:var(--navy); line-height:1.1; text-transform:uppercase;}
  .brand-text span{display:block; font-family:var(--mono); font-size:0.62rem; font-weight:500; color:var(--steel); letter-spacing:0.08em; text-transform:none;}

  nav.links{display:flex; gap:34px; align-items:center;}
  nav.links a{
    font-family:var(--mono); font-size:0.82rem; letter-spacing:0.04em;
    color:var(--navy); position:relative; padding:4px 0;
  }
  nav.links a::after{
    content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--red);
    transition:width .25s ease;
  }
  nav.links a:hover::after{width:100%;}
  .nav-cta{
    font-family:var(--mono); font-size:0.82rem; font-weight:500;
    background:var(--navy); color:#fff; padding:10px 18px; border-radius:2px;
    letter-spacing:0.03em;
  }
  .nav-cta:hover{background:var(--red);}
  .menu-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px;}
  .menu-toggle span{width:24px; height:2px; background:var(--navy); display:block;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:90px 0 70px;
    overflow:hidden;
    text-align:center;
  }
  .hero-bg{position:absolute; inset:0; z-index:0;}
  .hero-slide{
    position:absolute; inset:0;
    background-size:cover; background-position:center;
    opacity:0;
    animation:heroFade 60s infinite;
  }
  .hero-slide:nth-child(1){animation-delay:0s;}
  .hero-slide:nth-child(2){animation-delay:5s;}
  .hero-slide:nth-child(3){animation-delay:10s;}
  .hero-slide:nth-child(4){animation-delay:15s;}
  .hero-slide:nth-child(5){animation-delay:20s;}
  .hero-slide:nth-child(6){animation-delay:25s;}
  .hero-slide:nth-child(7){animation-delay:30s;}
  .hero-slide:nth-child(8){animation-delay:35s;}
  .hero-slide:nth-child(9){animation-delay:40s;}
  .hero-slide:nth-child(10){animation-delay:45s;}
  .hero-slide:nth-child(11){animation-delay:50s;}
  .hero-slide:nth-child(12){animation-delay:55s;}
  @keyframes heroFade{
    0%{opacity:0;}
    1.7%{opacity:1;}
    7.5%{opacity:1;}
    10%{opacity:0;}
    100%{opacity:0;}
  }
  .hero-overlay{
    position:absolute; inset:0; z-index:1;
    background:linear-gradient(180deg, rgba(18,44,69,0.80) 0%, rgba(18,44,69,0.66) 45%, rgba(18,44,69,0.88) 100%);
  }
  .hero .wrap{position:relative; z-index:2;}
  .hero h1{color:#fff;}
  .hero p.lead{color:#E4EAF0;}
  .hero .btn-outline{border-color:#fff; color:#fff;}
  .hero .btn-outline:hover{background:#fff; color:var(--navy);}
  @media (prefers-reduced-motion: reduce){
    .hero-slide{animation:none; opacity:0;}
    .hero-slide:first-child{opacity:1;}
  }
  .hero-grid{
    display:grid; grid-template-columns:1fr; gap:50px; align-items:center;
    justify-content:center;
  }
  .hero h1{
    font-size:clamp(2.4rem, 5vw, 3.6rem);
    line-height:1.04;
    margin:14px auto 22px;
    max-width:900px;
  }
  .hero h1 .accent{color:var(--red);}
  .hero p.lead{
    font-size:1.08rem; color:var(--steel); max-width:680px; margin:0 auto 32px;
  }
  .btn-row{display:flex; gap:16px; flex-wrap:wrap; margin-top:8px; justify-content:center;}
  .btn{
    font-family:var(--mono); font-size:0.85rem; letter-spacing:0.03em;
    padding:14px 26px; border-radius:2px; font-weight:500;
    display:inline-flex; align-items:center; gap:10px;
  }
  .btn-primary{background:var(--red); color:#fff;}
  .btn-primary:hover{background:#c12d23;}
  .btn-outline{border:1.5px solid var(--navy); color:var(--navy);}
  .btn-outline:hover{background:var(--navy); color:#fff;}

  .hero-art{position:relative; height:420px;}
  .hero-art svg{width:100%; height:100%;}

  .stat-strip{
    display:flex; gap:14px; margin-top:56px;
    flex-wrap:wrap; justify-content:center; max-width:620px; margin-left:auto; margin-right:auto;
  }
  .stat{
    flex:1; min-width:118px; max-width:168px; text-align:center;
    background:rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.24); border-radius:6px;
    padding:14px 10px 12px; backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
    transition:transform .2s ease, background .2s ease;
  }
  .stat:hover{transform:translateY(-3px); background:rgba(255,255,255,0.18);}
  .stat .stat-icon{
    width:24px; height:24px; border-radius:50%; background:rgba(255,255,255,0.16);
    display:flex; align-items:center; justify-content:center; margin:0 auto 6px;
    color:#fff;
  }
  .stat .stat-icon svg{width:12px; height:12px;}
  .stat .num{font-family:var(--display); font-size:1.2rem; font-weight:700; color:#fff; line-height:1;}
  .stat .label{font-family:var(--mono); font-size:0.56rem; color:rgba(255,255,255,0.8); letter-spacing:0.02em; margin-top:3px; display:block;}

  /* ---------- SECTION GENERIC ---------- */
  section{padding:88px 0;}
  .section-head{max-width:640px; margin-bottom:48px;}
  .section-head h2{font-size:clamp(1.8rem,3.4vw,2.5rem); margin-top:10px;}
  .section-head p{color:var(--steel); margin-top:14px; font-size:1.02rem;}

  /* ---------- PILLARS ---------- */
  .pillars-wrap{position:relative;}
  .flow-line{position:absolute; top:60px; left:0; width:100%; height:calc(100% - 60px); z-index:0; opacity:0.55;}
  .pillars{
    display:grid; grid-template-columns:repeat(3,1fr); gap:28px; position:relative; z-index:1;
  }
  .pillar{
    background:var(--paper); border:1px solid var(--line); border-radius:4px;
    padding:32px 28px; position:relative; overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .pillar:hover{transform:translateY(-6px); box-shadow:0 18px 40px rgba(18,44,69,0.1);}
  .pillar .tag{
    font-family:var(--mono); font-size:0.7rem; color:#fff; background:var(--blue);
    display:inline-block; padding:5px 10px; border-radius:2px; letter-spacing:0.05em; margin-bottom:18px;
  }
  .pillar.industrial .tag{background:var(--navy);}
  .pillar.projects .tag{background:var(--red);}
  .pillar h3{font-size:1.3rem; margin-bottom:12px; line-height:1.15;}
  .pillar p{color:var(--steel); font-size:0.95rem; margin-bottom:18px;}
  .pillar ul{list-style:none; display:flex; flex-direction:column; gap:8px;}
  .pillar li{
    font-family:var(--mono); font-size:0.8rem; color:var(--navy);
    padding-left:16px; position:relative;
  }
  .pillar li::before{content:"—"; position:absolute; left:0; color:var(--red);}

  /* ---------- BRANDS ---------- */
  .brands{background:var(--navy); color:#fff;}
  .brands .section-head h2{color:#fff;}
  .brands .section-head p{color:#AEC2D6;}
  .brand-strip{
    display:flex; flex-wrap:wrap; gap:16px;
  }
  .brand-chip{
    border:1px solid rgba(255,255,255,0.22);
    padding:18px 26px; border-radius:2px;
    font-family:var(--display); font-weight:700; font-size:1.15rem; letter-spacing:0.02em;
    text-transform:uppercase; color:#fff;
    flex:1; min-width:200px; text-align:center;
    background:rgba(255,255,255,0.03);
  }
  .brand-chip span{display:block; font-family:var(--mono); font-size:0.65rem; font-weight:500; text-transform:none; color:#9FB6CC; margin-top:6px; letter-spacing:0.04em;}

  .partner-grid{
    display:grid; grid-template-columns:repeat(5,1fr); gap:14px;
  }
  .partner-chip{
    background:#fff;
    padding:14px 16px; border-radius:4px;
    height:80px;
    border:1px solid rgba(18,44,69,0.08);
    box-shadow:0 1px 3px rgba(18,44,69,0.05);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--display); font-weight:700; font-size:1rem; letter-spacing:0.01em;
    text-transform:uppercase; color:var(--navy); text-align:center;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .partner-chip img{max-height:52px; max-width:100%; width:auto; object-fit:contain;}
  .partner-chip.chip-full{padding:0; background:transparent; overflow:hidden; border-radius:4px; border:none;}
  .partner-chip.chip-full img{max-height:none; height:100%; width:100%; object-fit:cover;}
  .partner-chip:hover{transform:translateY(-3px); box-shadow:0 10px 24px rgba(0,0,0,0.25);}
  #clienti .partner-chip{padding:12px 18px;}
  #clienti .partner-chip img{max-height:58px;}
  .client-placeholder{color:var(--line); background:var(--bg);}
  .client-placeholder svg{width:26px; height:26px;}

  .projects-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .project-tile{
    background:#fff; border-radius:6px; overflow:hidden;
    border:1px solid rgba(18,44,69,0.08);
    box-shadow:0 1px 3px rgba(18,44,69,0.05);
    transition:transform .2s ease, box-shadow .2s ease;
    display:flex; flex-direction:column;
  }
  .project-tile:hover{transform:translateY(-4px); box-shadow:0 10px 24px rgba(18,44,69,0.12);}
  .project-photo{
    aspect-ratio:4/3; background:var(--bg);
    display:flex; align-items:center; justify-content:center;
    color:var(--line); border-bottom:1px solid rgba(18,44,69,0.08);
    overflow:hidden; position:relative;
  }
  .project-photo svg{width:38px; height:38px;}
  .project-photo img{width:100%; height:100%; object-fit:cover; display:block;}
  .project-slide{position:absolute; inset:0; opacity:0; transition:opacity .8s ease;}
  .project-slide.active{opacity:1;}
  @media (prefers-reduced-motion: reduce){
    .project-slide{transition:none;}
  }
  .project-body{padding:16px 18px 18px; flex:1; display:flex; flex-direction:column;}
  .project-body .ptag{font-family:var(--mono); font-size:0.68rem; color:var(--red); text-transform:uppercase; letter-spacing:0.05em;}
  .project-body h4{font-family:var(--display); font-weight:700; font-size:1.1rem; margin:6px 0 8px; color:var(--navy); text-transform:none; letter-spacing:0;}
  .project-body p{color:var(--steel); font-size:0.92rem; line-height:1.5; margin:0;}
  .project-body p a{color:var(--red); text-decoration:underline; text-underline-offset:2px;}
  .project-body p a:hover{color:#c12d23;}
  @media (max-width:900px){
    .projects-grid{grid-template-columns:repeat(2,1fr);}
    .partner-grid{grid-template-columns:repeat(3,1fr);}
  }
  @media (max-width:560px){
    .projects-grid{grid-template-columns:1fr;}
  }

  @media (max-width:560px){
    .partner-grid{grid-template-columns:repeat(2,1fr);}
  }

  /* ---------- PROCESS ---------- */
  .process-list{display:flex; flex-direction:column;}
  .process-item{
    display:grid; grid-template-columns:90px 1fr; gap:24px;
    padding:28px 0; border-bottom:1px solid var(--line);
  }
  .process-item:first-child{border-top:1px solid var(--line);}
  .process-num{font-family:var(--display); font-size:2.4rem; font-weight:700; color:var(--blue); line-height:1;}
  .process-body h3{font-size:1.15rem; margin-bottom:6px; text-transform:none; font-family:var(--body); font-weight:600;}
  .process-body p{color:var(--steel); font-size:0.95rem; max-width:600px;}

  /* ---------- CONTACT ---------- */
  .contact{background:var(--paper);}
  .contact-layout{
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:40px; align-items:start;
  }
  .contact-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:20px;
  }
  .contact-card{
    border:1px solid var(--line); border-radius:4px; padding:30px;
    background:var(--bg);
  }
  .contact-card .tag{
    font-family:var(--mono); font-size:0.7rem; color:var(--red); letter-spacing:0.06em; text-transform:uppercase; font-weight:500;
  }
  .contact-card h3{font-size:1.2rem; margin:10px 0 16px; text-transform:none; font-family:var(--body); font-weight:600;}
  .contact-card address{font-style:normal; color:var(--steel); line-height:1.7; font-size:0.95rem;}
  .contact-direct{
    margin-top:28px; display:flex; gap:18px; flex-wrap:wrap;
  }
  .contact-direct a{
    font-family:var(--mono); font-size:0.9rem; color:var(--navy); border-bottom:1.5px solid var(--red); padding-bottom:3px;
  }
  .contact-card-map{
    margin-top:18px; border-radius:5px; overflow:hidden; border:1px solid var(--line);
    aspect-ratio:4/3;
  }
  .contact-card-map iframe{width:100%; height:100%; border:0; display:block;}
  .contact-map-link{
    display:inline-block; margin-top:10px; font-family:var(--mono); font-size:0.82rem;
    color:var(--blue);
  }
  .contact-map-link:hover{color:var(--red);}

  .contact-form-wrap{
    background:var(--bg); border:1px solid var(--line); border-radius:8px; padding:30px;
  }
  .contact-form-wrap h3{font-size:1.2rem; font-weight:600; margin-bottom:8px;}
  .contact-form-hint{color:var(--steel); font-size:0.92rem; margin-bottom:20px;}
  .contact-form{display:flex; flex-direction:column; gap:14px;}
  .contact-form label{
    display:flex; flex-direction:column; gap:6px; font-family:var(--mono);
    font-size:0.72rem; color:var(--steel); text-transform:uppercase; letter-spacing:0.04em;
  }
  .field-optional{text-transform:none; font-weight:400; letter-spacing:0; color:#98A5B3;}
  .contact-form input, .contact-form textarea{
    font-family:var(--body); font-size:0.95rem; color:var(--navy);
    border:1.5px solid var(--line); border-radius:5px; padding:11px 13px;
    background:var(--paper); outline:none; transition:border-color .2s ease;
    resize:vertical;
  }
  .contact-form input:focus, .contact-form textarea:focus{border-color:var(--navy);}
  .contact-submit-btn{
    margin-top:6px; background:var(--red); color:#fff; border:none; border-radius:5px;
    padding:13px 18px; font-family:var(--body); font-weight:600; font-size:0.95rem;
    cursor:pointer; transition:background .2s ease;
  }
  .contact-submit-btn:hover{background:#c12d23;}
  .contact-submit-btn:disabled{background:var(--steel); cursor:not-allowed;}
  .contact-form-status{font-size:0.88rem; margin-top:2px;}
  .contact-form-status.success{color:#1a7a3c;}
  .contact-form-status.error{color:var(--red);}

  @media (max-width:900px){
    .contact-layout{grid-template-columns:1fr;}
  }

  footer{
    background:var(--navy); color:#9FB6CC; padding:36px 0; font-family:var(--mono); font-size:0.78rem;
  }
  .footer-row{display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;}

  [data-reveal]{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
  [data-reveal].in{opacity:1; transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    [data-reveal]{opacity:1; transform:none; transition:none;}
    html{scroll-behavior:auto;}
  }

  @media (max-width: 900px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-art{height:300px; order:-1;}
    .pillars{grid-template-columns:1fr;}
    .contact-grid{grid-template-columns:1fr;}
    nav.links{display:none;}
    .menu-toggle{display:flex;}
    .nav-cta{display:none;}
  }
  @media (max-width: 900px){
    nav.links.open{
      display:flex; position:absolute; top:100%; left:0; right:0;
      background:var(--paper); flex-direction:column; padding:18px 28px; gap:18px;
      border-bottom:1px solid var(--line);
    }
  }
  /* ---------- PRODUCT CATALOG ---------- */
  .cat-group{margin-bottom:52px;}
  .cat-title{
    display:flex; align-items:baseline; gap:14px; margin-bottom:22px;
    font-size:1.3rem; padding-bottom:10px; border-bottom:1px solid var(--line);
  }
  .cat-title .cat-count{
    font-family:var(--mono); font-size:0.75rem; color:var(--steel); text-transform:none; font-weight:500;
  }
  .catalog-grid{
    display:grid; grid-template-columns:repeat(auto-fill, minmax(190px, 1fr)); gap:20px;
  }
  .product-card{
    background:var(--paper); border:1px solid var(--line); border-radius:4px;
    padding:22px 20px; display:flex; flex-direction:column; gap:10px;
    transition:transform .2s ease, box-shadow .2s ease;
    min-width:0;
  }
  .product-card .card-thumb{
    margin:-22px -20px 4px -20px;
    height:148px;
    background:var(--bg);
    border-radius:4px 4px 0 0;
    overflow:hidden;
    display:flex; align-items:center; justify-content:center;
  }
  .product-card .card-thumb img{width:100%; height:100%; object-fit:cover; display:block;}
  .product-card .card-thumb.placeholder{color:var(--line);}
  .product-card .card-thumb.placeholder svg{width:30px; height:30px;}
  .card-thumb.project-icon{color:var(--navy);}
  .card-thumb.project-icon svg{width:56px; height:56px;}
  .card-thumb.project-icon.ic-line{background:#E9F1F8;}
  .card-thumb.project-icon.ic-commission{background:#FBEBEA; color:var(--red);}
  .card-thumb.project-icon.ic-consult{background:#EDF0F4;}
  .card-thumb.project-icon.ic-maintenance{background:#EAF3EF; color:#1F7A5C;}
  .product-card:hover{transform:translateY(-4px); box-shadow:0 14px 30px rgba(18,44,69,0.09);}
  .product-card .ptag{
    font-family:var(--mono); font-size:0.65rem; color:var(--blue); letter-spacing:0.05em; text-transform:uppercase; font-weight:500;
  }
  .product-card h4{
    font-family:var(--body); font-weight:600; text-transform:none; font-size:1rem; line-height:1.3; color:var(--navy);
  }
  .product-card p{font-size:0.85rem; color:var(--steel); flex:1;}
  .product-card .price{
    font-family:var(--mono); font-weight:500; font-size:1.05rem; color:var(--red);
    border-top:1px solid var(--line); padding-top:10px; margin-top:4px;
  }
  .add-cart-btn{
    font-family:var(--mono); font-size:0.75rem; font-weight:500; letter-spacing:0.02em;
    background:var(--navy); color:#fff; border:none; border-radius:2px;
    padding:9px 10px; cursor:pointer; margin-top:6px; transition:background .2s ease;
  }
  .add-cart-btn:hover{background:var(--red);}
  .add-cart-btn.added{background:#2E8B57;}
  .project-contact{display:flex; flex-direction:column; gap:6px; margin-top:8px;}
  .project-contact a{
    font-family:var(--mono); font-size:0.78rem; color:var(--navy);
    border-bottom:1px solid var(--line); padding-bottom:4px; text-decoration:none;
  }
  .project-contact a:hover{color:var(--red); border-color:var(--red);}
  .catalog-note{
    font-family:var(--mono); font-size:0.78rem; color:var(--steel); margin-top:-10px; margin-bottom:40px;
  }
  @media (max-width:900px){
    .catalog-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width:560px){
    .catalog-grid{grid-template-columns:1fr;}
  }
  /* ---------- ACCORDION CATEGORIES ---------- */
  .cat-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; align-items:start;
  }
  .cat-card{
    background:var(--paper); border:1px solid var(--line); border-radius:4px;
    margin-bottom:0; overflow:hidden;
  }
  .cat-card.open{grid-column:1 / -1;}
  @media (max-width:980px){
    .cat-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width:600px){
    .cat-grid{grid-template-columns:1fr;}
  }
  .cat-toggle{
    width:100%; display:flex; align-items:center; justify-content:space-between;
    gap:20px; padding:26px 28px; background:none; border:none; cursor:pointer; text-align:left;
  }
  .cat-toggle-left{display:flex; align-items:baseline; gap:18px;}
  .cat-toggle .cat-num{font-family:var(--display); font-size:1.5rem; font-weight:700; color:var(--blue); line-height:1;}
  .cat-toggle h3{font-size:1.25rem; margin:0; line-height:1.2;}
  .cat-toggle .cat-sub{
    display:block; font-family:var(--mono); font-size:0.7rem; color:var(--steel); text-transform:none;
    letter-spacing:0.02em; margin-top:4px; font-weight:500;
  }
  .cat-icon{
    width:38px; height:38px; min-width:38px; border-radius:50%; border:1.5px solid var(--line);
    display:flex; align-items:center; justify-content:center; color:var(--navy);
    transition:background .25s ease, color .25s ease, border-color .25s ease;
  }
  .cat-icon svg{width:15px; height:15px; transition:transform .35s ease;}
  .cat-card.open .cat-icon{background:var(--navy); border-color:var(--navy); color:#fff;}
  .cat-card.open .cat-icon svg{transform:rotate(180deg);}
  .cat-toggle:hover .cat-icon{border-color:var(--navy); color:var(--navy);}
  .cat-card.open .cat-toggle:hover .cat-icon{background:var(--red); border-color:var(--red); color:#fff;}
  .cat-panel{max-height:0; overflow:hidden; transition:max-height .45s ease;}
  .cat-panel-inner{padding:0 28px 38px;}
  .cat-panel-inner .catalog-note{margin-top:0;}

  /* ---------- PRODUSE LAYOUT (sidebar + main) ---------- */
  .produse-layout{
    display:flex; align-items:flex-start; gap:28px; margin-top:8px;
  }
  .produse-sidebar{
    width:270px; flex-shrink:0; position:sticky; top:96px;
    max-height:calc(100vh - 116px); display:flex; flex-direction:column;
    background:var(--paper); border:1px solid var(--line); border-radius:8px;
    overflow:hidden;
  }
  .pnav-search{
    display:flex; align-items:center; gap:8px; padding:12px 14px;
    border-bottom:1px solid var(--line); flex-shrink:0;
  }
  .pnav-search svg{width:16px; height:16px; color:var(--steel); flex-shrink:0;}
  .pnav-search input{
    border:none; outline:none; font-family:var(--body); font-size:0.88rem;
    width:100%; background:none; color:var(--navy);
  }
  .pnav-search input::placeholder{color:var(--steel);}
  .pnav-tree{overflow-y:auto; padding:6px 0 12px;}
  .pnav-brand{border-bottom:1px solid var(--line);}
  .pnav-brand:last-child{border-bottom:none;}
  .pnav-brand-btn{
    width:100%; display:flex; align-items:center; justify-content:space-between;
    gap:8px; padding:11px 14px; background:none; border:none; cursor:pointer;
    text-align:left; font-family:var(--body); font-weight:600; font-size:0.86rem; color:var(--navy);
  }
  .pnav-brand-btn:hover{color:var(--blue);}
  .pnav-brand-btn svg{width:14px; height:14px; flex-shrink:0; transition:transform .2s ease; color:var(--steel);}
  .pnav-brand.open .pnav-brand-btn svg{transform:rotate(180deg);}
  .pnav-cats{max-height:0; overflow:hidden; transition:max-height .25s ease;}
  .pnav-brand.open .pnav-cats{max-height:1000px;}
  .pnav-cat-btn{
    width:100%; display:block; text-align:left; padding:8px 14px 8px 30px;
    background:none; border:none; cursor:pointer; font-family:var(--body);
    font-size:0.82rem; color:var(--steel); line-height:1.35; border-left:2px solid transparent;
  }
  .pnav-cat-btn:hover{color:var(--blue); background:var(--bg);}
  .pnav-cat-btn.active{color:var(--red); border-left-color:var(--red); background:var(--bg); font-weight:600;}
  .pnav-empty{padding:14px; font-size:0.82rem; color:var(--steel);}
  .produse-main{min-width:0; flex:1;}

  @media (max-width:980px){
    .produse-layout{display:block;}
    .produse-sidebar{
      width:100%; position:static; max-height:none; margin-bottom:22px;
    }
    .pnav-tree{max-height:340px;}
  }

  /* ---------- BRAND ACCORDION ---------- */
  .brand-grid{
    display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; align-items:start; margin-bottom:16px;
  }
  .brand-card{
    background:var(--paper); border:1px solid var(--line); border-radius:6px;
    border-top:3px solid var(--navy); overflow:hidden;
    transition:box-shadow .25s ease;
  }
  .brand-card.open{grid-column:1 / -1; box-shadow:0 18px 40px rgba(18,44,69,0.08);}
  .brand-card.pending{border-top-color:var(--line);}
  @media (max-width:980px){
    .brand-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width:600px){
    .brand-grid{grid-template-columns:1fr;}
  }
  .brand-toggle{
    width:100%; display:flex; align-items:center; justify-content:space-between;
    gap:16px; padding:20px 24px; background:none; border:none; cursor:pointer; text-align:left;
  }
  .brand-toggle-left{display:flex; align-items:center; gap:16px;}
  .brand-badge{
    width:58px; height:58px; min-width:58px; border-radius:50%;
    background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center;
    font-family:var(--display); font-weight:700; font-size:0.9rem; letter-spacing:0.01em;
    overflow:hidden;
  }
  .brand-card.pending .brand-badge{background:var(--bg); color:var(--steel); border:1.5px dashed var(--line);}
  .brand-badge-img{background:#fff; border:1px solid var(--line); padding:3px; border-radius:50%; overflow:hidden;}
  .brand-badge-img img{width:100%; height:100%; object-fit:contain; display:block; border-radius:50%;}
  .brand-toggle h3{font-size:1.08rem; margin:0; line-height:1.2;}
  .brand-sub{
    display:block; font-family:var(--mono); font-size:0.66rem; color:var(--steel); text-transform:none;
    letter-spacing:0.01em; margin-top:4px; font-weight:500;
  }
  .brand-meta{display:flex; align-items:center; gap:14px;}
  .brand-count{
    font-family:var(--mono); font-size:0.66rem; color:var(--blue); letter-spacing:0.03em; white-space:nowrap;
  }
  .brand-count.pending{color:var(--steel);}
  .brand-card.open .brand-toggle .cat-icon{background:var(--navy); border-color:var(--navy); color:#fff;}
  .brand-card.open .brand-toggle .cat-icon svg{transform:rotate(180deg);}
  .brand-toggle:hover .cat-icon{border-color:var(--navy); color:var(--navy);}
  .brand-panel{max-height:0; overflow:hidden; transition:max-height .45s ease;}
  .brand-panel-inner{padding:0 22px 32px;}
  .brand-panel-inner .cat-grid{margin-top:4px;}
  .brand-panel-inner .catalog-note{margin-top:0;}
  /* ---------- ABOUT ---------- */
  .about-wrap{
    display:grid; grid-template-columns:0.85fr 1.15fr; gap:56px; align-items:start;
  }
  .about-intro h2{font-size:clamp(1.8rem,3.4vw,2.4rem); margin-top:10px; line-height:1.12;}
  .about-founded{
    display:inline-flex; align-items:center; gap:10px; margin-top:22px;
    font-family:var(--mono); font-size:0.8rem; color:var(--steel); letter-spacing:0.02em;
  }
  .about-founded .num{font-family:var(--display); font-weight:700; font-size:1.6rem; color:var(--blue);}
  .about-body p{color:var(--steel); font-size:1rem; margin-bottom:18px; max-width:680px; text-align:justify;}
  .about-body h3{
    font-family:var(--body); font-weight:600; text-transform:none; font-size:1.05rem;
    color:var(--navy); margin:30px 0 12px;
  }
  .about-body h3:first-child{margin-top:0;}
  @media (max-width:900px){
    .about-wrap{grid-template-columns:1fr;}
  }
  /* ---------- CART ---------- */
  .cart-btn{
    position:relative; display:flex; align-items:center; gap:8px;
    background:var(--navy); color:#fff; border:none; border-radius:2px;
    padding:10px 16px; cursor:pointer; font-family:var(--mono); font-size:0.82rem;
    font-weight:500; letter-spacing:0.03em;
  }
  .cart-btn:hover{background:var(--red);}
  .cart-btn svg{width:18px; height:18px; flex-shrink:0;}
  .cart-badge{
    position:absolute; top:-7px; right:-7px; background:var(--red); color:#fff;
    font-family:var(--mono); font-size:0.68rem; font-weight:700;
    min-width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    padding:0 3px;
  }
  .cart-overlay{
    position:fixed; inset:0; background:rgba(18,44,69,0.45); z-index:90;
    opacity:0; pointer-events:none; transition:opacity .25s ease;
  }
  .cart-overlay.open{opacity:1; pointer-events:auto;}
  .cart-panel{
    position:fixed; top:0; right:0; height:100%; width:380px; max-width:92vw;
    background:var(--bg); z-index:91; box-shadow:-12px 0 30px rgba(0,0,0,0.18);
    transform:translateX(100%); transition:transform .3s ease;
    display:flex; flex-direction:column;
  }
  .cart-panel.open{transform:translateX(0);}
  .cart-header{
    display:flex; align-items:center; justify-content:space-between;
    padding:22px 24px; border-bottom:1px solid var(--line); background:var(--paper);
  }
  .cart-header h3{font-size:1.1rem; margin:0; text-transform:none; font-family:var(--body); font-weight:600;}
  .cart-close{background:none; border:none; font-size:1.4rem; line-height:1; cursor:pointer; color:var(--steel);}
  .cart-close:hover{color:var(--red);}
  .cart-items{flex:1; overflow-y:auto; padding:18px 24px;}
  .cart-empty{color:var(--steel); font-family:var(--mono); font-size:0.85rem; text-align:center; margin-top:40px;}
  .cart-item{
    display:flex; justify-content:space-between; align-items:flex-start; gap:10px;
    padding:14px 0; border-bottom:1px solid var(--line);
  }
  .cart-item .ci-name{font-size:0.92rem; color:var(--navy); font-weight:600; line-height:1.3;}
  .cart-item .ci-price{font-family:var(--mono); font-size:0.8rem; color:var(--steel); margin-top:4px;}
  .cart-item .ci-qty{
    display:flex; align-items:center; gap:8px; margin-top:8px; font-family:var(--mono); font-size:0.82rem;
  }
  .cart-item .ci-qty button{
    width:22px; height:22px; border:1px solid var(--line); background:#fff; cursor:pointer; border-radius:2px;
    font-size:0.85rem; line-height:1;
  }
  .cart-item .ci-remove{
    background:none; border:none; color:var(--steel); font-family:var(--mono); font-size:0.72rem;
    cursor:pointer; text-decoration:underline; padding:0;
  }
  .cart-item .ci-remove:hover{color:var(--red);}
  .cart-footer{padding:20px 24px; border-top:1px solid var(--line); background:var(--paper);}
  .cart-footer p{font-family:var(--mono); font-size:0.74rem; color:var(--steel); margin-bottom:14px;}
  .cart-send-btn{
    width:100%; background:#25D366; color:#fff; border:none; border-radius:2px;
    padding:14px; font-family:var(--mono); font-weight:600; font-size:0.88rem; cursor:pointer;
    display:flex; align-items:center; justify-content:center; gap:10px;
  }
  .cart-send-btn:hover{background:#1ebc59;}
  .cart-send-btn:disabled{background:#AAB4BC; cursor:not-allowed;}
  /* ---------- SEARCH ---------- */
  .search-btn{
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px; border-radius:2px; border:1.5px solid var(--line);
    background:#fff; color:var(--navy); cursor:pointer; transition:border-color .2s ease, color .2s ease;
  }
  .search-btn svg{width:18px; height:18px;}
  .search-btn:hover{border-color:var(--red); color:var(--red);}
  .search-wrap{position:relative;}
  .search-panel{
    position:absolute; top:calc(100% + 12px); right:0; z-index:80;
    width:380px; max-width:min(90vw, 380px);
    background:var(--paper); border:1px solid var(--line); border-radius:10px;
    box-shadow:0 20px 45px rgba(18,44,69,0.18);
    transform:translateY(-6px); opacity:0; transition:transform .2s ease, opacity .2s ease;
    pointer-events:none; padding:14px;
  }
  .search-panel.open{transform:translateY(0); opacity:1; pointer-events:auto;}
  .search-box{
    display:flex; align-items:center; gap:10px; border:1.5px solid var(--navy);
    border-radius:6px; padding:10px 12px;
  }
  .search-box svg{width:16px; height:16px; color:var(--steel); flex-shrink:0;}
  .search-box input{
    flex:1; border:none; outline:none; font-family:var(--body); font-size:0.92rem; color:var(--navy); background:transparent;
  }
  .search-close{background:none; border:none; font-size:1.3rem; line-height:1; cursor:pointer; color:var(--steel);}
  .search-close:hover{color:var(--red);}
  .search-results{margin-top:10px; max-height:min(60vh, 380px); overflow-y:auto;}
  .search-hint{font-family:var(--mono); font-size:0.78rem; color:var(--steel); padding:8px 4px;}
  .search-result{
    width:100%; display:flex; justify-content:space-between; align-items:center; gap:14px;
    padding:11px 8px; background:none; border:none; border-bottom:1px solid var(--line);
    cursor:pointer; text-align:left;
  }
  .search-result:hover{background:var(--bg);}
  .sr-name{font-size:0.88rem; color:var(--navy); font-weight:600;}
  .sr-price{font-family:var(--mono); font-size:0.78rem; color:var(--red); white-space:nowrap;}
  @media (max-width:640px){
    .search-panel{
      position:fixed; top:74px; left:12px; right:12px; width:auto; max-width:none;
    }
  }
  .search-highlight{outline:2px solid var(--red); outline-offset:2px;}
  /* ---------- PRODUCT MODAL ---------- */
  .product-card{cursor:pointer;}
  .pmodal-overlay{
    position:fixed; inset:0; background:rgba(18,44,69,0.55); z-index:95;
    opacity:0; pointer-events:none; transition:opacity .25s ease;
  }
  .pmodal-overlay.open{opacity:1; pointer-events:auto;}
  .pmodal{
    position:fixed; top:50%; left:50%; transform:translate(-50%,-48%) scale(0.96);
    width:880px; max-width:92vw; max-height:88vh; overflow-y:auto;
    background:var(--paper); border-radius:6px; z-index:96;
    box-shadow:0 30px 60px rgba(0,0,0,0.3);
    opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease;
  }
  .pmodal.open{opacity:1; pointer-events:auto; transform:translate(-50%,-50%) scale(1);}
  .pmodal-close{
    position:absolute; top:16px; right:16px; background:#fff; border:1px solid var(--line);
    width:34px; height:34px; border-radius:50%; font-size:1.3rem; line-height:1; cursor:pointer;
    color:var(--steel); z-index:2;
  }
  .pmodal-close:hover{color:var(--red); border-color:var(--red);}
  .pmodal-grid{display:grid; grid-template-columns:1fr 1fr; gap:0;}
  .pmodal-gallery{background:var(--bg); padding:30px;}
  .pmodal-main-img{
    width:100%; aspect-ratio:1/1; background:#fff; border:1px solid var(--line); border-radius:4px;
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
    color:var(--line); overflow:hidden;
  }
  .pmodal-main-img svg{width:64px; height:64px;}
  .pmodal-main-img img{width:100%; height:100%; object-fit:contain;}
  .pmodal-noimg-label{font-family:var(--mono); font-size:0.75rem; color:var(--steel);}
  .pmodal-thumbs{display:flex; gap:8px; margin-top:12px; flex-wrap:wrap;}
  .pmodal-thumbs img{
    width:56px; height:56px; object-fit:cover; border-radius:3px; border:1.5px solid var(--line);
    cursor:pointer; transition:border-color .2s ease;
  }
  .pmodal-thumbs img:hover, .pmodal-thumbs img.active{border-color:var(--blue);}
  .pmodal-info{padding:34px 36px;}
  .pmodal-info h3{
    font-family:var(--body); font-weight:600; text-transform:none; font-size:1.35rem;
    color:var(--navy); margin:10px 0 8px; line-height:1.25;
  }
  .pmodal-price{font-family:var(--mono); font-size:1.3rem; color:var(--red); font-weight:600; margin-bottom:16px;}
  .pmodal-desc{color:var(--steel); font-size:0.96rem; line-height:1.6; margin-bottom:22px;}
  .pmodal-specs{width:100%; border-collapse:collapse; margin-bottom:8px;}
  .pmodal-specs tr{border-bottom:1px solid var(--line);}
  .pmodal-specs td{padding:10px 0; font-size:0.88rem;}
  .pmodal-specs td:first-child{
    font-family:var(--mono); color:var(--steel); width:45%; text-transform:uppercase; font-size:0.72rem; letter-spacing:0.03em;
  }
  .pmodal-specs td:last-child{color:var(--navy); font-weight:600;}
  .pmodal-diameter-wrap{margin-bottom:6px;}
  .pmodal-diameter-label{
    display:block; font-family:var(--mono); font-size:0.74rem; letter-spacing:0.04em;
    text-transform:uppercase; color:var(--steel); margin-bottom:7px;
  }
  .pmodal-diameter-select{
    width:100%; font-family:var(--mono); font-size:0.92rem; color:var(--navy);
    padding:11px 14px; border:1.5px solid var(--line); border-radius:2px;
    background:var(--paper); cursor:pointer; appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B5A96' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 14px center;
  }
  .pmodal-diameter-select:focus{outline:none; border-color:var(--blue);}
  @media (max-width:760px){
    .pmodal-grid{grid-template-columns:1fr;}
    .pmodal{max-height:92vh;}
  }
