    :root{
      --bg:#081120;
      --bg-soft:#0d1728;
      --card:#ffffff;
      --card-dark:#0f1c31;
      --text:#0f172a;
      --text-light:#e5eefc;
      --muted:#64748b;
      --border:rgba(148,163,184,.18);
      --primary:#2563eb;
      --primary-2:#38bdf8;
      --accent:#f59e0b;
      --success:#16a34a;
      --shadow:0 18px 60px rgba(2,8,23,.14);
      --shadow-soft:0 10px 35px rgba(15,23,42,.08);
      --radius:24px;
      --radius-sm:18px;
      --container:1200px;
      --transition:all .35s ease;
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:"Noto Sans Georgian", sans-serif;
      background:#f8fbff;
      color:var(--text);
      line-height:1.65;
      overflow-x:hidden;
    }

    img{
      max-width:100%;
      display:block;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    ul{
      list-style:none;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin-inline:auto;
    }

    .section{
      padding:80px 0;
    }

    .section-title{
      font-size:clamp(28px,4vw,44px);
      line-height:1.15;
      font-weight:800;
      letter-spacing:-0.02em;
      margin-bottom:14px;
    }

    .section-subtitle{
      color:var(--muted);
      max-width:760px;
      font-size:16px;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 16px;
      border-radius:999px;
      background:rgba(37,99,235,.08);
      color:var(--primary);
      font-weight:700;
      font-size:14px;
      margin-bottom:18px;
      border:1px solid rgba(37,99,235,.1);
    }

    .badge i{
      color:var(--accent);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border:none;
      cursor:pointer;
      border-radius:999px;
      padding:15px 22px;
      font-weight:700;
      font-size:15px;
      transition:var(--transition);
      white-space:nowrap;
    }

    .btn-primary{
      background:linear-gradient(135deg, var(--primary), var(--primary-2));
      color:#fff;
      box-shadow:0 12px 25px rgba(37,99,235,.25);
    }

    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 30px rgba(37,99,235,.3);
    }

    .btn-secondary{
      background:#fff;
      color:var(--text);
      border:1px solid rgba(148,163,184,.25);
      box-shadow:var(--shadow-soft);
    }

    .btn-secondary:hover{
      transform:translateY(-2px);
      border-color:rgba(37,99,235,.28);
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:1000;
      backdrop-filter:blur(16px);
      background:rgba(8,17,32,.82);
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .navbar{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      min-width:0;
    }

    .brand-icon{
      width:46px;
      height:46px;
      border-radius:16px;
      background:linear-gradient(135deg, var(--primary), var(--accent));
      display:grid;
      place-items:center;
      color:#fff;
      font-size:20px;
      box-shadow:0 10px 20px rgba(37,99,235,.25);
      flex-shrink:0;
    }

    .brand-text{
      min-width:0;
    }

    .brand-text strong{
      display:block;
      font-size:16px;
      color:#fff;
      line-height:1.15;
    }

    .brand-text span{
      display:block;
      font-size:12px;
      color:rgba(255,255,255,.72);
      margin-top:2px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:26px;
    }

    .nav-links a{
      color:rgba(255,255,255,.9);
      font-weight:600;
      font-size:15px;
      position:relative;
      transition:var(--transition);
    }

    .nav-links a:hover{
      color:#fff;
    }

    .nav-links a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-8px;
      width:0;
      height:2px;
      border-radius:99px;
      background:linear-gradient(135deg, var(--accent), var(--primary-2));
      transition:var(--transition);
    }

    .nav-links a:hover::after{
      width:100%;
    }

    .nav-right{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .call-btn{
      background:linear-gradient(135deg, #f59e0b, #fb7185);
      color:#fff;
      box-shadow:0 10px 24px rgba(245,158,11,.25);
    }

    .menu-toggle{
      width:46px;
      height:46px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.06);
      color:#fff;
      display:none;
      align-items:center;
      justify-content:center;
      font-size:18px;
      cursor:pointer;
      transition:var(--transition);
    }

    .menu-toggle:hover{
      background:rgba(255,255,255,.12);
    }

    .mobile-menu{
      max-height:0;
      overflow:hidden;
      transition:max-height .4s ease;
      background:linear-gradient(180deg, rgba(9,15,27,.98), rgba(14,24,41,.98));
      border-top:1px solid rgba(255,255,255,.08);
    }

    .mobile-menu.open{
      max-height:420px;
    }

    .mobile-menu-inner{
      padding:18px 16px 22px;
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .mobile-menu a{
      color:#fff;
      padding:14px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.04);
      font-weight:600;
    }

    .hero{
      position:relative;
      color:#fff;
      overflow:hidden;
      background:
        linear-gradient(120deg, rgba(8,17,32,.92), rgba(10,27,51,.72)),
        url('https://www.gatbobisqvabi.com.ge/uploads/26544.webp') center/cover no-repeat;
      min-height:100vh;
      display:flex;
      align-items:center;
    }

    .hero::before,
    .hero::after{
      content:"";
      position:absolute;
      border-radius:999px;
      filter:blur(60px);
      opacity:.35;
      pointer-events:none;
    }

    .hero::before{
      width:280px;
      height:280px;
      background:#38bdf8;
      top:8%;
      right:-80px;
    }

    .hero::after{
      width:260px;
      height:260px;
      background:#f59e0b;
      bottom:8%;
      left:-70px;
    }

    .hero-grid{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:36px;
      align-items:center;
      padding:120px 0 80px;
    }

    .hero h1{
      font-size:clamp(36px,6vw,68px);
      line-height:1.04;
      font-weight:800;
      letter-spacing:-0.03em;
      margin-bottom:18px;
      max-width:720px;
    }

    .hero p.lead{
      color:rgba(255,255,255,.84);
      font-size:18px;
      max-width:650px;
      margin-bottom:28px;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:26px;
    }

    .hero-highlights{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
      margin-top:10px;
    }

    .highlight-box{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.1);
      border-radius:20px;
      padding:16px;
      backdrop-filter:blur(14px);
    }

    .highlight-box strong{
      display:block;
      font-size:18px;
      margin-bottom:4px;
    }

    .highlight-box span{
      font-size:13px;
      color:rgba(255,255,255,.76);
    }

    .hero-card{
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.12);
      backdrop-filter:blur(16px);
      border-radius:30px;
      padding:24px;
      box-shadow:0 18px 50px rgba(0,0,0,.18);
    }

    .hero-card-top{
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:18px;
    }

    .hero-card-top .icon{
      width:54px;
      height:54px;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(37,99,235,.9), rgba(56,189,248,.9));
      display:grid;
      place-items:center;
      font-size:22px;
    }

    .hero-card h3{
      font-size:22px;
      margin-bottom:2px;
    }

    .hero-card p{
      color:rgba(255,255,255,.82);
      font-size:14px;
    }

    .hero-services{
      display:grid;
      gap:12px;
      margin-top:20px;
    }

    .hero-service-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:13px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.08);
      transition:var(--transition);
    }

    .hero-service-item:hover{
      transform:translateX(4px);
      background:rgba(255,255,255,.11);
    }

    .hero-service-item i{
      color:#fbbf24;
      margin-top:4px;
    }

    .services-grid,
    .blog-grid,
    .reviews-grid,
    .why-grid{
      display:grid;
      gap:22px;
    }

    .services-grid{
      grid-template-columns:repeat(3, minmax(0,1fr));
      margin-top:34px;
    }

    .card{
      background:var(--card);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      border:1px solid var(--border);
      overflow:hidden;
      transition:var(--transition);
    }

    .card:hover{
      transform:translateY(-8px);
      box-shadow:var(--shadow);
    }

    .service-image{
      position:relative;
      height:220px;
      overflow:hidden;
    }

    .service-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .5s ease;
    }

    .card:hover .service-image img{
      transform:scale(1.08);
    }

    .service-content{
      padding:22px;
    }

    .service-icon{
      width:54px;
      height:54px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(56,189,248,.12));
      color:var(--primary);
      font-size:22px;
      margin:-48px 0 14px;
      position:relative;
      z-index:2;
      border:1px solid rgba(37,99,235,.12);
      backdrop-filter:blur(8px);
    }

    .service-content h3{
      font-size:21px;
      line-height:1.3;
      margin-bottom:10px;
    }

    .service-content p{
      color:var(--muted);
      font-size:15px;
      margin-bottom:16px;
    }

    .read-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-weight:700;
      font-size:15px;
    }

    .read-link:hover{
      gap:12px;
    }

    .reviews{
      background:linear-gradient(180deg, #f8fbff, #eef6ff);
    }

    .reviews-grid{
      grid-template-columns:repeat(5, minmax(0,1fr));
      margin-top:34px;
    }

    .review-card{
      background:#fff;
      padding:22px;
      border-radius:24px;
      box-shadow:var(--shadow-soft);
      border:1px solid rgba(148,163,184,.14);
      transition:var(--transition);
    }

    .review-card:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow);
    }

    .review-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }

    .review-name{
      font-weight:800;
      font-size:16px;
    }

    .stars{
      color:#f59e0b;
      font-size:14px;
      letter-spacing:2px;
    }

    .review-card p{
      color:var(--muted);
      font-size:14px;
    }

    .why-grid{
      grid-template-columns:1fr 1fr;
      align-items:stretch;
      margin-top:34px;
    }

    .why-card,
    .vision-card{
      background:#fff;
      border-radius:30px;
      padding:30px;
      box-shadow:var(--shadow-soft);
      border:1px solid var(--border);
    }

    .features{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:16px;
      margin-top:20px;
    }

    .feature{
      display:flex;
      gap:14px;
      padding:16px;
      border-radius:20px;
      background:#f8fbff;
      border:1px solid rgba(148,163,184,.14);
    }

    .feature i{
      width:44px;
      height:44px;
      flex-shrink:0;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(245,158,11,.14));
      color:var(--primary);
      font-size:18px;
    }

    .feature h4{
      font-size:16px;
      margin-bottom:4px;
    }

    .feature p{
      color:var(--muted);
      font-size:14px;
    }

    .vision-card{
      background:linear-gradient(145deg, #0d1728, #13213b);
      color:#fff;
      position:relative;
      overflow:hidden;
    }

    .vision-card::before{
      content:"";
      position:absolute;
      inset:auto -60px -60px auto;
      width:220px;
      height:220px;
      background:radial-gradient(circle, rgba(56,189,248,.32), transparent 62%);
      border-radius:50%;
    }

    .vision-card h3{
      font-size:28px;
      margin-bottom:14px;
    }

    .vision-card p{
      color:rgba(255,255,255,.82);
      margin-bottom:16px;
    }

    .vision-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }

    .vision-list li{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:600;
    }

    .vision-list i{
      color:#fbbf24;
    }

    .blog-grid{
      grid-template-columns:repeat(3, minmax(0,1fr));
      margin-top:34px;
    }

    .blog-card{
      background:#fff;
      border-radius:28px;
      overflow:hidden;
      border:1px solid rgba(148,163,184,.14);
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }

    .blog-card:hover{
      transform:translateY(-7px);
      box-shadow:var(--shadow);
    }

    .blog-card img{
      width:100%;
      height:240px;
      object-fit:cover;
    }

    .blog-content{
      padding:24px;
    }

    .blog-meta{
      display:inline-flex;
      gap:8px;
      align-items:center;
      font-size:13px;
      font-weight:700;
      color:var(--primary);
      margin-bottom:12px;
    }

    .blog-content h3{
      font-size:22px;
      line-height:1.25;
      margin-bottom:12px;
    }

    .blog-content p{
      color:var(--muted);
      margin-bottom:16px;
      font-size:15px;
    }

    .contact-band{
      margin-top:40px;
      background:linear-gradient(135deg, #0d1728, #1e3a8a);
      color:#fff;
      border-radius:30px;
      padding:28px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      box-shadow:var(--shadow);
    }

    .contact-band h3{
      font-size:clamp(24px,3vw,34px);
      margin-bottom:8px;
    }

    .contact-band p{
      color:rgba(255,255,255,.8);
    }

    .footer{
      background:#07111f;
      color:#fff;
      padding:70px 0 26px;
      margin-top:80px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .9fr .9fr 1fr;
      gap:26px;
    }

    .footer-col{
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.07);
      border-radius:24px;
      padding:24px;
    }

    .footer h4{
      font-size:18px;
      margin-bottom:16px;
    }

    .footer p,
    .footer li,
    .footer a{
      color:rgba(255,255,255,.78);
      font-size:15px;
    }

    .footer-links{
      display:grid;
      gap:10px;
    }

    .footer-links a:hover{
      color:#fff;
    }

    .seo-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .seo-tags a{
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      transition:var(--transition);
    }

    .seo-tags a:hover{
      background:rgba(255,255,255,.1);
      color:#fff;
    }

    .footer-bottom{
      margin-top:28px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      text-align:center;
      color:rgba(255,255,255,.62);
      font-size:14px;
    }

    .floating-call{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:1000;
      width:58px;
      height:58px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg, var(--success), #22c55e);
      box-shadow:0 14px 28px rgba(34,197,94,.3);
      font-size:22px;
    }

    [data-animate]{
      opacity:0;
      transform:translateY(28px);
      transition:all .8s cubic-bezier(.2,.65,.2,1);
    }

    [data-animate].show{
      opacity:1;
      transform:none;
    }

    @media (max-width: 1100px){
      .hero-grid,
      .why-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .services-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
      }

      .reviews-grid{
        grid-template-columns:repeat(3, minmax(0,1fr));
      }

      .blog-grid{
        grid-template-columns:1fr;
      }

      .footer-grid{
        gap:18px;
      }

      .contact-band{
        flex-direction:column;
        align-items:flex-start;
      }
    }

    @media (max-width: 860px){
      .nav-links,
      .call-btn.desktop-call{
        display:none;
      }

      .menu-toggle{
        display:flex;
      }

      .hero{
        min-height:auto;
      }

      .hero-grid{
        padding:110px 0 70px;
      }

      .hero-highlights{
        grid-template-columns:1fr;
      }

      .services-grid,
      .reviews-grid,
      .features{
        grid-template-columns:1fr;
      }

      .service-image{
        height:210px;
      }
    }

    @media (max-width: 640px){
      .section{
        padding:68px 0;
      }

      .container{
        width:min(var(--container), calc(100% - 22px));
      }

      .navbar{
        min-height:72px;
      }

      .brand-text strong{
        font-size:14px;
      }

      .brand-text span{
        font-size:11px;
      }

      .hero h1{
        font-size:36px;
      }

      .hero p.lead{
        font-size:16px;
      }

      .hero-card,
      .why-card,
      .vision-card,
      .footer-col{
        border-radius:24px;
      }

      .btn{
        width:100%;
      }

      .hero-actions{
        flex-direction:column;
      }

      .contact-band{
        padding:22px;
        border-radius:24px;
      }

      .floating-call{
        width:54px;
        height:54px;
        font-size:20px;
      }
    }
    
    .dle-service-fullstory{
  position:relative;
  padding:60px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(245,158,11,.08), transparent 22%),
    linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
  overflow:hidden;
}

