  *{margin:0;padding:0;box-sizing:border-box}
  :root{
    --primary-blue:#0066FF;
    --primary-purple:#6366F1;
    --success-green:#10B981;
    --warning-orange:#F59E0B;
    --error-red:#EF4444;
    --gray-50:#F9FAFB;
    --gray-100:#F3F4F6;
    --gray-200:#E5E7EB;
    --gray-300:#D1D5DB;
    --gray-400:#9CA3AF;
    --gray-500:#6B7280;
    --gray-600:#4B5563;
    --gray-700:#374151;
    --gray-800:#1F2937;
    --gray-900:#111827;
    --white:#FFFFFF;
    --gradient-primary:linear-gradient(135deg,#0066FF 0%,#6366F1 100%);
    --shadow-sm:0 1px 2px rgba(0,0,0,0.05);
    --shadow-md:0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl:0 20px 25px -5px rgba(0,0,0,0.1);
  }
  html{scroll-behavior:smooth}
  body{
    line-height:1.6;
    color:var(--gray-800);
    background:#000;
    overflow-x:hidden;
  }
  a{text-decoration:none}
  a:hover{text-decoration:underline}

  /* Background glass wrapper */
  .bg-office-wrap{
    position:relative;
    isolation:isolate;
  }
  .bg-office-wrap::before{
    content:"";
    position:fixed!important;
    inset:0!important;
    z-index:-1;
    background:linear-gradient(to bottom,rgba(0,0,0,0.3),rgba(0,0,0,0.3));
    pointer-events:none;
  }
  .bg-office-wrap::after{
    content:"";
    position:fixed;
    inset:0;
    z-index:-2;
    background:url('../assets/team-connect-main-office.webp') center top/cover no-repeat;
    will-change:transform;
    pointer-events:none;
  }

  .container{max-width:1200px;margin:0 auto;padding:0 2rem;position:relative;z-index:1;}

  /* Header with burger on all screens (align with other glass pages) */
  .header{
    position:fixed;
    top:0;left:0;right:0;
    background:#000;
    border-bottom:1px solid #222;
    z-index:1000;
    transition:all .3s ease;
  }
  .header.scrolled{box-shadow:0 2px 6px rgba(0,0,0,.6);}
  .nav{
    max-width:1200px;margin:0 auto;
    display:flex;justify-content:flex-start;align-items:center;
    padding:1rem 2rem;
  }
  .logo{
    display:flex;align-items:center;gap:12px;
    font-size:24px;font-weight:800;
    color:var(--primary-blue);
  }
  .logo-img{height:40px;width:auto;border-radius:6px;display:block;}
  .nav-links{display:none;}

  .burger-menu{
    position:fixed;
    top:20px;right:20px;
    z-index:1001;
    background:#fff;
    border:1px solid var(--gray-200);
    border-radius:12px;
    padding:12px;
    cursor:pointer;
    box-shadow:var(--shadow-xl);
    display:block;
  }
  .burger-icon{
    width:24px;height:24px;
    display:flex;flex-direction:column;justify-content:space-between;
  }
  .burger-line{
    width:100%;height:3px;
    background:var(--gray-700);border-radius:2px;
    transition:all .3s ease;
  }
  .burger-menu.active .burger-line:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
  .burger-menu.active .burger-line:nth-child(2){opacity:0;}
  .burger-menu.active .burger-line:nth-child(3){transform:rotate(-45deg) translate(7px,-6px);}

  .nav-overlay{
    position:fixed;inset:0;
    background:rgba(0,0,0,.5);
    z-index:999;
    opacity:0;visibility:hidden;
    transition:all .3s ease;
  }
  .nav-overlay.active{opacity:1;visibility:visible;}

  .nav-sidebar{
    position:fixed;top:0;right:-300px;
    width:300px;height:100vh;
    background:#fff;
    border-left:1px solid var(--gray-200);
    z-index:1000;
    transition:right .3s ease;
    overflow-y:auto;
    padding-top:20px;
    box-shadow:var(--shadow-xl);
  }
  .nav-sidebar.active{right:0;}
  .nav-header{
    padding:20px;border-bottom:1px solid var(--gray-200);
    display:flex;align-items:center;gap:12px;
  }
  .nav-logo{
    width:40px;height:40px;
    background:var(--gradient-primary);
    border-radius:10px;
    display:flex;align-items:center;justify-content:center;
    color:#fff;font-weight:700;font-size:16px;
  }
  .nav-title{font-size:1.1rem;font-weight:700;color:var(--gray-900);}
  .nav-section{padding:14px 0;border-bottom:1px solid var(--gray-200);}
  .nav-section-title{
    padding:0 20px 8px;
    font-size:.8rem;color:var(--gray-500);
    text-transform:uppercase;font-weight:600;
  }
  .nav-item{
    display:flex;align-items:center;
    padding:12px 20px;
    text-decoration:none;
    color:var(--gray-700);
    cursor:pointer;
    transition:background-color .2s ease;
  }
  .nav-item:hover{
    background:var(--gray-50);
    color:var(--primary-blue);
  }
  .nav-item-icon{font-size:1.2em;margin-right:12px;width:24px;text-align:center;}
  .nav-item-text{font-weight:500;}

  /* Breadcrumb (glass strip) */
  .breadcrumb{
    background:rgba(0,0,0,0.7);
    padding:10px 2rem;
    font-size:14px;
    color:#E5E7EB;
    margin-top:72px;
  }
  .breadcrumb a{
    color:#fff;
    text-decoration:underline;
    text-underline-offset:3px;
  }
  .breadcrumb a:hover{text-decoration-color:#FFD700;}

  /* Hero */
  .hero{
    padding:120px 2rem 80px;
    text-align:center;
    color:#fff;
    position:relative;
  }
  .hero-content{
    max-width:960px;
    margin:0 auto;
    background:rgba(15,23,42,0.88);
    border-radius:26px;
    padding:48px 30px 40px;
    border:1px solid rgba(148,163,184,0.6);
    box-shadow:0 30px 80px rgba(0,0,0,0.6);
    backdrop-filter:blur(24px) saturate(120%);
    -webkit-backdrop-filter:blur(24px) saturate(120%);
  }
  .hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.2);
    border-radius:999px;
    padding:8px 20px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
    border:1px solid rgba(255,255,255,0.35);
    margin-bottom:1.2rem;
  }
  .hero-title{
    font-size:clamp(2.4rem,4.5vw,3.6rem);
    font-weight:900;
    margin-bottom:.6rem;
    text-shadow:0 3px 12px rgba(0,0,0,0.7);
  }
  .hero-subtitle{
    font-size:1.1rem;
    max-width:720px;
    margin:0 auto 1.4rem;
    opacity:.95;
  }
  .hero-price{
    font-size:2.4rem;
    font-weight:900;
    color:#FBBF24;
    text-shadow:0 2px 8px rgba(0,0,0,0.5);
    margin-bottom:.4rem;
  }
  .hero-meta{
    font-size:.95rem;
    opacity:.9;
    margin-bottom:1.4rem;
  }
  .hero-trust{
    margin-top:.6rem;
    font-size:.9rem;
    opacity:.9;
  }
  .hero-stars{
    color:#FACC15;
    letter-spacing:1px;
    margin-right:6px;
  }

  .hero-cta{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin:1.4rem 0 1.2rem;
  }
  .cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0.95rem 2.3rem;
    border-radius:999px;
    font-weight:800;
    text-decoration:none;
    border:none;
    cursor:pointer;
    font-size:.98rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    transition:all .2s ease;
    min-width:230px;
  }
  .cta-primary{
    background:#fff;
    color:#111827;
    box-shadow:0 18px 50px rgba(0,0,0,0.35);
  }
  .cta-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 24px 70px rgba(0,0,0,0.55);
  }
  .cta-secondary{
    background:transparent;
    color:#E5E7EB;
    border:2px solid rgba(148,163,184,0.85);
  }
  .cta-secondary:hover{
    background:rgba(15,23,42,0.9);
    transform:translateY(-2px);
  }

  .hero-grid{
    margin-top:1.8rem;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
  }
  .hero-mini{
    background:rgba(15,23,42,0.9);
    border-radius:16px;
    padding:14px 16px;
    border:1px solid rgba(148,163,184,0.6);
    font-size:.9rem;
    text-align:left;
  }

  /* Section headers */
  .section{
    padding:70px 2rem 60px;
  }
  .section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 36px;
    color:#fff;
  }
  .section-badge{
    display:inline-block;
    background:rgba(255,255,255,0.16);
    padding:6px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    border:1px solid rgba(148,163,184,0.7);
    margin-bottom:.8rem;
  }
  .section-title{
    font-size:clamp(2rem,4vw,2.9rem);
    font-weight:900;
    margin-bottom:.5rem;
    text-shadow:0 2px 8px rgba(0,0,0,0.6);
  }
  .section-subtitle{
    font-size:1.02rem;
    color:rgba(226,232,240,0.96);
  }

  /* Features grid (glass cards) */
  .corporate-features{
    padding-bottom:50px;
  }
  .features-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
  }
  .feature-card{
    background:rgba(255,255,255,0.04);
    border-radius:18px;
    padding:22px 20px;
    border:1px solid rgba(255,140,0,0.45);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transition:all 0.3s ease;
  }
  .feature-card:hover{
    border-color:rgba(255,140,0,0.9);
    box-shadow:0 16px 40px rgba(255,140,0,0.12);
    transform:translateY(-3px);
  }
  .feature-tag{
    display:inline-block;
    font-size:.8rem;
    font-weight:700;
    padding:3px 9px;
    border-radius:999px;
    background:rgba(255,140,0,0.15);
    color:rgba(255,140,0,0.9);
    margin-bottom:6px;
  }
  .feature-title{
    font-size:1.15rem;
    font-weight:800;
    color:#ffffff;
    margin-bottom:6px;
  }
  .feature-desc{
    font-size:.95rem;
    color:rgba(255,255,255,0.85);
  }
  .feature-list{
    margin-top:10px;
    padding-left:1.1rem;
    font-size:.9rem;
    color:rgba(255,255,255,0.8);
  }
  .feature-list li{margin:3px 0;}

  /* Use cases / PR scenarios */
  .pr-section{
    padding-top:10px;
  }
  .usecase-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
  }
  .usecase-card{
    background:rgba(15,23,42,0.9);
    border-radius:18px;
    padding:20px 18px;
    border:1px solid rgba(148,163,184,0.7);
    color:#E5E7EB;
    box-shadow:0 18px 45px rgba(0,0,0,0.5);
  }
  .usecase-title{
    font-weight:800;
    margin-bottom:4px;
    font-size:1.02rem;
  }
  .usecase-tag{
    font-size:.8rem;
    color:#A5B4FC;
    margin-bottom:6px;
  }
  .usecase-desc{
    font-size:.92rem;
    color:#E5E7EB;
  }

  /* Reviews row */
  .reviews{
    padding:60px 2rem;
  }
  .reviews-scroll{
    overflow-x:auto;
    padding:0 2rem 12px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
    scrollbar-color:rgba(255,140,0,0.4) transparent;
  }
  .reviews-scroll::-webkit-scrollbar{height:5px;}
  .reviews-scroll::-webkit-scrollbar-thumb{background:rgba(255,140,0,0.4);border-radius:3px;}
  .reviews-scroll::-webkit-scrollbar{height:5px;}
  .reviews-scroll::-webkit-scrollbar-thumb{background:rgba(255,140,0,0.4);border-radius:3px;}
  .reviews-row{
    display:flex;
    gap:18px;
    width:max-content;
  }
  .review-card{
    min-width:300px;
    max-width:340px;
    background:rgba(255,255,255,0.04);
    border-radius:18px;
    border:1px solid rgba(255,140,0,0.45);
    padding:20px;
    backdrop-filter:blur(14px);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    flex-shrink:0;
  }
  .review-stars{color:#FACC15;margin-bottom:6px;font-size:.9rem;}
  .review-text{font-size:.9rem;color:rgba(255,255,255,0.88);margin-bottom:10px;font-style:italic;}
  .review-meta{display:flex;align-items:center;gap:10px;margin-top:6px;}
  .review-avatar{
    width:32px;height:32px;border-radius:50%;
    background:linear-gradient(135deg,#6366F1,#4F46E5);
    display:flex;align-items:center;justify-content:center;
    font-size:.8rem;color:#fff;font-weight:900;
  }
  .review-name{font-size:.9rem;font-weight:800;color:#ffffff;}
  .review-role{font-size:.75rem;color:rgba(255,255,255,0.65);}
  .reviews-more{
    max-width:1200px;margin:18px auto 0;text-align:center;
  }
  .reviews-more-btn{
    display:inline-flex;align-items:center;justify-content:center;
    padding:0.9rem 2.2rem;
    border-radius:999px;
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,140,0,0.6);
    font-weight:700;
    font-size:.95rem;
    text-decoration:none;
    transition:all .2s ease;
  }
  .reviews-more-btn:hover{
    transform:translateY(-2px);
    background:rgba(255,140,0,0.12);
    border-color:rgba(255,140,0,1);
  }

  /* FAQ accordion (6 Qs already in JSON-LD) */
  .faq{
    padding:70px 2rem 80px;
  }
  .faq-list{
    max-width:960px;
    margin:0 auto;
  }
  .faq-item{
    background:rgba(255,255,255,0.04);
    border-radius:16px;
    border:1px solid rgba(255,140,0,0.45);
    backdrop-filter:blur(14px);
    margin-bottom:12px;
    overflow:hidden;
    transition:border-color 0.2s ease;
  }
  .faq-item.open{
    border-color:rgba(255,140,0,0.9);
  }
  .faq-question-btn{
    width:100%;
    padding:1.1rem 1.3rem;
    background:transparent;
    border:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-align:left;
    cursor:pointer;
    font-size:1rem;
    font-weight:700;
    color:#ffffff;
  }
  .faq-question-btn:hover{background:rgba(255,255,255,0.04);}
  .faq-toggle{
    margin-left:10px;
    font-weight:900;
    color:rgba(255,140,0,0.9);
    flex-shrink:0;
    transition:transform 0.3s ease;
  }
  .faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 1.1rem;
    transition:max-height .3s ease,padding-bottom .3s ease;
  }
  .faq-answer p{
    font-size:.95rem;
    color:rgba(255,255,255,0.85);
    margin:.4rem 0;
    line-height:1.7;
  }
  .faq-item.open .faq-answer{
    max-height:500px;
    padding-bottom:1rem;
  }
  .faq-item.open .faq-toggle{
    transform:rotate(45deg);
    color:rgba(255,140,0,1);
  }

  /* Final CTA */
  .final-cta{
    padding:60px 2rem 70px;
    text-align:center;
    color:#fff;
  }
  .final-cta-inner{
    max-width:780px;
    margin:0 auto;
    background:rgba(15,23,42,0.9);
    border-radius:24px;
    border:1px solid rgba(148,163,184,0.6);
    padding:32px 26px 30px;
    box-shadow:0 24px 60px rgba(0,0,0,0.6);
    backdrop-filter:blur(18px);
  }
  .final-cta-inner h2{
    font-size:clamp(2.1rem,4vw,2.8rem);
    font-weight:900;
    margin-bottom:.8rem;
  }
  .final-cta-inner p{
    font-size:1rem;
    opacity:.95;
    margin-bottom:1.6rem;
  }

  /* Footer (same pattern as other updated pages) */
  .footer{
    background:#020617;
    color:#fff;
    padding:60px 2rem 20px;
    position:relative;
    z-index:1;
  }
  .footer-content{
    max-width:1200px;margin:0 auto;
    display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
    gap:32px;margin-bottom:30px;
  }
  .footer-brand h3{
    font-size:1.5rem;font-weight:800;
    margin-bottom:1rem;color:var(--primary-blue);
  }
  .footer-brand p{color:var(--gray-400);margin-bottom:2rem;line-height:1.6;}
  .footer-section h4{font-weight:700;margin-bottom:.75rem;}
  .footer-section a{
    color:var(--gray-400);
    text-decoration:none;display:block;margin:6px 0;
    transition:color .2s ease;
  }
  .footer-section a:hover{color:#fff;}
  .social-links{
    margin-top:1rem;display:flex;gap:12px;align-items:center;flex-wrap:wrap;
  }
  .social-link{
    display:inline-flex;align-items:center;justify-content:center;
    width:38px;height:38px;border-radius:50%;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    transition:all .2s ease;
  }
  .social-link:hover{
    background:rgba(255,255,255,0.14);
    border-color:var(--primary-blue);
    transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(0,0,0,0.25);
  }
  .social-icon{width:20px;height:20px;display:block;}
  .footer-support{
    border-top:1px solid #111827;
    padding:1.5rem 0 1rem;
    text-align:center;
  }
  .footer-bottom{
    text-align:center;color:var(--gray-500);
    font-size:.9rem;padding-top:1rem;
    border-top:1px solid #020617;
  }
    .nav-item.active{
        background:rgba(37,99,235,.08);
        color:var(--primary-blue);
        border-left:3px solid var(--primary-blue);
    }
  @media(max-width:768px){
    .container{padding:0 1rem;}
    .breadcrumb{padding:10px 1rem;font-size:12px;}
    .hero{padding:110px 1rem 70px;}
    .hero-content{padding:40px 22px;}
    .hero-grid{grid-template-columns:1fr;}
    .section{padding:60px 1rem 55px;}
    .features-grid{grid-template-columns:1fr;}
    .usecase-grid{grid-template-columns:1fr;}
    .footer-content{grid-template-columns:1fr;text-align:center;}
  }

  @keyframes fadeInUp{
    from{opacity:0;transform:translateY(30px);}
    to{opacity:1;transform:translateY(0);}
  }

  /* Stats bar */
  .stats-bar{padding:40px 2rem;border-top:1px solid rgba(255,255,255,0.06);border-bottom:1px solid rgba(255,255,255,0.06);}
  .stats-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.5rem;}
  .stat-item{text-align:center;padding:1.2rem 1rem;background:rgba(255,255,255,0.04);border:1px solid rgba(255,140,0,0.35);border-radius:16px;backdrop-filter:blur(14px);}
  .stat-number{display:block;font-size:2.2rem;font-weight:900;color:#FFD700;line-height:1;margin-bottom:0.4rem;}
  .stat-label{font-size:.85rem;color:rgba(255,255,255,0.8);text-transform:uppercase;letter-spacing:.06em;font-weight:600;}

  /* How it works steps */
  .steps-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;counter-reset:steps;}
  .step-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,140,0,0.45);border-radius:18px;padding:24px 20px;text-align:center;position:relative;backdrop-filter:blur(14px);transition:all .3s ease;counter-increment:steps;}
  .step-card::before{content:counter(steps);position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:linear-gradient(135deg,#0066FF,#6366F1);color:#fff;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:.9rem;line-height:30px;}
  .step-card:hover{border-color:rgba(255,140,0,0.9);transform:translateY(-4px);box-shadow:0 16px 40px rgba(255,140,0,0.12);}
  .step-icon{font-size:2.2rem;margin-bottom:.8rem;}
  .step-title{font-size:1rem;font-weight:800;color:#fff;margin-bottom:.5rem;}
  .step-desc{font-size:.88rem;color:rgba(255,255,255,0.82);line-height:1.6;}

  /* Comparison table */
  .comparison-wrap{max-width:1100px;margin:0 auto;overflow-x:auto;}
  .comparison-table{width:100%;border-collapse:collapse;min-width:700px;}
  .comparison-table th{background:rgba(255,140,0,0.12);color:#fff;padding:14px 18px;text-align:left;font-weight:700;font-size:.9rem;border-bottom:1px solid rgba(255,140,0,0.4);}
  .comparison-table th:first-child{border-radius:12px 0 0 0;}
  .comparison-table th:last-child{border-radius:0 12px 0 0;}
  .comparison-table td{padding:13px 18px;border-bottom:1px solid rgba(255,255,255,0.07);color:rgba(255,255,255,0.88);font-size:.92rem;}
  .comparison-table tr:hover td{background:rgba(255,255,255,0.03);}
  .comparison-table tr:last-child td{border-bottom:none;}
  .comparison-table .highlight-col{font-weight:700;color:#fff;}
  .tick{color:#10B981;font-weight:900;}
  .cross{color:#EF4444;}
  .partial{color:#F59E0B;}

  /* Sectors grid */
  .sectors-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;}
  .sector-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,140,0,0.45);border-radius:18px;padding:22px 20px;backdrop-filter:blur(14px);transition:all .3s ease;}
  .sector-card:hover{border-color:rgba(255,140,0,0.9);transform:translateY(-3px);box-shadow:0 16px 40px rgba(255,140,0,0.12);}
  .sector-icon{font-size:2rem;margin-bottom:.7rem;}
  .sector-title{font-size:1.05rem;font-weight:800;color:#fff;margin-bottom:.5rem;}
  .sector-desc{font-size:.9rem;color:rgba(255,255,255,0.82);line-height:1.6;}
  .sector-tag{font-size:.78rem;font-weight:700;color:rgba(255,140,0,0.9);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem;display:block;}

  /* Pricing grid */
  .pricing-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;}
  .pricing-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,140,0,0.45);border-radius:20px;padding:28px 22px;backdrop-filter:blur(14px);text-align:center;position:relative;transition:all .3s ease;}
  .pricing-card:hover{border-color:rgba(255,140,0,0.9);box-shadow:0 16px 40px rgba(255,140,0,0.12);}
  .pricing-card.featured{border-color:rgba(255,140,0,0.9);background:rgba(255,140,0,0.06);box-shadow:0 8px 30px rgba(255,140,0,0.15);}
  .pricing-card.featured::before{content:'🔥 MOST POPULAR';position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:linear-gradient(135deg,rgba(255,140,0,1),rgba(255,100,0,1));color:#fff;padding:4px 14px;border-radius:50px;font-size:11px;font-weight:700;white-space:nowrap;}
  .plan-name{font-size:1.1rem;font-weight:800;color:#fff;margin-bottom:.4rem;}
  .plan-desc{font-size:.85rem;color:rgba(255,255,255,0.7);margin-bottom:1rem;}
  .plan-price{font-size:2.6rem;font-weight:950;color:#FFD700;line-height:1;margin-bottom:.2rem;}
  .plan-per{font-size:.85rem;color:rgba(255,255,255,0.6);margin-bottom:1.2rem;}
  .plan-features{list-style:none;text-align:left;margin-bottom:1.5rem;display:grid;gap:8px;}
  .plan-features li{display:flex;align-items:flex-start;gap:8px;color:rgba(255,255,255,0.88);font-size:.88rem;line-height:1.5;}
  .plan-features li::before{content:"✓";color:#10B981;font-weight:900;flex-shrink:0;margin-top:1px;}
  .plan-features li.no::before{content:"✗";color:#EF4444;}
  .plan-cta{display:block;width:100%;padding:0.9rem;border-radius:50px;font-weight:800;font-size:.95rem;text-decoration:none;text-align:center;transition:all .25s ease;border:none;cursor:pointer;}
  .plan-cta.primary{background:linear-gradient(135deg,#0066FF,#6366F1);color:#fff;}
  .plan-cta.primary:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(0,102,255,0.35);}
  .plan-cta.outline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.4);}
  .plan-cta.outline:hover{background:rgba(255,255,255,0.08);border-color:rgba(255,255,255,0.8);}

  /* Article / long-form */
  .article-section{padding:70px 2rem;}
  .article-inner{max-width:860px;margin:0 auto;background:rgba(255,255,255,0.04);border:1px solid rgba(255,140,0,0.45);border-radius:24px;padding:40px 36px;backdrop-filter:blur(14px);}
  .article-inner h2{font-size:1.8rem;font-weight:900;color:#fff;margin-bottom:1rem;}
  .article-inner h3{font-size:1.2rem;font-weight:800;color:#fff;margin:1.8rem 0 .6rem;}
  .article-inner p{color:rgba(255,255,255,0.85);line-height:1.8;margin-bottom:1rem;font-size:.97rem;}
  .article-inner a{color:rgba(255,140,0,0.9);text-decoration:underline;}

  /* Integrations strip */
  .integrations-strip{padding:50px 2rem;}
  .integrations-inner{max-width:1000px;margin:0 auto;}
  .integrations-row{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-top:2rem;}
  .integration-pill{display:flex;align-items:center;gap:10px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,140,0,0.35);border-radius:50px;padding:10px 20px;font-size:.9rem;font-weight:600;color:rgba(255,255,255,0.9);backdrop-filter:blur(10px);transition:all .25s ease;}
  .integration-pill:hover{border-color:rgba(255,140,0,0.9);background:rgba(255,140,0,0.08);}
  .integration-icon{font-size:1.3rem;}

  @media(max-width:768px){
    .stats-inner{grid-template-columns:repeat(2,1fr);}
    .steps-grid{grid-template-columns:1fr 1fr;}
    .sectors-grid{grid-template-columns:1fr;}
    .pricing-grid{grid-template-columns:1fr;}
    .article-inner{padding:28px 20px;}
    .comparison-table th,.comparison-table td{padding:10px 12px;font-size:.82rem;}
  }
