/* Below-fold styles for website-creation page */


    .hero{
      position:relative;
      padding:4.2rem 0 3.8rem;
    }

    .hero-header{
      max-width:1100px;
      margin:0 auto 2.8rem;
      text-align:center;
    }

    .hero-title{
      font-weight:800;
      font-size:2.7rem;
      line-height:1.1;
      margin-bottom:1rem;
    }

    .hero-copy{
      font-size:1.08rem;
      max-width:580px;
      margin:0 auto;
      color:#3a4046;
    }

    .hero-pills{
      display:flex;
      flex-wrap:wrap;
      gap:.65rem;
      margin:2rem 0 0;
      justify-content:center;
    }

    .hero-pills span{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      background:#fff;
      border:1px solid rgba(33,37,41,.1);
      border-radius:999px;
      padding:.48rem 1.05rem;
      font-weight:600;
      font-size:.92rem;
      color:var(--ink);
      box-shadow:0 .35rem 1.05rem rgba(33,37,41,.08);
    }

    .hero-pills i{
      color:#1fb87a;
    }

    .hero-cta{
      margin:2rem 0 0;
      display:flex;
      justify-content:center;
    }

    .hero-cta .btn-hero{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      padding:.85rem 1.8rem;
      border-radius:.95rem;
      font-weight:700;
      border:1px solid transparent;
      background:var(--accent);
      color:var(--ink) !important;
      box-shadow:0 .85rem 2rem rgba(137,214,251,.35);
      transition:transform .18s ease, box-shadow .18s ease;
    }

    .hero-cta .btn-hero i{
      color:inherit;
    }

    .hero-cta .btn-hero:hover,
    .hero-cta .btn-hero:focus{
      transform:translateY(-2px);
      background:var(--accent-dark);
      box-shadow:0 1rem 2.35rem rgba(87,196,242,.32);
      color:var(--ink);
    }

    .hero-plans{
      display:flex;
      flex-direction:column;
      align-items:center;
    }

    .badge-save{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      background:rgba(255,90,95,.12);
      color:var(--danger);
      border:1px solid rgba(255,90,95,.32);
      border-radius:999px;
      padding:.4rem .95rem;
      font-weight:700;
      letter-spacing:.05em;
      text-transform:uppercase;
      box-shadow:0 .55rem 1.35rem rgba(255,90,95,.18);
    }

    /* Package Layout - Sticky Card Left + Features Right */
    .package-layout{
      display:grid;
      grid-template-columns:340px 1fr;
      gap:2.5rem;
      align-items:start;
      max-width:1100px;
      margin:0 auto;
    }

    .package-card-wrapper{
      position:sticky;
      top:100px;
    }

    .package-card{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.1);
      border-radius:1.2rem;
      box-shadow:0 1rem 2.5rem rgba(33,37,41,.1);
      padding:1.8rem;
      text-align:center;
    }

    .package-tag{
      display:inline-block;
      background:var(--accent);
      color:var(--ink);
      font-size:.72rem;
      font-weight:700;
      border-radius:999px;
      padding:.35rem .9rem;
      letter-spacing:.06em;
      text-transform:uppercase;
      margin-bottom:.8rem;
    }

    .package-title{
      font-weight:800;
      font-size:1.5rem;
      margin:0 0 .4rem;
      color:var(--ink);
    }

    .package-desc{
      color:var(--muted);
      font-size:.92rem;
      margin:0 0 1.2rem;
      line-height:1.4;
    }

    .package-price{
      display:flex;
      flex-wrap:wrap;
      align-items:baseline;
      justify-content:center;
      gap:.4rem;
      margin-bottom:1.2rem;
    }

    .package-price .price-from{
      font-size:.9rem;
      color:var(--muted);
    }

    .package-price .price-amount{
      font-size:1.6rem;
      font-weight:900;
      color:var(--ink);
    }

    .package-price .price-note{
      width:100%;
      font-size:.78rem;
      color:var(--muted);
      text-align:center;
      margin-top:.3rem;
    }

    .package-highlights{
      display:flex;
      flex-direction:column;
      gap:.4rem;
      margin-bottom:1.4rem;
      text-align:left;
      background:#f9f9f9;
      padding:.8rem 1rem;
      border-radius:.5rem;
    }

    .package-highlights .highlight{
      font-size:.85rem;
      color:#555;
      padding-left:.8rem;
      position:relative;
    }

    .package-highlights .highlight::before{
      content:"✓";
      position:absolute;
      left:0;
      color:var(--ink);
      font-weight:700;
      font-size:.75rem;
    }

    .btn-block{
      display:block;
      width:100%;
      text-align:center;
      padding:.9rem 1.5rem;
      font-size:.95rem;
    }

    .package-contact{
      display:flex;
      gap:.5rem;
      margin-top:1rem;
    }

    .contact-link{
      flex:1;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:.4rem;
      padding:.55rem .7rem;
      border-radius:.5rem;
      font-size:.8rem;
      font-weight:600;
      transition:all .15s ease;
      background:#f5f5f5;
      color:#333 !important;
      border:1px solid #e0e0e0;
    }

    .contact-link:hover{
      background:#e8e8e8;
      color:#333 !important;
    }

    .contact-link i{
      font-size:.9rem;
    }

    .package-note{
      margin:.8rem 0 0;
      font-size:.8rem;
      color:var(--muted);
    }

    /* Features List Right Side */
    .package-features-list{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.08);
      border-radius:1.2rem;
      box-shadow:0 1rem 2rem rgba(33,37,41,.06);
      padding:2rem;
    }

    .features-title{
      font-weight:800;
      font-size:1.4rem;
      margin:0 0 1.5rem;
      color:var(--ink);
    }

    .feature-category{
      margin-bottom:1.8rem;
      padding-bottom:1.5rem;
      border-bottom:1px solid rgba(33,37,41,.06);
    }

    .feature-category:last-child{
      margin-bottom:0;
      padding-bottom:0;
      border-bottom:none;
    }

    .feature-category h4{
      font-size:.95rem;
      font-weight:700;
      color:var(--ink);
      margin:0 0 .6rem;
      padding-bottom:.4rem;
      border-bottom:2px solid var(--accent);
      display:inline-block;
    }

    .feature-category ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:.4rem 1.5rem;
    }

    .feature-category ul li{
      font-size:.9rem;
      color:#3a4046;
      padding-left:1rem;
      position:relative;
    }

    .feature-category ul li::before{
      content:"";
      position:absolute;
      left:0;
      top:.55rem;
      width:5px;
      height:5px;
      background:var(--accent);
      border-radius:50%;
    }

    @media (max-width: 900px){
      .package-layout{
        grid-template-columns:1fr;
        gap:1.5rem;
      }
      .package-card-wrapper{
        position:relative;
        top:0;
      }
      .package-card{
        max-width:400px;
        margin:0 auto;
      }
      .feature-category ul{
        grid-template-columns:1fr;
      }
    }

    .plan-card.featured .plan-tag{
      background:var(--accent);
      color:var(--ink);
    }

    .plan-title{
      font-weight:800;
      font-size:1.28rem;
      margin:0;
    }

    .plan-card .desc{
      margin:0;
      color:#3f454b;
      font-size:.98rem;
    }

    .price{
      display:flex;
      align-items:baseline;
      gap:.7rem;
    }

    .price .now{
      font-size:2.3rem;
      font-weight:900;
      color:var(--ink);
      line-height:1;
    }

    .price .old{
      color:var(--ink);
      opacity:.55;
      text-decoration:line-through;
      font-weight:700;
      font-size:1.02rem;
    }

    .plan-card.featured .price .now{
      color:var(--danger);
    }

    .plan-card ul{
      list-style:none;
      padding:0;
      margin:.3rem 0 1.1rem;
      display:flex;
      flex-direction:column;
      gap:.55rem;
    }

    .plan-card ul li{
      display:flex;
      gap:.6rem;
      align-items:flex-start;
      color:#2f353b;
      font-size:.96rem;
      line-height:1.4;
    }

    .plan-card ul i{
      color:#1fb87a;
      margin-top:.2rem;
      font-size:.95rem;
    }

    .plan-card ul span{
      color:var(--ink);
      font-weight:600;
    }

    .plan-card .note{
      font-size:.9rem;
      color:var(--muted);
      margin:0;
    }

    .plan-card .btn-brand,
    .plan-card .btn-outline-brand{
      width:100%;
    }

    .btn-brand,
    .btn-outline-brand{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-weight:700;
      border-radius:.95rem;
      padding:.78rem 1.6rem;
      letter-spacing:.18px;
      transition:transform .18s ease, box-shadow .18s ease, color .18s ease;
    }

    .btn-brand{
      background:var(--accent);
      border:1px solid var(--accent);
      color:var(--ink);
      box-shadow:0 .75rem 1.9rem rgba(137,214,251,.45);
    }

    .btn-brand:hover,
    .btn-brand:focus{
      transform:translateY(-2px);
      background:var(--accent-dark);
      border-color:var(--accent-dark);
      box-shadow:0 .95rem 2.15rem rgba(87,196,242,.36);
      color:var(--ink);
    }

    .btn-outline-brand{
      background:#fff;
      border:1.5px solid var(--accent);
      color:var(--ink);
      box-shadow:0 .55rem 1.35rem rgba(33,37,41,.08);
    }

    .btn-outline-brand:hover,
    .btn-outline-brand:focus{
      background:var(--accent);
      color:var(--ink);
      transform:translateY(-2px);
    }

    .hero-disclaimer{
      font-size:.9rem;
      color:var(--muted);
      text-align:center;
      max-width:780px;
    }

    .hero-disclaimer a{
      color:#0369a1 !important;
      text-decoration:underline !important;
    }

    .faq-item a{
      color:#0369a1 !important;
      text-decoration:underline !important;
    }

    .hero-note{
      font-size:.92rem;
      color:#444a51;
      text-align:center;
      margin:0;
      font-weight:600;
    }

    .cta-board{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:.9rem;
    }

    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:.9rem;
    }

    .cta-btn{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      padding:.65rem 1.35rem;
      border-radius:50px;
      font-weight:600;
      text-decoration:none;
      transition:transform .18s ease, box-shadow .18s ease, color .18s ease;
      border:none;
    }

    .cta-btn i{
      font-size:1.1rem;
    }

    .cta-btn .cta-copy{
      display:flex;
      flex-direction:column;
      gap:.1rem;
      align-items:flex-start;
    }

    .cta-btn .cta-primary{
      font-size:1rem;
    }

    .cta-btn .cta-secondary{
      font-size:.85rem;
      opacity:.9;
      font-weight:400;
    }

    .cta-btn.whatsapp{
      background:linear-gradient(135deg,#25D366,#1ebe58);
      color:#fff;
      box-shadow:0 4px 12px rgba(37,211,102,.4);
    }

    .cta-btn.whatsapp:hover,
    .cta-btn.whatsapp:focus{
      background:linear-gradient(135deg,#1ebe58,#25D366);
      box-shadow:0 6px 16px rgba(37,211,102,.5);
      transform:translateY(-2px);
      color:#fff;
    }

    .cta-btn.phone{
      background:linear-gradient(135deg,#89D6FB,#72c5ef);
      color:#0b3c4c;
      box-shadow:0 4px 12px rgba(137,214,251,.35);
    }

    .cta-btn.phone:hover,
    .cta-btn.phone:focus{
      background:linear-gradient(135deg,#72c5ef,#5bb8e6);
      box-shadow:0 6px 16px rgba(137,214,251,.45);
      transform:translateY(-2px);
      color:#0b3c4c;
    }

    .cta-btn.phone .cta-secondary{
      color:white;
      opacity:.8;
    }

    .wa-badge{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.38rem .7rem;
      font-size:.82rem;
      font-weight:600;
      background:#e9f7ef;
      color:#146c43;
      border-radius:999px;
      border:1px solid #d1f0e0;
    }

    .wa-badge i{
      font-size:.85rem;
    }

    .trust-strip{
      margin-top:3rem;
      display:grid;
      gap:1.2rem;
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      width:100%;
    }

    .trust-card{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.08);
      border-radius:1.2rem;
      padding:1.6rem;
      box-shadow:0 1.2rem 2.4rem rgba(33,37,41,.08);
    }

    .trust-card .metric{
      font-weight:800;
      font-size:2.1rem;
      margin-bottom:.4rem;
    }

    .trust-card p{
      margin:0;
      color:#3f454b;
      font-size:.96rem;
    }

    .guarantee{
      margin-top:2.2rem;
      font-size:.96rem;
      color:#42474d;
      display:inline-flex;
      align-items:center;
      gap:.55rem;
    }

    .guarantee i{
      color:#1fb87a;
    }

    .faq-block{
      padding:0;
    }

    .faq-block .section-heading{
      max-width:640px;
      margin:0 auto 2rem;
      text-align:center;
    }

    .faq-block h2{
      font-weight:800;
      font-size:2rem;
    }

    .faq-block p{
      color:#495057;
      margin-top:.85rem;
      font-size:1rem;
    }

    .faq-list{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:.8rem;
      max-width:1100px;
      margin:0 auto;
      align-items:start;
    }

    .faq-item{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.08);
      border-radius:.8rem;
      padding:.9rem 1.1rem;
      box-shadow:0 2px 8px rgba(33,37,41,.05);
    }

    .faq-item summary{
      cursor:pointer;
      font-weight:600;
      color:var(--ink);
      font-size:.9rem;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:.8rem;
      line-height:1.4;
    }

    .faq-item summary::marker{
      display:none;
    }

    .faq-item summary i{
      transition:transform .2s ease;
      color:var(--accent);
      font-size:.75rem;
      flex-shrink:0;
    }

    .faq-item[open] summary i{
      transform:rotate(180deg);
    }

    .faq-item p{
      margin:.7rem 0 0;
      color:#3f454b;
      font-size:.85rem;
      line-height:1.5;
    }

    @media(max-width:768px){
      .faq-list{
        grid-template-columns:1fr;
      }
    }

    .result-highlights{
      padding:3.5rem 0;
    }

    .result-highlights .section-heading{
      text-align:center;
      max-width:620px;
      margin:0 auto 2.4rem;
    }

    .stat-grid{
      display:grid;
      gap:1.2rem;
      grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    }

    .stat-card{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.08);
      border-radius:1.2rem;
      padding:1.7rem;
      box-shadow:0 1.2rem 2.4rem rgba(33,37,41,.08);
    }

    .stat-card .label{
      font-size:.94rem;
      color:var(--muted);
      text-transform:uppercase;
      letter-spacing:.08em;
      font-weight:700;
    }

    .stat-card .value{
      font-size:2.25rem;
      font-weight:900;
      margin:.65rem 0;
    }

    .stat-card p{
      margin:0;
      color:#3f454b;
      font-size:.96rem;
    }

    .feature-section{
      padding:3.5rem 0;
    }

    .feature-grid{
      display:grid;
      gap:1.2rem;
      grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    }

    .feature-card{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.08);
      border-radius:1.2rem;
      padding:1.85rem;
      box-shadow:0 1.2rem 2.3rem rgba(33,37,41,.08);
      position:relative;
      overflow:hidden;
    }

    .feature-card::before{
      content:'';
      position:absolute;
      top:-16px;
      left:1.8rem;
      width:48px;
      height:6px;
      border-radius:999px;
      background:var(--accent);
    }

    .feature-card h3{
      font-weight:700;
      font-size:1.12rem;
      margin-bottom:.6rem;
      position:relative;
    }

    .feature-card p{
      margin:0;
      color:#3f454b;
      font-size:.95rem;
      position:relative;
    }

    .process-section{
      padding:3.5rem 0;
    }

    .process-section .section-heading{
      text-align:center;
      max-width:620px;
      margin:0 auto 2.4rem;
    }

    .process-steps{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:1.15rem;
    }

    .process-step{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.08);
      border-radius:1.2rem;
      padding:1.6rem;
      box-shadow:0 1.15rem 2.2rem rgba(33,37,41,.08);
    }

    .process-step span{
      display:inline-block;
      font-weight:800;
      font-size:1.85rem;
      color:var(--accent);
      margin-bottom:.5rem;
    }

    .process-step h3{
      font-weight:700;
      font-size:1.08rem;
      margin-bottom:.4rem;
    }

    .process-step p{
      margin:0;
      color:#3f454b;
      font-size:.95rem;
    }

    .testimonials{
      padding:3.8rem 0;
    }

    .testimonials .section-heading{
      text-align:center;
      max-width:620px;
      margin:0 auto 2.5rem;
    }

    .testimonial-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:1.25rem;
    }

    .testimonial-card{
      background:var(--surface);
      border:1px solid rgba(33,37,41,.08);
      border-radius:1.2rem;
      padding:1.75rem;
      box-shadow:0 1.2rem 2.3rem rgba(33,37,41,.08);
      position:relative;
      overflow:hidden;
    }

    .testimonial-card::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:8px;
      height:100%;
      background:var(--accent);
    }

    .testimonial-card p{
      font-size:1rem;
      color:#2f353b;
      margin-bottom:1.1rem;
      position:relative;
    }

    .testimonial-author{
      font-weight:700;
      color:var(--ink);
      position:relative;
    }

    .testimonial-role{
      display:block;
      font-size:.9rem;
      color:var(--muted);
      margin-top:.2rem;
      position:relative;
    }

    .cta-band{
      padding:4rem 0;
      text-align:center;
    }

    .cta-band .inner{
      background:linear-gradient(140deg,rgba(137,214,251,.35) 0%,#fff 80%);
      border:1.5px solid rgba(137,214,251,.45);
      border-radius:1.9rem;
      padding:2.8rem 2.4rem;
      box-shadow:0 1.8rem 3.4rem rgba(33,37,41,.12);
      max-width:780px;
      margin:0 auto;
    }

    .cta-band h2{
      font-weight:800;
      font-size:2.1rem;
      margin-bottom:1.1rem;
    }

    .cta-band p{
      font-size:1.05rem;
      color:#3a4046;
      margin-bottom:2rem;
    }

    .cta-band .btn-group{
      display:flex;
      flex-wrap:wrap;
      gap:1.05rem;
      justify-content:center;
    }

    @media (max-width: 992px){
      .hero-title{
        font-size:2.45rem;
      }

      .plan-card{
        max-width:100%;
      }
    }

    @media (max-width: 576px){
      .hero{
        padding:3.5rem 0 3.4rem;
      }

      .hero-title{
        font-size:2.25rem;
      }

      .hero-pills span{
        width:100%;
        justify-content:center;
      }

      .hero-cta{
        margin-top:1.6rem;
      }

      .cta-board{
        gap:1.1rem;
      }

      .cta-actions{
        width:100%;
        flex-direction:column;
      }

      .cta-btn{
        width:100%;
        justify-content:center;
      }

      .cta-btn .cta-copy{
        align-items:center;
        text-align:center;
      }

      .btn-brand,
      .btn-outline-brand{
        width:100%;
      }

      .faq-item{
        border-radius:1rem;
      }
    }

    .cta-primary {
        color:white !important;
    }
    .cta-btn i {
        color:white !important;
    }

    /* Trust Strip */
    .trust-strip-inline{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:center;
      gap:1.2rem;
      padding:1rem 0;
      margin-bottom:1.5rem;
    }

    .trust-item{
      display:flex;
      align-items:center;
      gap:.4rem;
      font-size:.9rem;
      color:#5a6066;
    }

    .trust-item img{
      width:20px;
      height:20px;
      flex-shrink:0;
    }

    .trust-value{
      font-weight:700;
      color:var(--ink);
    }

    .trust-stars{
      color:#f5c518;
      font-size:.85rem;
      letter-spacing:-1px;
    }

    .trust-label{
      color:#5a6066;
    }

    .trust-divider{
      width:1px;
      height:1rem;
      background:rgba(33,37,41,.15);
    }

    @media(max-width:576px){
      .trust-strip-inline{
        gap:.8rem 1rem;
      }
      .trust-divider{
        display:none;
      }
      .trust-item{
        font-size:.82rem;
      }
    }

/* Additional section-specific styles */

/* Section styles (was at line 1203) */
      #reviewsCarouselWC::-webkit-scrollbar { display: none; }

/* Section styles (was at line 1321) */
  .hand-underline{
    position: relative;
    display: inline-block;
    color: inherit !important;
  }

  .hand-underline::after{
    content: '';
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -5px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 30 2, 60 7 T 120 5 T 180 8 Q 195 9, 198 7' stroke='%2389D6FB' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
  }

/* Section styles (was at line 1343) */
  /* Mobile section reordering - Package after Reviews+SEO */
  .mobile-reorder-wrapper {
    display: flex;
    flex-direction: column;
  }

  /* Features accordion - hidden on desktop */
  .features-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    margin: 1rem 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd;
    border-radius: 10px;
    color: #0369a1;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .features-toggle-btn:hover {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  }
  .features-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
  }
  .features-toggle-btn.expanded .toggle-icon {
    transform: rotate(180deg);
  }

  @media(max-width: 768px) {
    .mobile-order-reviews { order: 1; }
    .mobile-order-seo { order: 2; }
    .mobile-order-package { order: 3; }

    /* Mobile: Hide reviews link in social proof */
    .mobile-reviews-link { display: none !important; }

    /* Mobile: Center the last stat (Timp răspuns) when it wraps */
    .social-proof-stats { grid-template-columns: 1fr 1fr !important; }
    .social-proof-stats > div:last-child { grid-column: 1 / -1; }

    /* Mobile: Features accordion */
    .features-toggle-btn { display: flex !important; }
    .features-accordion { display: none; }
    .features-accordion.expanded { display: block; }

    section [style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }
    section [style*="order: 1"],
    section [style*="order: 2"] {
      order: unset !important;
    }
    section [style*="max-width: 1000px"] {
      padding: 0 1rem !important;
    }
  }

