:root{
      --primary-color:#ff7a00;
      --primary-dark:#e66d00;
      --secondary-color:#0f172a;
      --text-color:#475569;
      --white:#ffffff;
      --light-bg:#f8fafc;
      --soft-bg:#fff7f0;
      --border-color:rgba(15,23,42,0.08);
      --shadow:0 15px 40px rgba(15,23,42,0.08);
      --radius:22px;
      --container:1200px;
    }

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

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter',sans-serif;
      color:var(--secondary-color);
      background:#fff;
      line-height:1.7;
    }

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

    a{
      text-decoration:none;
    }

    ul{
      list-style:none;
    }

/*
    .container{
      width:min(92%, var(--container));
      margin:0 auto;
    }
*/

    .section{
      padding:80px 0;
    }

    .section-title{
      text-align:center;
      max-width:760px;
      margin:0 auto 45px;
    }

    .section-title span{
      display:inline-block;
      padding:8px 16px;
      background:rgba(255,122,0,0.10);
      color:var(--primary-color);
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.4px;
      margin-bottom:14px;
      text-transform:uppercase;
    }

    .section-title h2{
      font-size:clamp(28px,4vw,42px);
      line-height:1.2;
      margin-bottom:14px;
      font-weight:800;
      color:var(--secondary-color);
    }

    .section-title p{
      color:var(--text-color);
      font-size:16px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:14px 28px;
      border-radius:999px;
      font-weight:700;
      transition:.3s ease;
      border:none;
      cursor:pointer;
    }

    .btn-primary{
      background:var(--primary-color);
      color:#fff;
      box-shadow:0 12px 25px rgba(255,122,0,0.25);
    }

    .btn-primary:hover{
      background:var(--primary-dark);
      transform:translateY(-2px);
    }

    .btn-outline{
      border:1px solid rgba(255,255,255,0.35);
      color:#fff;
      background:transparent;
    }

    .btn-outline:hover{
      background:#fff;
      color:var(--secondary-color);
    }

    #preloader{
      position:fixed;
      inset:0;
      background:#fff;
      z-index:99999;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .spinner{
      width:48px;
      height:48px;
      border:4px solid #eee;
      border-top:4px solid var(--primary-color);
      border-radius:50%;
      animation:spin 1s linear infinite;
    }

    @keyframes spin{
      to{transform:rotate(360deg);}
    }

    .page-header{
      position:relative;
      padding:110px 0 80px;
      background:
        linear-gradient(135deg, rgba(15,23,42,0.90), rgba(15,23,42,0.78)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      overflow:hidden;
    }

  

    .page-header .container{
      position:relative;
      z-index:2;
    }

    .page-header h1{
      font-size:clamp(34px,5vw,58px);
      color:#fff;
      line-height:1.1;
      margin-bottom:16px;
      font-weight:800;
      max-width:760px;
    }

    .page-header p{
      max-width:720px;
      color:rgba(255,255,255,0.85);
      font-size:18px;
      margin-bottom:26px;
    }

    .breadcrumb{
      color:rgba(255,255,255,0.75);
      font-size:14px;
      margin-top:10px;
    }

    .breadcrumb a{
      color:#fff;
    }

    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:18px;
    }

    .details-layout{
      display:grid;
      grid-template-columns:minmax(0, 1.7fr) minmax(300px, .8fr);
      gap:32px;
      align-items:start;
    }

    .content-card,
    .sidebar-card,
    .feature-card,
    .faq-item,
    .highlight-card,
    .process-card{
      background:#fff;
      border:1px solid var(--border-color);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }

    .content-card{
      padding:28px;
    }

    .content-card img.hero-service-img{
      width:100%;
      border-radius:18px;
      margin-bottom:28px;
      min-height:320px;
      object-fit:cover;
    }

    .content-card h2{
      font-size:clamp(26px,3vw,36px);
      line-height:1.2;
      margin-bottom:16px;
      font-weight:800;
      color:var(--secondary-color);
    }

    .content-card h3{
      font-size:clamp(22px,2.4vw,28px);
      margin:34px 0 14px;
      font-weight:800;
      color:var(--secondary-color);
    }

    .content-card p{
      color:var(--text-color);
      margin-bottom:16px;
      font-size:16px;
    }

    .content-card strong{
      color:var(--secondary-color);
    }

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

    .features-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:16px 18px;
      background:var(--soft-bg);
      border-radius:16px;
      color:var(--secondary-color);
      font-weight:600;
    }

    .features-list li i{
      color:var(--primary-color);
      margin-top:4px;
    }

    .benefit-box{
      margin-top:22px;
      padding:22px;
      border-radius:18px;
      background:linear-gradient(135deg, #fff7f0, #ffffff);
      border:1px solid rgba(255,122,0,0.12);
    }

    .benefit-box p:last-child{
      margin-bottom:0;
    }

    .sidebar{
      display:flex;
      flex-direction:column;
      gap:24px;
      position:sticky;
      top:100px;
    }

    .sidebar-card{
      padding:24px;
    }

    .sidebar-card h3{
      font-size:22px;
      margin-bottom:16px;
      font-weight:800;
      color:var(--secondary-color);
    }

    .widget-list li + li{
      margin-top:10px;
    }

    .widget-list a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      border-radius:14px;
      background:#f8fafc;
      color:var(--secondary-color);
      border:1px solid rgba(15,23,42,0.06);
      font-weight:600;
      transition:.3s ease;
    }

    .widget-list a:hover,
    .widget-list a.active{
      background:var(--primary-color);
      color:#fff;
      transform:translateX(4px);
    }

    .contact-widget{
      background:linear-gradient(135deg, var(--secondary-color), #1e293b);
      color:#fff;
      overflow:hidden;
      position:relative;
    }

    .contact-widget::before{
      content:"";
      position:absolute;
      top:-60px;
      right:-60px;
      width:160px;
      height:160px;
      border-radius:50%;
      background:rgba(255,122,0,0.16);
    }

    .contact-widget > *{
      position:relative;
      z-index:2;
    }

    .contact-widget p{
      color:rgba(255,255,255,0.82);
      margin-bottom:18px;
    }

    .mini-points{
      margin:18px 0 22px;
      display:grid;
      gap:12px;
    }

    .mini-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#fff;
      font-size:15px;
    }

    .mini-points i{
      color:var(--primary-color);
      margin-top:4px;
    }

    .features-grid,
    .process-grid,
    .highlights-grid,
    .faq-grid{
      display:grid;
      gap:24px;
    }

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

    .feature-card{
      padding:28px 24px;
      transition:.3s ease;
    }

    .feature-card:hover,
    .highlight-card:hover,
    .process-card:hover{
      transform:translateY(-6px);
    }

    .feature-icon,
    .process-icon,
    .highlight-icon{
      width:58px;
      height:58px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(255,122,0,0.10);
      color:var(--primary-color);
      font-size:24px;
      margin-bottom:18px;
    }

    .feature-card h3,
    .process-card h3,
    .highlight-card h3{
      font-size:22px;
      margin-bottom:12px;
      font-weight:800;
      color:var(--secondary-color);
    }

    .feature-card p,
    .process-card p,
    .highlight-card p{
      color:var(--text-color);
      font-size:15px;
    }

    .soft-bg{
      background:linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
    }

    .process-grid{
      grid-template-columns:repeat(4, 1fr);
    }

    .process-card,
    .highlight-card{
      padding:26px 22px;
    }

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

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

    .faq-item{
      padding:24px;
    }

    .faq-item h3{
      font-size:19px;
      margin-bottom:10px;
      font-weight:800;
      color:var(--secondary-color);
    }

    .faq-item p{
      color:var(--text-color);
      font-size:15px;
      margin:0;
    }

    .cta-section{
      padding:90px 0;
    }

    .cta-box{
      background:linear-gradient(135deg, var(--primary-color), #ff9d33);
      color:#fff;
      border-radius:30px;
      padding:50px 42px;
      text-align:center;
      box-shadow:0 22px 50px rgba(255,122,0,0.28);
    }

    .cta-box h2{
      font-size:clamp(28px,4vw,44px);
      line-height:1.2;
      font-weight:800;
      margin-bottom:14px;
    }

    .cta-box p{
      max-width:760px;
      margin:0 auto 22px;
      color:rgba(255,255,255,0.92);
      font-size:16px;
    }

    .cta-actions{
      display:flex;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }

    .cta-box .btn-primary{
      background:#fff;
      color:var(--secondary-color);
      box-shadow:none;
    }

    .cta-box .btn-primary:hover{
      background:#f8fafc;
    }

    .seo-copy{
      margin-top:30px;
      padding:26px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--border-color);
      box-shadow:var(--shadow);
    }

    .seo-copy h3{
      margin-bottom:12px;
      font-size:24px;
      font-weight:800;
    }

    .seo-copy p{
      color:var(--text-color);
      font-size:15px;
      margin:0;
    }

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

      .sidebar{
        position:static;
      }

      .features-grid,
      .highlights-grid{
        grid-template-columns:repeat(2, 1fr);
      }

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

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

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

      .page-header{
        padding:25px 0 31px;
      }

      .hero-actions{
        flex-direction:column;
        align-items:stretch;
      }

      .hero-actions .btn{
        width:100%;
      }

      .content-card,
      .sidebar-card,
      .faq-item,
      .process-card,
      .feature-card,
      .highlight-card{
        padding:22px 18px;
      }

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

      .features-grid,
      .process-grid,
      .highlights-grid{
        grid-template-columns:1fr;
      }

      .content-card img.hero-service-img{
        min-height:220px;
      }

      .cta-box{
        padding:36px 22px;
        border-radius:22px;
      }

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

      .cta-actions .btn{
        width:100%;
      }
    }