:root{
      --bg:#f6f7f2;
      --card:#ffffff;
      --text:#121826;
      --muted:#475467;
      --brand:#0f766e;
      --brand-dark:#0b4f49;
      --soft:#e8fbf5;
      --accent:#8a4b00;
      --line:#e8e8df;
      --shadow:0 18px 45px rgba(15,23,42,.10);
      --radius:24px;
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    html,
    body{
      width:100%;
      max-width:100%;
      overflow-x:hidden;
      scroll-behavior:smooth;
    }

    body{
      font-family:Arial, Helvetica, sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.55;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    img{
      max-width:100%;
      display:block;
    }

    button,
    input,
    textarea,
    select{
      font:inherit;
    }

    .container{
      width:100%;
      max-width:1180px;
      margin:0 auto;
      padding-left:20px;
      padding-right:20px;
    }

    header{
      width:100%;
      max-width:100vw;
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(14px);
      border-bottom:1px solid var(--line);
      box-shadow:0 8px 24px rgba(15,23,42,.05);
    }

    .nav{
      height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      min-width:0;
    }

    .logo{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      flex-shrink:1;
      font-weight:900;
      font-size:22px;
      letter-spacing:.2px;
    }

    .logo-mark{
      width:46px;
      height:46px;
      min-width:46px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--brand),#14b8a6);
      display:grid;
      place-items:center;
      color:#fff;
      font-size:14px;
      box-shadow:0 10px 25px rgba(15,118,110,.25);
    }

    .logo-text{
      min-width:0;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .menu{
      display:flex;
      align-items:center;
      gap:24px;
      color:#30343b;
      font-weight:700;
      font-size:15px;
      flex-shrink:0;
    }

    .menu a:hover{
      color:var(--brand);
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-shrink:0;
    }

    .mobile-call{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      background:var(--soft);
      color:var(--brand);
      align-items:center;
      justify-content:center;
      font-size:20px;
      border:1px solid #b8ece2;
      flex-shrink:0;
    }

    .hamburger{
      display:none;
      width:42px;
      height:42px;
      border:1px solid var(--line);
      border-radius:14px;
      background:#fff;
      font-size:22px;
      cursor:pointer;
      flex-shrink:0;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border:0;
      border-radius:999px;
      padding:13px 19px;
      font-weight:800;
      cursor:pointer;
      transition:.25s ease;
      font-size:15px;
      line-height:1.2;
      text-align:center;
      max-width:100%;
    }

    .btn-primary{
      background:var(--brand);
      color:#fff;
      box-shadow:0 12px 28px rgba(15,118,110,.24);
    }

    .btn-primary:hover{
      background:var(--brand-dark);
      transform:translateY(-2px);
    }

    .btn-secondary{
      background:#fff;
      color:#1f2937;
      border:1px solid var(--line);
    }

    .btn-secondary:hover{
      border-color:var(--brand);
      color:var(--brand);
      transform:translateY(-2px);
    }

    .btn:disabled{
      opacity:.75;
      cursor:not-allowed;
      transform:none !important;
    }


    .hero{
      position:relative;
      width:100%;
      max-width:100vw;
      padding:70px 0 42px;
      overflow:hidden;
    }

    .hero::before{
      content:"";
      position:absolute;
      right:-160px;
      top:-180px;
      width:420px;
      height:420px;
      background:rgba(20,184,166,.12);
      border-radius:999px;
      z-index:-1;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:38px;
      align-items:center;
      min-width:0;
    }

    .hero-grid > div{
      min-width:0;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      max-width:100%;
      background:var(--soft);
      color:var(--brand-dark);
      border:1px solid #b8ece2;
      border-radius:999px;
      padding:8px 14px;
      font-weight:900;
      font-size:14px;
      margin-bottom:16px;
    }

    h1{
      font-size:66px;
      line-height:1.02;
      letter-spacing:-2px;
      margin-bottom:18px;
      max-width:100%;
      word-break:normal;
    }

    .hero p{
      font-size:18px;
      color:#374151;
      max-width:650px;
      margin-bottom:26px;
    }

    .hero-buttons{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      max-width:100%;
    }

    .stats{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:30px;
      max-width:670px;
    }

    .stat{
      min-width:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:16px;
      box-shadow:0 8px 25px rgba(15,23,42,.05);
    }

    .stat strong{
      display:block;
      color:var(--brand);
      font-size:25px;
      line-height:1.1;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .stat span{
      display:block;
      color:var(--muted);
      font-weight:700;
      font-size:13px;
      line-height:1.25;
    }

    .hero-card{
      min-width:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:32px;
      padding:18px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }

    .hero-card-inner{
      border-radius:24px;
      background:linear-gradient(135deg,#ecfeff,#fff7ed);
      padding:28px;
      min-height:430px;
      display:grid;
      align-content:center;
      gap:16px;
    }

    .hero-product-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }

    .hero-product{
      min-width:0;
      background:#fff;
      border-radius:20px;
      padding:14px;
      border:1px solid rgba(15,118,110,.12);
      box-shadow:0 12px 28px rgba(15,23,42,.08);
    }

    .hero-product img{
      height:135px;
      width:100%;
      object-fit:contain;
    }

    .hero-product b{
      display:block;
      margin-top:8px;
      font-size:13px;
      text-align:center;
      color:#1f2937;
    }

    section{
      width:100%;
      max-width:100vw;
      padding:66px 0;
      overflow:hidden;
    }

    .section-head{
      display:flex;
      justify-content:space-between;
      gap:22px;
      align-items:end;
      margin-bottom:28px;
      min-width:0;
    }

    .section-head h2{
      font-size:46px;
      line-height:1.1;
      letter-spacing:-1px;
    }

    .section-head p{
      color:var(--muted);
      max-width:520px;
    }

    .filters{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:22px;
      max-width:100%;
    }

    .filter-btn{
      border:1px solid var(--line);
      background:#fff;
      color:#374151;
      border-radius:999px;
      padding:10px 15px;
      font-weight:800;
      cursor:pointer;
      flex-shrink:0;
    }

    .filter-btn.active,
    .filter-btn:hover{
      background:var(--brand);
      color:#fff;
      border-color:var(--brand);
    }

    .products{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:22px;
      width:100%;
    }

    .product-card{
      min-width:0;
      background:var(--card);
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:0 12px 35px rgba(15,23,42,.07);
      display:flex;
      flex-direction:column;
      transition:.25s ease;
    }

    .product-card:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow);
    }

    .product-image{
      background:#fff;
      min-height:235px;
      padding:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-bottom:1px solid var(--line);
    }

    .product-image img{
      height:210px;
      width:100%;
      object-fit:contain;
    }

    .product-body{
      min-width:0;
      padding:20px;
      display:flex;
      flex-direction:column;
      gap:12px;
      flex:1;
    }

    .tag{
      display:inline-flex;
      width:max-content;
      max-width:100%;
      background:#fff7ed;
      color:#92400e;
      border:1px solid #fed7aa;
      border-radius:999px;
      padding:5px 10px;
      font-weight:900;
      font-size:12px;
    }

    .product-body h3{
      font-size:19px;
      line-height:1.25;
      min-height:48px;
      word-break:normal;
    }

    .product-body p{
      color:var(--muted);
      font-size:14px;
    }

    .price{
      margin-top:auto;
      background:#f0fdfa;
      color:var(--brand-dark);
      border:1px solid #ccfbf1;
      border-radius:16px;
      padding:10px 12px;
      font-weight:900;
      display:flex;
      justify-content:space-between;
      gap:8px;
      min-width:0;
    }

    .price span{
      min-width:0;
      overflow:hidden;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .request-btn{
      width:100%;
      margin-top:2px;
    }

    .service-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
    }

    .service{
      min-width:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:22px;
      box-shadow:0 10px 28px rgba(15,23,42,.06);
    }

    .service .icon{
      width:48px;
      height:48px;
      border-radius:16px;
      background:var(--soft);
      display:grid;
      place-items:center;
      color:var(--brand);
      font-size:24px;
      margin-bottom:14px;
    }

    .service h3{
      font-size:18px;
      margin-bottom:8px;
    }

    .service p{
      color:var(--muted);
      font-size:14px;
    }

    .reviews{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
    }

    .review{
      min-width:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:22px;
      box-shadow:0 12px 30px rgba(15,23,42,.06);
    }

    .stars{
      color:var(--accent);
      font-size:19px;
      margin-bottom:10px;
    }

    .review p{
      color:#374151;
      margin-bottom:15px;
    }

    .review small{
      color:#667085;
      display:block;
      margin-top:5px;
    }

    .contact-wrap{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:stretch;
    }

    .contact-card,
    .policy-card{
      min-width:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:28px;
      padding:28px;
      box-shadow:var(--shadow);
    }

    .policy-card ul{
      padding-left:20px;
      color:#374151;
      display:grid;
      gap:10px;
    }

    .contact-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      padding:16px 0;
      border-bottom:1px solid var(--line);
      min-width:0;
    }

    .contact-item:last-child{
      border-bottom:0;
    }

    .contact-item strong{
      display:block;
      margin-bottom:3px;
    }

    .contact-item span{
      color:var(--muted);
      overflow-wrap:anywhere;
    }

    .contact-icon{
      width:44px;
      height:44px;
      min-width:44px;
      border-radius:15px;
      background:#f0fdfa;
      color:var(--brand);
      display:grid;
      place-items:center;
      font-size:21px;
    }

    footer{
      width:100%;
      max-width:100vw;
      background:#101827;
      color:#d1d5db;
      padding:42px 0;
      margin-top:45px;
      overflow:hidden;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:28px;
    }

    footer h3,
    footer h4{
      color:#fff;
      margin-bottom:12px;
    }

    footer a{
      display:block;
      color:#d1fae5;
      margin:8px 0;
      overflow-wrap:anywhere;
    }

    .floating-whatsapp{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:60;
      width:58px;
      height:58px;
      border-radius:50%;
      background:#22c55e;
      color:#fff;
      display:grid;
      place-items:center;
      font-size:29px;
      box-shadow:0 15px 30px rgba(34,197,94,.35);
    }

    .modal{
      position:fixed;
      inset:0;
      background:rgba(15,23,42,.62);
      z-index:80;
      display:none;
      align-items:center;
      justify-content:center;
      padding:22px;
    }

    .modal.show{
      display:flex;
    }

    .modal-box{
      width:100%;
      max-width:560px;
      background:#fff;
      border-radius:28px;
      box-shadow:0 30px 80px rgba(0,0,0,.25);
      overflow:hidden;
    }

    .modal-head{
      padding:22px 24px;
      background:#f0fdfa;
      border-bottom:1px solid #ccfbf1;
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
    }

    .modal-head h3{
      font-size:24px;
    }

    .modal-head p{
      overflow-wrap:anywhere;
    }

    .close{
      border:0;
      background:#fff;
      width:38px;
      height:38px;
      min-width:38px;
      border-radius:50%;
      font-size:22px;
      cursor:pointer;
    }

    .form{
      padding:24px;
      display:grid;
      gap:14px;
    }

    .form label{
      display:block;
      font-weight:800;
      color:#374151;
      font-size:14px;
      margin-bottom:6px;
    }

    .form input,
    .form textarea,
    .form select{
      width:100%;
      border:1px solid var(--line);
      border-radius:16px;
      padding:14px;
      font-size:15px;
      outline:none;
      background:#fff;
    }

    .form textarea{
      min-height:90px;
      resize:vertical;
    }

    .form input:focus,
    .form textarea:focus,
    .form select:focus{
      border-color:var(--brand);
      box-shadow:0 0 0 4px rgba(15,118,110,.10);
    }

    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
    }

    .note{
      font-size:13px;
      color:var(--muted);
      background:#f9fafb;
      border:1px solid var(--line);
      border-radius:14px;
      padding:11px 12px;
    }

    @media (max-width:980px){
      .hero-grid,
      .contact-wrap{
        grid-template-columns:1fr;
      }

      .products{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .service-grid,
      .reviews{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .hero-card-inner{
        min-height:auto;
      }

      .menu{
        display:none;
        position:absolute;
        top:72px;
        left:0;
        right:0;
        width:100%;
        background:#fff;
        border-bottom:1px solid var(--line);
        padding:18px 5%;
        flex-direction:column;
        align-items:flex-start;
        box-shadow:0 18px 40px rgba(15,23,42,.12);
      }

      .menu.open{
        display:flex;
      }

      .hamburger{
        display:block;
      }
    }

    @media (max-width:640px){
      :root{
        --radius:18px;
      }

      .container{
        padding-left:14px;
        padding-right:14px;
      }

      .nav{
        height:64px;
        gap:8px;
      }

      .logo{
        gap:8px;
        font-size:16px;
        flex:1 1 auto;
        max-width:calc(100vw - 112px);
      }

      .logo-mark{
        width:36px;
        height:36px;
        min-width:36px;
        border-radius:12px;
        font-size:12px;
      }

      .logo-text{
        max-width:calc(100vw - 170px);
      }

      .nav-actions{
        gap:6px;
      }

      .nav-actions .btn{
        display:none;
      }

      .mobile-call{
        display:flex;
        width:38px;
        height:38px;
        border-radius:13px;
        font-size:18px;
      }

      .hamburger{
        display:block;
        width:38px;
        height:38px;
        border-radius:13px;
        font-size:20px;
      }

      .menu{
        top:64px;
        padding:16px 18px;
        border-radius:0 0 22px 22px;
      }

      .menu a{
        font-size:15px;
        padding:7px 0;
        width:100%;
      }

      .hero{
        padding:26px 0 16px;
      }

      .hero-grid{
        gap:18px;
      }

      .eyebrow{
        font-size:11px;
        padding:7px 10px;
        margin-bottom:12px;
        border-radius:12px;
        white-space:normal;
        line-height:1.25;
      }

      h1{
        font-size:31px;
        letter-spacing:-.8px;
        line-height:1.08;
        margin-bottom:12px;
      }

      .hero p{
        font-size:14px;
        line-height:1.55;
        margin-bottom:16px;
      }

      .hero-buttons{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
        width:100%;
      }

      .hero-buttons .btn{
        width:100%;
        min-width:0;
        padding:12px 8px;
        font-size:12px;
        white-space:normal;
      }

      .stats{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:8px;
        margin-top:16px;
      }

      .stat{
        padding:10px 6px;
        text-align:center;
        border-radius:15px;
      }

      .stat strong{
        font-size:16px;
      }

      .stat span{
        font-size:9.5px;
        line-height:1.2;
      }

      .hero-card{
        border-radius:22px;
        padding:10px;
      }

      .hero-card-inner{
        padding:10px;
        border-radius:18px;
      }

      .hero-product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
      }

      .hero-product{
        border-radius:15px;
        padding:9px;
      }

      .hero-product img{
        height:78px;
      }

      .hero-product b{
        font-size:11px;
        margin-top:5px;
      }

      section{
        padding:40px 0;
      }

      .section-head{
        display:block;
        margin-bottom:18px;
      }

      .section-head h2{
        font-size:27px;
        letter-spacing:-.5px;
      }

      .section-head p{
        margin-top:9px;
        font-size:13px;
      }

      .filters{
        display:flex;
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:6px;
        margin-bottom:16px;
        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
      }

      .filters::-webkit-scrollbar{
        display:none;
      }

      .filter-btn{
        font-size:12px;
        padding:9px 12px;
        white-space:nowrap;
      }

      .products{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
      }

      .product-card{
        border-radius:18px;
        box-shadow:0 8px 22px rgba(15,23,42,.06);
      }

      .product-card:hover{
        transform:none;
      }

      .product-image{
        min-height:120px;
        padding:8px;
      }

      .product-image img{
        height:100px;
        object-fit:contain;
      }

      .product-body{
        padding:10px;
        gap:7px;
      }

      .tag{
        font-size:9.5px;
        padding:4px 7px;
      }

      .product-body h3{
  font-size:12px;
  line-height:1.25;
  height:45px;
  overflow:hidden;
}

      .product-body p{
        display:none;
      }

      .price{
        font-size:10px;
        padding:7px;
        border-radius:11px;
        gap:5px;
      }

      .request-btn{
        width:100%;
        font-size:11px;
        padding:9px 6px;
        border-radius:13px;
        white-space:normal;
      }

      .service-grid,
      .reviews,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .service,
      .review{
        border-radius:18px;
        padding:18px;
      }

      .contact-wrap{
        gap:16px;
      }

      .contact-card,
      .policy-card{
        padding:18px;
        border-radius:22px;
      }

      .contact-card h2,
      .policy-card h2{
        font-size:25px !important;
      }

      .policy-card ul{
        font-size:14px;
        gap:8px;
      }

      .contact-item{
        padding:13px 0;
      }

      .contact-icon{
        width:40px;
        height:40px;
        min-width:40px;
        border-radius:13px;
      }

      .contact-card .btn,
      .policy-card .btn{
        width:100%;
      }

      footer{
        padding:34px 0;
        margin-top:20px;
      }

      footer p,
      footer a{
        font-size:13px;
      }

      .form-row{
        grid-template-columns:1fr;
      }

      .modal{
        padding:0;
        align-items:flex-end;
      }

      .modal-box{
        max-width:100%;
        border-radius:24px 24px 0 0;
        max-height:92vh;
        overflow:auto;
      }

      .modal-head{
        padding:18px;
      }

      .modal-head h3{
        font-size:21px;
      }

      .form{
        padding:18px;
        gap:12px;
      }

      .form input,
      .form textarea,
      .form select{
        border-radius:14px;
        padding:13px;
      }

      .floating-whatsapp{
        right:12px;
        bottom:12px;
        width:52px;
        height:52px;
        font-size:25px;
      }
    }

    @media (max-width:360px){
      .container{
        padding-left:12px;
        padding-right:12px;
      }

      .logo{
        font-size:15px;
        max-width:calc(100vw - 104px);
      }

      .logo-text{
        max-width:calc(100vw - 158px);
      }

      .mobile-call,
      .hamburger{
        width:36px;
        height:36px;
      }

      h1{
        font-size:29px;
      }

      .hero-buttons{
        grid-template-columns:1fr;
      }

      .stats{
        grid-template-columns:1fr 1fr 1fr;
      }

      .stat strong{
        font-size:15px;
      }

      .stat span{
        font-size:9px;
      }

      .products{
        gap:9px;
      }

      .product-image{
        min-height:112px;
      }

      .product-image img{
        height:92px;
      }

      .product-body h3{
        font-size:11.4px;
      }

      .request-btn{
        font-size:10.5px;
      }
    }