/* Section styles (was at line 1464) */
  .process-section-new{
    padding: 4rem 0;
    background: #fff;
  }

  .process-header{
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
  }

  .process-badge{
    display: inline-block;
    background: #f0fdf4;
    color: #166534 !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }

  .process-header h2{
    font-size: 2rem;
    font-weight: 800;
    color: #1a1d23 !important;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .process-header p{
    color: #5a6169 !important;
    font-size: 1.05rem;
    margin: 0;
  }

  .process-timeline{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
  }

  .process-card{
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.8rem 1.5rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }

  .process-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
  }

  .process-icon{
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1d23 0%, #374151 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .process-icon i{
    color: #fff !important;
    font-size: 1.2rem;
  }

  .process-number{
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #64748b;
    line-height: 1;
  }

  .process-card h3{
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1d23 !important;
    margin-bottom: 0.6rem;
  }

  .process-card p{
    color: #5a6169 !important;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
  }

  .process-footer{
    text-align: center;
    margin-top: 2rem;
  }

  .process-total{
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1a1d23;
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
  }

  .process-total i{
    color: #10b981 !important;
  }

  .process-total span{
    color: #fff !important;
  }

  .process-total strong{
    color: #10b981 !important;
  }

  .process-cta{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    margin-left: 2rem;
    color: #1a1d23 !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
  }

  .process-cta:hover{
    color: #374151 !important;
    gap: 0.7rem;
  }

  .process-cta i{
    color: #89D6FB !important;
    font-size: 0.85rem;
  }

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

  @media(max-width: 576px){
    .process-timeline{
      grid-template-columns: 1fr;
    }
    .process-header h2{
      font-size: 1.6rem;
    }
    .process-section-new{
      padding: 3rem 0;
    }
  }