.dle-service-container{
  width:min(1280px, calc(100% - 30px));
  margin:0 auto;
  position:relative;
  z-index:2;
}

.dle-service-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) 390px;
  gap:28px;
  align-items:start;
}

.dle-service-content{
  min-width:0;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(148,163,184,.14);
  box-shadow:0 20px 60px rgba(15,23,42,.07);
  border-radius:30px;
  padding:34px;
  backdrop-filter:blur(10px);
}

.dle-service-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(37,99,235,.08);
  color:#2563eb;
  border:1px solid rgba(37,99,235,.12);
  font-size:14px;
  font-weight:700;
  margin-bottom:18px;
}

.dle-service-badge i{
  color:#f59e0b;
}

.dle-service-content h1{
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.08;
  letter-spacing:-0.02em;
  color:#0f172a;
  font-weight:800;
  margin-bottom:18px;
}

.dle-service-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:22px;
}

.meta-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#f8fbff;
  border:1px solid rgba(148,163,184,.16);
  color:#334155;
  font-size:14px;
  font-weight:600;
}

.meta-item i{
  color:#2563eb;
}

.dle-service-lead{
  font-size:18px;
  line-height:1.85;
  color:#1e293b;
  font-weight:500;
  margin-bottom:22px;
  padding:20px 22px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(37,99,235,.06), rgba(56,189,248,.05));
  border:1px solid rgba(37,99,235,.08);
}

