:root {
    --white: #FFFFFF;
    --radius: 16px;
    --border: #fafaf8;
    --primary: #0DBC14;
  }
  .badges-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.badge-item {
    text-align: center;
}
.badge-item img {
    height: 80px;
}
.heading-4{
  font-size: 23px;
    line-height: 32px;
}
.badge-label {
    font-size: 0.9rem;
    color: #464646;
    font-weight: normal;
}
.tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--primary-pale);
    color: var(--primary);
    margin-bottom: 16px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #2c2c2c; color: #fff;
    padding: 14px 28px; border-radius: 8px;
     font-weight: 600; font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
    border: none; cursor: pointer;
  }
  .btn-primary:hover { background: #4d4d4d; transform: translateY(-2px); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--dark);
    padding: 13px 27px; border-radius: 8px;
    font-weight: 600; font-size: 0.95rem;
    border: 2px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
  }
  .btn-outline:hover { border-color: var(--primary); color: var(--primary); }
  .bht-whatsapp{
    background: #56c05b !important;
    color: white !important;
    font-weight: 300 !important;
  }
  .bht-whatsapp:hover{
    color: #56c05b !important;
    border:1px solid #56c05b !important;
    background: white !important;
    font-weight: 600 !important;
  }
  
  /* ===== HERO ===== */
  .hero {
    padding: 90px 0 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,92,53,0.08) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .hero-inner {
    display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: center; margin-top: 130px; padding-bottom: 50px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    color: #05966a; background: #ecfef6; border: 1px solid #e0f5ec;
    border-radius: 100px; padding: 6px 16px 6px 12px;
    font-size: 0.8rem; font-weight: 500; margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }
  .hero-text h1{
    font-size: 56px;
    max-width: 800px;
    line-height: 67px;
    margin-bottom: 20px;
  }
  .hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background:#ff8802; animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,92,53,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(255,92,53,0); }
  }
  .hero h1 { margin-bottom: 24px; }
  .hero h1 em { font-style: normal; color: var(--primary); }
  .hero-sub { font-size: 1.2rem;
    color: #6f6f6f;
    margin-bottom: 36px;
    max-width: 660px;
    line-height: 25px;}
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
  .hero-trust {
    display: flex; gap: 32px; flex-wrap: wrap;
  }
  .hero-stat { }
  .hero-stat strong {
    display: block; 
    font-size: 1.6rem; font-weight: 800; color: var(--dark);
  }
  .hero-stat span { font-size: 0.82rem; color: var(--soft); }
  .hero-visual {
    position: relative;
    background-color: white;
    border-radius: 15px;
  }
  .hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
  }
  .hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .metric-box {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
  }
  .metric-box::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: #0cbc15;
  }
  .metric-box.green::after { background: #efd34e; }
  .metric-box.blue::after { background: #4ecdef; }
  .metric-num {
     font-size: 2rem; font-weight: 800;
    color: var(--dark); line-height: 1;
  }
  .metric-num span { font-size: 1.1rem; color: var(--primary); }
  .metric-label { font-size: 0.78rem; color: var(--soft); margin-top: 4px; }
  .metric-change {
    display: inline-block; margin-top: 8px;
    font-size: 0.72rem; font-weight: 600;
    background: #ECFDF5; color: #059669;
    padding: 2px 8px; border-radius: 100px;
  }
  .hero-floating {
    position: absolute; bottom: -20px; left: -24px;
    background: #2c2c2c; color: #fff;
    border-radius: 12px; padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem;
  }
  .hero-floating strong { display: block;  font-size: 1rem; }
  .avatar-stack { display: flex; }
  .avatar {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid #b9b9b9;
    background: gray;;
    margin-left: -6px; font-size: 0.6rem; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
  }
  .avatar:first-child { margin-left: 0; }

  /* ===== MARQUEE (LOGOS) ===== */
  .marquee-section {
    padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--white); overflow: hidden;
  }
  .marquee-track {
    display: flex; gap: 56px; align-items: center;
    animation: marquee 30s linear infinite; width: max-content;
  }
  .marquee-item {
     font-size: 0.85rem; font-weight: 700;
    color: #BBBBB8; letter-spacing: 0.05em; white-space: nowrap;
    text-transform: uppercase;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ===== SECTION DIVIDER ===== */
  .section { padding: var(--section-pad); }
  .section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
  .section-header p { margin-top: 16px; font-size: 1.05rem; }

  /* ===== PROBLEMS (alternating layout) ===== */
  .problems-section { background: var(--white); }
  .problems-intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    margin-bottom: 80px;
  }
  .problems-intro .text-col h2 { margin-bottom: 20px; }
  .problems-intro .text-col p { margin-bottom: 16px; font-size: 1.1rem;  color: gray}
  .problem-list { list-style: none; display: flex; flex-direction: column; gap: 16px;}
  .problem-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 20px; background: #fafaf8;
    border-radius: 16px; border-left: 3px solid #0cbc15;
  }
  .problem-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: #0cbc1529;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .problem-item h4 { font-size: 1.3rem; margin-bottom: 2px; }
  .problem-item p { font-size: 0.83rem; }
  .problems-visual {
    position: relative;
  }
  .big-quote-card {
    background: #2b2b2b;
    color: white;
    border-radius: 20px; padding: 48px;
    position: relative; overflow: hidden;
  }
  .big-quote-card::before {
    content: '"';
    font-size: 12rem; line-height: 1; color: rgb(53 255 162 / 15%);
    position: absolute; top: -20px; right: 20px;
  }
  .big-quote-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 16px; }
  .big-quote-card p { color: rgba(255,255,255,0.65); font-size: 1rem; }
  .quote-highlight {
    margin-top: 28px; padding: 16px 20px;
    background: #0cbc15; border-radius: 10px;
    font-size: 0.9rem; color: #fff; font-weight: 500;
  }

  /* ===== SERVICES ===== */
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .service-card {
    background: white; border-radius: 16px;
    padding: 32px; border: 1px solid #b9eaee;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary); transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }
  .service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); border-color: transparent; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card.featured {
    background: #262626; color: #fff; border-color: transparent;
  }
  .service-card.featured p { color: rgba(255,255,255,0.6); }
  .service-card.featured .service-tag { background: rgba(255,92,53,0.2); color: var(--primary-light); }
  .service-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: #efefef;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 20px;
  }
  .service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
  .service-card h3 { margin-bottom: 10px; }
  .service-card p { font-size: 0.9rem; margin-bottom: 16px; }
  .service-benefit {
    font-size: 0.82rem; font-weight: 600; color: var(--accent-green);
    background: #efefef; padding: 6px 12px; border-radius: 100px;
    display: inline-block;
  }
  .service-card.featured .service-benefit { background: rgba(10,138,95,0.2); color: #4ade80; }

  /* ===== RESULTS TABLE ===== */
  .results-section {
    background: linear-gradient(160deg, #0D0D0D 0%, #1A1A1A 100%);
    color: var(--white);
  }
  .results-section .tag { background: rgba(255,92,53,0.2); color: var(--primary-light); }
  .results-section .section-header { text-align: center; }
  .results-section h2 { color: var(--white); }
  .results-section p { color: rgba(255,255,255,0.6); }
  .results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; }
  .result-cell {
    background: #111; padding: 32px 24px;
    transition: background 0.2s;
  }
  .result-cell:hover { background: #1a1a1a; }
  .result-cell .before { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
  .result-cell .val-before {  font-size: 1.4rem; font-weight: 700; color: rgba(255,255,255,0.4); line-height: 1; }
  .result-cell .arrow { font-size: 1.1rem; color: green; margin: 8px 0; }
  .result-cell .val-after {  font-size: 2rem; font-weight: 800; color: white; line-height: 1; }
  .result-cell .label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 6px; }
  .result-cell .improvement { margin-top: 10px; font-size: 0.75rem; font-weight: 600; color: #4ade80; background: rgba(74,222,128,0.1); padding: 3px 10px; border-radius: 100px; display: inline-block; }

  /* ===== CASE STUDY (image left, text right) ===== */
  .case-section { background: var(--bg); }
  .case-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    padding: 64px;
    background: white; border-radius: 24px;
    border: 1px solid #ebe4cb; margin-bottom: 32px;
    position: relative; overflow: hidden;
  }
  .case-block:nth-child(even) { direction: rtl; }
  .case-block:nth-child(even) > * { direction: ltr; }
  .case-block .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(122, 184, 0, 0.1);
    color: #3ba83b;
    border: 1px solid rgba(122, 184, 0, 0.25);
    margin-bottom: 16px;
    position: relative;
  }

  .case-visual {
    background: #f2f7ea;
    border-radius: 16px; padding: 48px 40px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .case-visual.blue-grad {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  }
  .case-kpi {
    display: flex; justify-content: space-between; align-items: flex-end;
    background: var(--white); border-radius: 10px; padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .case-kpi-label { font-size: 0.8rem; color: var(--soft); }
  .case-kpi-val {  font-size: 1.6rem; font-weight: 800; color: var(--dark); }
  .case-kpi-change { font-size: 0.78rem; color: var(--accent-green); font-weight: 600; }
  .case-content h2 { margin-bottom: 16px; font-size: 1.8rem; }
  .case-content p { margin-bottom: 20px; }
  .case-results { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .case-result-item {
    display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--mid);
  }
  .case-result-item::before { content: '✓'; color: var(--accent-green); font-weight: 700; }

  /* ===== PROCESS ===== */
  .process-section { background: var(--white); }
  .process-track {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    position: relative; margin-top: 16px;
  }
  .process-track::before {
    content: ''; position: absolute;
    top: 32px; left: 10%; right: 10%;
    height: 1px; background: #dbdbdb;
    z-index: 0;
  }
  .process-step { padding: 0 16px; text-align: center; position: relative; }
  .process-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--white); border: 2px solid #dbdbdb;
    display: flex; align-items: center; justify-content: center;
     font-size: 1.2rem; font-weight: 800;
    margin: 0 auto 20px; position: relative; z-index: 1;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    color: var(--dark);
  }
  .process-step:hover .process-num {
    background: #3ba83b; border-color: white; color: #fff;
  }
  .process-step h3 { font-size: 1.3rem !important; margin-bottom: 8px; }
  .process-step p { font-size: 0.85rem; }

  /* ===== INDUSTRIES ===== */
  .industries-section { background: var(--bg); }
  .industries-layout {
    display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start;
  }
  .industry-sidebar { position: sticky;}
  .industry-sidebar h2 { margin-bottom: 16px; }
  .industry-sidebar p { margin-bottom: 28px; }
  .industries-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .industry-card {
    background: var(--white); border-radius: 16px;
    padding: 28px; border: 1px solid #ebd8cf;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .industry-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
  .industry-card .ind-icon {
    font-size: 1.6rem; margin-bottom: 12px;
  }
  .industry-card h3 { font-size: 1.4rem !important; margin-bottom: 6px; }
  .industry-card .pain { font-size: 0.8rem; color: #d76161; margin-bottom: 8px; font-weight: 500; }
  .industry-card .outcome {
    font-size: 0.82rem; color: var(--soft);
  }
  .industry-card .outcome strong { color: green }

  /* ===== COMPARE ===== */
  .compare-section { background: var(--dark); color: var(--white); }
  .compare-section h2 { color: var(--white); text-align: center; margin-bottom: 12px; }
  .compare-section > .container > p { text-align: center; color: rgba(255,255,255,0.5); margin-bottom: 56px; }
  .compare-table {
    border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  }
  .compare-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-cell {
    padding: 20px 24px; font-size: 0.9rem; color: rgba(255,255,255,0.55);
  }
  .compare-cell.label { font-weight: 600; color: rgba(255,255,255,0.8); }
  .compare-cell.bad { color: #f87171; }
  .compare-cell.good { color: #64ca8a; font-weight: 500; }
  .compare-row.head {
    background: rgba(255,255,255,0.05);
  }
  .compare-table .compare-row.head .compare-cell {
     font-size: 0.85rem; font-weight: 700; position: relative;
    text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45);
  }
  .compare-row.header .compare-cell:last-child { color: var(--primary); }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section { background: var(--bg); }
  .testi-header { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: 48px; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; border: 1px solid #d7f0f3;
    display: flex; flex-direction: column; gap: 16px;
  }
  .testi-card.featured {
    background: #111111; color: white; border-color: transparent;
  }
  .testi-card.featured p { color: rgba(255,255,255,0.85); }
  .testi-card.featured .testi-name { color: white; }
  .testi-card.featured .testi-role { color: rgba(255,255,255,0.65); }
  .stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 2px; }
  .testi-card p { font-size: 0.9rem; font-style: italic; flex: 1; }
  .testi-author { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: #3fc2cf;
    display: flex; align-items: center; justify-content: center;
     font-weight: 700; color: white; font-size: 0.9rem;
  }
  .testi-name { font-weight: 600; font-size: 0.9rem; }
  .testi-role { font-size: 0.78rem; color: var(--soft); }
  .ratings-bar {
    margin-top: 48px;
    display: flex; gap: 70px; align-items: center; flex-wrap: wrap;
    padding: 24px 32px; background: var(--white); border-radius: 16px; border: 1px solid var(--border);
  }
  .rating-item { display: flex; align-items: center; gap: 12px; }
  .rating-item strong {  font-size: 1.4rem; font-weight: 800; }
  .rating-item span { font-size: 0.8rem; color: var(--soft); }

  /* ===== PRICING ===== */
  .pricing-section { background: var(--white); }
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .price-card {
    border-radius: var(--radius); padding: 32px 24px;
    border: 1px solid #e4e4e4; transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
  }
  .price-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
  .price-card .btns { border: 1px solid #3d3d3d;}
  .price-card .btns:hover { background-color: var(--primary); color: white; border: 1px solid var(--primary);}
  .price-card.popular {
    background: var(--primary); color: white; border-color: transparent;
  }
  .price-card.popular p, .price-card.popular .price-label { color: rgba(255,255,255,0.7); }
  .price-card.popular h3, .price-card.popular .price-amount { color: white; }
  .popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #111111; color: white;
    font-size: 0.7rem; font-weight: 700; padding: 4px 14px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
  }
  .price-type { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--soft); margin-bottom: 8px; }
  .price-card h3 { font-size: 1.3rem !important;}
  .price-amount {  font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
  .price-label { font-size: 0.8rem; color: var(--soft); margin-bottom: 24px; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .price-features li {
    font-size: 0.85rem; display: flex; gap: 8px; align-items: flex-start;
    color: var(--mid);
  }
  .price-card.popular .price-features li { color: rgba(255,255,255,0.8); }
  .price-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; flex-shrink: 0; }
  .price-card.popular .price-features li::before { color: white; }
  .guarantee {
    margin-top: 40px; padding: 24px 32px;
    background: #F0FDF4; border-radius: 12px; border: 1px solid #BBF7D0;
    display: flex; gap: 16px; align-items: center;
  }
  .guarantee-icon { font-size: 2rem; }
  .guarantee h4 { font-size: 0.95rem; color: var(--accent-green); margin-bottom: 4px; }
  .guarantee p { font-size: 0.85rem; color: var(--mid); }

  /* ===== FAQ ===== */
  .faq-section { background: var(--bg); }
  .faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .faq-sidebar h2 { margin-bottom: 16px; }
  .faq-sidebar p { margin-bottom: 28px; }
  .faq-list { display: flex; flex-direction: column; }
  .faq-item {
    border-bottom: 1px solid var(--border); overflow: hidden;
  }
  .faq-q {
    padding: 20px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
     font-size: 0.95rem; font-weight: 600;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--primary); }
  .faq-icon { transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; font-size: 1.1rem; color: var(--soft); }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.9rem; color: var(--mid);
  }
  .faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; color: gray}
  .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }

  /* ===== TOOLS ===== */
  .tools-section { background: var(--white); }
  .tools-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .tool-chip {
    background: white; border-radius: 10px; padding: 14px 16px;
    border: 1px solid #c1e9ed; text-align: center;
    font-size: .9rem; font-weight: 600; color: var(--mid);
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .tool-chip:hover { border-color: #111; background-color: #111; color: white; box-shadow: 0 4px 16px rgba(255,92,53,0.1); }
  .tool-chip .tool-icon { font-size: 1.3rem; margin-bottom: 6px; display: block; }

  /* ===== CTA FINAL ===== */
  .final-cta {
    padding: 120px 0;
    background: var(--primary);
    text-align: center; position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; top: -60%; left: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .final-cta::after {
    content: ''; position: absolute; bottom: -40%; right: -10%;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
  }
  .final-cta h2 { color: white; font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; }
  .final-cta p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: white; color: var(--primary);
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 8px;
     font-weight: 700; font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
  .btn-ghost {
    background: rgba(255,255,255,0.15); color: white; border: 1.5px solid rgba(255,255,255,0.4);
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 8px;
     font-weight: 600; font-size: 0.95rem;
    transition: background 0.2s;
  }
  .btn-ghost:hover { background: white; color: #111111; }
  .cta-trust { margin-top: 36px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
  .cta-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark-2); color: rgba(255,255,255,0.5);
    padding: 64px 0 32px;
  }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
  }
  .footer-brand .nav-logo { margin-bottom: 14px; }
  .footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
  .footer-social { display: flex; gap: 12px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; transition: background 0.2s; cursor: pointer; color: rgba(255,255,255,0.5);
  }
  .social-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
  .footer-col h5 {
     font-size: 0.85rem; font-weight: 700;
    color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col li a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
  .footer-col li a:hover { color: var(--primary); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    font-size: 0.82rem;
  }

  /* ===== WHATSAPP FLOAT ===== */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    background: #25D366; color: white;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s; cursor: pointer;
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
    .industries-layout { grid-template-columns: 1fr; }
    .industry-sidebar { position: static; }
    .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-track::before { display: none; }
    .faq-layout { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    :root { --section-pad: 72px 0; }
    .problems-intro, .case-block { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
    .case-block { padding: 32px 28px; }
    .services-grid, .results-grid, .pricing-grid, .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .nav-links, .nav-cta .btn-outline { display: none; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-table { overflow-x: auto; }
    .industries-cards { grid-template-columns: 1fr; }
  }