/* Section styles (was at line 1741) */
  .custom-cta-wrapper{
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
  }

  .custom-cta-wrapper p{
    font-size: 1.1rem;
    color: #5a6169 !important;
    margin-bottom: 1rem;
  }

  .custom-cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1a1d23 !important;
    color: #fff !important;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.2s ease;
  }

  .custom-cta-btn:hover{
    background: #000 !important;
    gap: 0.8rem;
  }

  .custom-cta-btn i{
    color: #89D6FB !important;
    font-size: 0.9rem;
  }

  .custom-design-section{
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  }

  .custom-design-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .custom-badge{
    display: inline-block;
    background: #fef3c7;
    color: #b45309 !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
  }

  .custom-design-content h2{
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1d23 !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .custom-lead{
    font-size: 1.1rem;
    color: #5a6169 !important;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .custom-features{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .custom-feature{
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .custom-feature-icon{
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #1a1d23 0%, #374151 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .custom-feature-icon i{
    color: #fff !important;
    font-size: 1rem;
  }

  .custom-feature h4{
    font-size: 1rem;
    font-weight: 700;
    color: #1a1d23 !important;
    margin: 0 0 0.3rem;
  }

  .custom-feature p{
    font-size: 0.92rem;
    color: #5a6169 !important;
    line-height: 1.6;
    margin: 0;
  }

  /* Preview Mockup */
  .custom-design-visual{
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .preview-mockup{
    background: #1a1d23;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  }

  .preview-header{
    background: #2d3748;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .preview-dots{
    display: flex;
    gap: 6px;
  }

  .preview-dots span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4a5568;
  }

  .preview-dots span:first-child{ background: #fc8181; }
  .preview-dots span:nth-child(2){ background: #f6e05e; }
  .preview-dots span:last-child{ background: #68d391; }

  .preview-url{
    flex: 1;
    background: #1a1d23;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #a0aec0 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .preview-url i{
    color: #68d391 !important;
    font-size: 0.7rem;
  }

  .preview-body{
    padding: 1.5rem;
  }

  .preview-badge-live{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981 !important;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
  }

  .live-dot{
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse{
    0%, 100%{ opacity: 1; }
    50%{ opacity: 0.4; }
  }

  .preview-content{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .preview-block{
    background: #2d3748;
    border-radius: 8px;
    height: 24px;
  }

  .preview-block.header-block{
    height: 16px;
    width: 60%;
  }

  .preview-block.hero-block{
    height: 80px;
    background: linear-gradient(135deg, #374151 0%, #4a5568 100%);
  }

  .preview-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
  }

  .preview-grid .preview-block{
    height: 50px;
  }

  .preview-devices{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #2d3748;
  }

  .preview-devices i{
    color: #4a5568 !important;
    font-size: 1.1rem;
    transition: color 0.2s;
  }

  .preview-devices i:first-child{
    color: #89D6FB !important;
  }

  .preview-note{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b !important;
  }

  .preview-note i{
    color: #89D6FB !important;
  }

  @media(max-width: 992px){
    .custom-design-grid{
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .custom-design-visual{
      order: -1;
    }
    .preview-mockup{
      max-width: 400px;
      margin: 0 auto;
    }
  }

  @media(max-width: 576px){
    .custom-design-section{
      padding: 3rem 0;
    }
    .custom-design-content h2{
      font-size: 1.7rem;
    }
    .preview-url{
      font-size: 0.7rem;
    }
  }

/* Section styles (was at line 2062) */
  .not-for-everyone{
    padding: 3rem 0;
    background: #fafafa;
  }
  .not-for-content{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .not-for-header{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .not-for-header i{
    font-size: 1.3rem;
    color: #ef4444;
  }
  .not-for-header h2,
  .not-for-header h3{
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
  }
  .not-for-intro{
    color: #6b7280;
    margin-bottom: 1.2rem;
  }
  .not-for-list{
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: inline-block;
    text-align: left;
  }
  .not-for-list li{
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
  }
  .not-for-list li i{
    color: #ef4444;
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
  }
  .not-for-outro{
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.6;
  }
  .not-for-outro strong{
    color: #047857;
  }

/* Section styles (was at line 2360) */
  @keyframes modalSlideUpWC {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* Section styles (was at line 2519) */
#mobile-sticky-cta{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 10px 12px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  gap: 10px;
}
#mobile-sticky-cta .sticky-btn{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
#mobile-sticky-cta .sticky-btn.whatsapp{
  background: #25D366;
  color: #fff !important;
}
#mobile-sticky-cta .sticky-btn.whatsapp:hover{
  background: #1ebe58;
}
#mobile-sticky-cta .sticky-btn.offer{
  background: #1a1d23;
  color: #fff !important;
}
#mobile-sticky-cta .sticky-btn.offer:hover{
  background: #000;
}
#mobile-sticky-cta .sticky-btn i{
  font-size: 16px;
}
@media (max-width: 768px){
  #mobile-sticky-cta{
    display: flex;
  }
  /* Hide floating WhatsApp on mobile when sticky bar is visible */
  #whatsapp-expert{
    display: none !important;
  }
  /* Add padding to body so content doesn't hide behind sticky bar */
  body{
    padding-bottom: 70px;
  }
}