.dle-service-text{
  color:#475569;
  font-size:16px;
  line-height:1.95;
}

.dle-service-text p{
  margin-bottom:16px;
}

.dle-service-text h2,
.dle-service-text h3,
.dle-service-text h4{
  color:#0f172a;
  line-height:1.25;
  margin:28px 0 12px;
  font-weight:800;
}

.dle-service-text h2{font-size:30px;}
.dle-service-text h3{font-size:24px;}
.dle-service-text h4{font-size:20px;}

.dle-service-text ul,
.dle-service-text ol{
  padding-left:18px;
  margin:14px 0 18px;
}

.dle-service-text li{
  margin-bottom:10px;
}

.dle-service-text img{
  max-width:100%;
  height:auto;
  border-radius:24px;
  margin:18px 0;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.dle-service-features{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:28px;
}

.service-feature-box{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  background:#fff;
  border:1px solid rgba(148,163,184,.14);
  border-radius:18px;
  box-shadow:0 12px 28px rgba(15,23,42,.05);
  font-weight:700;
  color:#0f172a;
}

.service-feature-box i{
  color:#16a34a;
  font-size:18px;
  flex-shrink:0;
}

.dle-service-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.service-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  transition:.3s ease;
  text-decoration:none;
}

.service-btn:hover{
  transform:translateY(-3px);
}

