    :root{
      --red:#d90429;
      --red-dark:#9b001c;
      --yellow:#ffcc00;
      --dark:#111827;
      --gray:#6b7280;
      --light:#f8fafc;
      --white:#ffffff;
      --shadow:0 10px 30px rgba(0,0,0,.12);
      --radius:18px;
    }

    *{margin:0;padding:0;box-sizing:border-box;}

    body{
      font-family:"Poppins",sans-serif;
      background:var(--light);
      color:var(--dark);
      line-height:1.6;
    }

    html{scroll-behavior:smooth;}

    .container{
      width:min(1120px,92%);
      margin:auto;
    }

    .fullFULL {position: absolute; width: 0; height: 0; overflow: hidden; opacity: 0; visibility: hidden;}

    header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(17,24,39,.92);
      backdrop-filter:blur(10px);
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
    }

    .logo{
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
      color:#fff;
      font-weight:800;
      font-size:1.3rem;
    }

    .logo img{
      width:54px;
      height:54px;
      object-fit:contain;
      background:#fff;
      border-radius:12px;
      padding:6px;
    }

    nav ul{
      display:flex;
      list-style:none;
      gap:22px;
    }

    nav a{
      color:#fff;
      text-decoration:none;
      font-weight:500;
      transition:.3s;
    }

    nav a:hover{color:var(--yellow);}

    .menu-btn{
      display:none;
      background:none;
      border:none;
      color:#fff;
      font-size:1.8rem;
      cursor:pointer;
    }

    .hero{
      min-height:92vh;
      display:flex;
      align-items:center;
      background:
        linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.72)),
        url('https://images.unsplash.com/photo-1555963966-b7ae5404b6ed?q=80&w=1600&auto=format&fit=crop') center/cover;
      color:#fff;
    }

    .hero-content{max-width:720px;}

    .tag{
      display:inline-block;
      background:rgba(255,204,0,.18);
      border:1px solid rgba(255,204,0,.45);
      color:#ffe36a;
      padding:8px 14px;
      border-radius:999px;
      font-weight:600;
      margin-bottom:18px;
      font-size:.92rem;
    }

    .hero h1{
      font-size:clamp(2.2rem,5vw,4.5rem);
      line-height:1.08;
      margin-bottom:18px;
    }

    .hero p{
      font-size:1.08rem;
      color:#e5e7eb;
      margin-bottom:28px;
      max-width:620px;
    }

    .hero-buttons{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:15px 28px;
      border-radius:999px;
      text-decoration:none;
      font-weight:700;
      transition:.3s;
      border:2px solid transparent;
    }

    .btn-primary{
      background:linear-gradient(135deg,var(--yellow),#ffd93d);
      color:#111;
      box-shadow:0 10px 25px rgba(255,204,0,.35);
    }

    .btn-primary:hover{
      transform:translateY(-2px);
    }

    .btn-outline{
      border-color:#fff;
      color:#fff;
    }

    .btn-outline:hover{
      background:#fff;
      color:#111;
    }

    section{padding:90px 0;}

    .section-title{
      text-align:center;
      margin-bottom:52px;
    }

    .section-title span{
      color:var(--red);
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:1px;
      font-size:.92rem;
    }

    .section-title h2{
      font-size:clamp(2rem,4vw,3rem);
      margin-top:10px;
    }

    .section-title p{
      color:var(--gray);
      max-width:720px;
      margin:12px auto 0;
    }

    .cards{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }

    .card{
      background:#fff;
      padding:28px;
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:.3s;
      border-top:5px solid var(--yellow);
    }

    .card:hover{transform:translateY(-8px);}

    .icon{
      width:64px;
      height:64px;
      border-radius:16px;
      background:linear-gradient(135deg,var(--red),var(--yellow));
      display:grid;
      place-items:center;
      color:#fff;
      font-size:1.7rem;
      margin-bottom:18px;
      font-weight:700;
    }

    .card h3{margin-bottom:10px;}

    .card p{color:var(--gray);}

    .about{
      background:#fff;
    }

    .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:40px;
      align-items:center;
    }

    .about-image img{
      width:100%;
      border-radius:24px;
      box-shadow:var(--shadow);
    }

    .about-content h2{
      font-size:clamp(2rem,4vw,3rem);
      margin-bottom:18px;
    }

    .about-content p{
      color:var(--gray);
      margin-bottom:18px;
    }

    .check-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }

    .check-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      background:#fff7cc;
      border:1px solid #ffe27a;
      padding:12px 14px;
      border-radius:14px;
    }

    .check-item span{
      color:var(--red);
      font-size:1.1rem;
      margin-top:2px;
    }

    .stats{
      margin-top:28px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }

    .stat{
      background:linear-gradient(180deg,#fff,#fff7d6);
      border:1px solid #ffe27a;
      border-radius:18px;
      padding:20px;
      text-align:center;
      box-shadow:var(--shadow);
    }

    .stat h3{
      font-size:2rem;
      color:var(--red);
    }

    .stat p{
      color:#374151;
      font-weight:600;
      font-size:.92rem;
    }

    .gallery{
      background:#fff;
    }

    .gallery-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }

    .gallery-item{
      overflow:hidden;
      border-radius:22px;
      box-shadow:var(--shadow);
      background:#fff;
    }

    .gallery-item img{
      width:100%;
      height:260px;
      object-fit:cover;
      display:block;
      transition:transform .5s ease;
    }

    .gallery-item:hover img{
      transform:scale(1.08);
    }

    .gallery-caption{
      padding:14px 16px;
      font-weight:600;
      color:#111827;
    }

    .cta{
      background:linear-gradient(135deg,var(--red),#7f0018);
      color:#fff;
      text-align:center;
      border-radius:30px;
      padding:60px 24px;
      box-shadow:var(--shadow);
    }

    .cta h2{
      font-size:clamp(2rem,4vw,3rem);
      margin-bottom:16px;
    }

    .cta p{
      max-width:760px;
      margin:0 auto 26px;
      color:#f3f4f6;
    }

    .testimonials{
      background:#fff;
    }

    .testimonial-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }

    .testimonial{
      background:#fff;
      border-radius:22px;
      padding:26px;
      box-shadow:var(--shadow);
      border:1px solid #f3f4f6;
    }

    .stars{
      color:#f59e0b;
      margin-bottom:12px;
    }

    .testimonial p{
      color:#374151;
      margin-bottom:16px;
      font-style:italic;
    }

    .client{
      font-weight:700;
    }

    .contact{
      background:#fff;
    }

    .contact-box{
      max-width:780px;
      margin:auto;
      background:#fff;
      padding:36px;
      border-radius:26px;
      box-shadow:var(--shadow);
      text-align:center;
    }

    .contact-info{
      display:grid;
      gap:18px;
      margin-top:26px;
      text-align:left;
    }

    .info-item{
      display:flex;
      gap:14px;
      align-items:flex-start;
      background:#fff;
      border-radius:18px;
      padding:20px;
      box-shadow:var(--shadow);
      border-left:5px solid var(--red);
    }

    .icon-small{
      width:46px;
      height:46px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:#fff5f5;
      color:var(--red);
      font-weight:700;
    }

    footer{
      background:#0f172a;
      color:#cbd5e1;
      padding:50px 0 28px;
      margin-top:40px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:2fr 1fr 1fr;
      gap:28px;
      margin-bottom:26px;
    }

    footer h3{
      color:#fff;
      margin-bottom:12px;
    }

    footer a{
      color:#cbd5e1;
      text-decoration:none;
    }

    footer a:hover{color:var(--yellow);}

    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:18px;
      text-align:center;
      color:#94a3b8;
      font-size:.92rem;
    }

    .whatsapp{
      position:fixed;
      right:18px;
      bottom:18px;
      width:62px;
      height:62px;
      border-radius:50%;
      background:#25d366;
      display:grid;
      place-items:center;
      color:#fff;
      text-decoration:none;
      font-size:1.8rem;
      box-shadow:0 10px 25px rgba(37,211,102,.45);
      z-index:1200;
      animation:pulse 2s infinite;
    }

    @keyframes pulse{
      0%{transform:scale(1);}
      50%{transform:scale(1.08);}
      100%{transform:scale(1);}
    }

    @media (max-width:900px){
      nav ul{
        position:absolute;
        top:76px;
        left:0;
        right:0;
        background:#111827;
        flex-direction:column;
        padding:20px;
        display:none;
      }

      nav ul.active{display:flex;}

      .menu-btn{display:block;}

      .cards,
      .testimonial-grid,
      .gallery-grid,
      .about-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .stats{
        grid-template-columns:1fr;
      }

      .hero{text-align:center;}

      .hero-buttons{
        justify-content:center;
      }
    }

    @media (max-width:560px){
      section{padding:70px 0;}

      .hero{min-height:86vh;}

      .btn{width:100%;}
    }