.primary-btn{
  color:#fff;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  box-shadow:0 14px 28px rgba(37,99,235,.24);
}

.whatsapp-btn{
  color:#fff;
  background:linear-gradient(135deg,#16a34a,#22c55e);
  box-shadow:0 14px 28px rgba(34,197,94,.22);
}

.viber-btn{
  color:#fff;
  background:linear-gradient(135deg,#7c3aed,#8b5cf6);
  box-shadow:0 14px 28px rgba(124,58,237,.22);
}

.dle-service-sidebar{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.dle-main-image-card{
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(148,163,184,.14);
  box-shadow:0 18px 45px rgba(15,23,42,.07);
}

.dle-main-image-card img{
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  display:block;
}

.dle-contact-card{
  background:linear-gradient(145deg,#0f172a,#16243d);
  color:#fff;
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
}

.contact-card-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg,#2563eb,#38bdf8);
  display:grid;
  place-items:center;
  color:#fff;
  font-size:22px;
  margin-bottom:16px;
}

.dle-contact-card h3{
  font-size:26px;
  line-height:1.2;
  margin-bottom:12px;
  font-weight:800;
}

.dle-contact-card p{
  color:rgba(255,255,255,.82);
  line-height:1.85;
  font-size:15px;
  margin-bottom:16px;
}

.contact-info-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

.contact-info-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#fff;
  font-size:15px;
  line-height:1.65;
}

.contact-info-list i{
  color:#fbbf24;
  margin-top:3px;
  flex-shrink:0;
}

.dle-mini-benefits{
  display:grid;
  gap:14px;
}

.mini-benefit{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  background:#fff;
  border:1px solid rgba(148,163,184,.14);
  border-radius:22px;
  box-shadow:0 12px 30px rgba(15,23,42,.05);
}

.mini-benefit i{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(37,99,235,.12), rgba(56,189,248,.12));
  color:#2563eb;
  font-size:18px;
  flex-shrink:0;
}

.mini-benefit strong{
  display:block;
  color:#0f172a;
  font-size:15px;
  margin-bottom:3px;
}

.mini-benefit span{
  display:block;
  color:#64748b;
  font-size:13px;
}

.dle-service-gallery{
  margin-top:28px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(148,163,184,.14);
  box-shadow:0 20px 60px rgba(15,23,42,.07);
  border-radius:30px;
  padding:30px;
}

.dle-service-gallery h2{
  font-size:32px;
  color:#0f172a;
  margin-bottom:20px;
  font-weight:800;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.gallery-item{
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(148,163,184,.14);
}

.gallery-item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  transition:.35s ease;
}

.gallery-item:hover img{
  transform:scale(1.05);
}

.dle-service-bg{
  position:absolute;
  border-radius:999px;
  filter:blur(70px);
  opacity:.35;
  pointer-events:none;
}

.shape-1{
  width:260px;
  height:260px;
  background:#60a5fa;
  top:50px;
  left:-80px;
}

.shape-2{
  width:240px;
  height:240px;
  background:#fbbf24;
  bottom:20px;
  right:-70px;
}

@media (max-width: 1100px){
  .dle-service-grid{
    grid-template-columns:1fr;
  }

  .dle-service-sidebar{
    order:-1;
  }

  .gallery-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 768px){
  .dle-service-fullstory{
    padding:35px 0 60px;
  }

  .dle-service-container{
    width:min(1280px, calc(100% - 20px));
  }

  .dle-service-content,
  .dle-contact-card,
  .dle-service-gallery,
  .dle-main-image-card{
    border-radius:24px;
  }

  .dle-service-content{
    padding:22px 16px;
  }

  .dle-service-content h1{
    font-size:32px;
  }

  .dle-service-lead{
    font-size:16px;
    padding:16px;
    border-radius:18px;
  }

  .dle-service-text{
    font-size:15px;
    line-height:1.85;
  }

  .dle-service-features{
    grid-template-columns:1fr;
  }

  .dle-service-buttons{
    flex-direction:column;
  }

  .service-btn{
    width:100%;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-item img{
    height:220px;
  }

  .dle-service-meta{
    gap:8px;
  }

  .meta-item{
    font-size:13px;
    padding:9px 12px;
  }
}
