    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        --primary-blue: #0066FF;
        --primary-purple: #6366F1;
        --ai-green: #10B981;
        --ai-teal: #14B8A6;
        --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-ai: linear-gradient(135deg, #10B981 0%, #14B8A6 100%);
        --shadow-sm: 0 1px 2px 0 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);
    }
    
    body {
        line-height: 1.6;
        color: var(--gray-800);
        background: var(--white);
        overflow-x: hidden;
    }
    
    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #000;
        border-bottom: 1px solid #222;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .nav {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-blue);
        text-decoration: none;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
        border-radius: 6px;
        display: block;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-link {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .nav-link:hover {
        color: var(--ai-green) !important;
    }
    
    /* Dropdown */
    .dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        list-style: none;
        margin: 0;
        padding: 0;
        min-width: 180px;
        z-index: 1000;
        right: 0;
        left: auto;
        max-width: 95vw;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        white-space: nowrap;
    }
    
    .dropdown-menu li a:hover {
        background: #f5f5f5;
        color: var(--ai-green);
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Burger Menu */
    .burger-menu {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 20px);
        right: 20px;
        z-index: 1001;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        padding: 12px;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: transform 0.2s ease;
        display: block;  /* CHANGED from none to block */
    }
    
    .burger-menu:hover {
        transform: scale(1.1);
    }
    
    .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 0.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);
    }
    
    /* Navigation Sidebar */
    .nav-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        border-left: 1px solid var(--gray-200);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding-top: calc(env(safe-area-inset-top) + 20px);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-sidebar.active {
        right: 0;
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .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-ai);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
        font-size: 16px;
    }
    
    .nav-title {
        font-size: 1.2em;
        font-weight: 600;
        color: var(--gray-900);
    }
    
    .nav-section {
        padding: 20px 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-section:last-child {
        border-bottom: none;
    }
    
    .nav-section-title {
        padding: 0 20px 12px 20px;
        font-size: 0.8em;
        color: var(--gray-500);
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    
    .nav-item {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: var(--gray-700);
        text-decoration: none;
        transition: background-color 0.2s ease;
        cursor: pointer;
    }
    
    .nav-item:hover {
        background: var(--gray-50);
        color: var(--ai-green);
    }
    
    .nav-item.active {
        background: rgba(16, 185, 129, 0.1);
        color: var(--ai-green);
        border-left: 3px solid var(--ai-green);
    }
    
    .nav-item-icon {
        font-size: 1.2em;
        margin-right: 12px;
        width: 24px;
        text-align: center;
    }
    
    .nav-item-text {
        font-weight: 500;
    }
    
    /* Background wrapper */
    .bg-office-wrap {
        position: relative;
        isolation: isolate;
    }
    
    .bg-office-wrap::before {
        content: "";
        position: fixed !important;
        inset: 0 !important;
        z-index: -1;
    }
    
    .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;
    }
    
    /* Container */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    /* AI Landline Hero Section */
    .ai-hero {
        padding: 140px 2rem 80px;
        text-align: center;
        color: white;
    }
    
    .hero-badge {
        display: inline-block;
        background: var(--gradient-ai);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.95;
    }
    
    /* AI Stats Bar */
    .ai-stats-bar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto 4rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
    }
    
    .stat-label {
        font-size: 0.9rem;
        opacity: 0.9;
        color: white;
    }
    
    /* Features Section */
    .ai-features {
        padding: 80px 2rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-badge {
        display: inline-block;
        background: var(--ai-green);
        color: white;
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .feature-card {
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        padding: 2rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        border-left: 4px solid var(--ai-green);
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
    }
    
    .feature-desc {
        color: #fff;
        line-height: 1.6;
    }
    
    /* Business Numbers Section */
    .business-numbers {
        padding: 80px 2rem;
    }
    
    .numbers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .number-card {
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .number-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border-color: var(--ai-green);
    }
    
    .number-card.popular {
        border-color: var(--ai-green);
        transform: scale(1.05);
    }
    
    .card-ribbon {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gradient-ai);
        color: white;
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
    }
    
    .card-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.5rem;
    }
    
    .plan-number {
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        margin-bottom: 1rem;
    }
    
    .plan-price {
        font-size: 3rem;
        font-weight: 900;
        color: var(--ai-green);
    }
    
    .price-per-month {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.7);
        margin-top: 0.5rem;
    }
    
    .savings-badge {
        background: var(--success-green);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-block;
        margin: 1rem 0;
    }
    
    .plan-features {
        list-style: none;
        margin: 2rem 0;
    }
    
    .plan-features li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        color: rgba(255,255,255,0.9);
    }
    
    .plan-features li:last-child {
        border-bottom: none;
    }
    
    .plan-features li::before {
        content: '✅';
        margin-right: 12px;
    }
    
    .plan-cta {
        width: 100%;
        padding: 1rem;
        background: var(--gradient-ai);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
        text-align: center;
    }
    
    .plan-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    }
    
    /* Diversion Options */
    .diversion-section {
        padding: 80px 2rem;
    }
    
    .diversion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .diversion-option {
        backdrop-filter: blur(12px) saturate(120%);
        padding: 2rem;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.35);
        transition: all 0.3s ease;
    }
    
    .diversion-option:hover {
        transform: translateY(-5px);
        border-color: var(--ai-green);
    }
    
    .option-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .diversion-option h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
    }

    .diversion-option p {
        color: rgba(255,255,255,0.85);
        line-height: 1.6;
    }
    
    /* Area Search Section */
    .area-search-section {
        padding: 100px 2rem;
        background: transparent;
    }
    .area-search-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 3rem 2.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .area-search-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    
    .area-search-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 3rem;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    }
    
    .search-wrapper {
        position: relative;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .area-search-input {
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        border: 2px solid var(--ai-green);
        border-radius: 60px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--gray-800);
        transition: all 0.3s ease;
    }
    
    .area-search-input:focus {
        outline: none;
        border-color: var(--ai-teal);
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    }
    
    .area-search-input::placeholder {
        color: var(--gray-400);
    }
    
    .search-icon {
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--ai-green);
        font-size: 1.5rem;
        pointer-events: none;
    }
    
    .search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        margin-top: 10px;
        max-height: 400px;
        overflow-y: auto;
        display: none;
        z-index: 100;
    }
    
    .search-results.active {
        display: block;
    }
    
    .search-result-item {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--gray-100);
        cursor: pointer;
        transition: background 0.2s ease;
        text-align: left;
        text-decoration: none;
        display: block;
        color: var(--gray-800);
    }
    
    .search-result-item:hover {
        background: var(--gray-50);
        color: var(--ai-green);
    }
    
    .search-result-item:last-child {
        border-bottom: none;
    }
    
    .area-name {
        font-weight: 600;
        color: var(--gray-900);
    }
    
    .area-tag {
        font-size: 0.85rem;
        color: var(--ai-green);
        margin-left: 8px;
    }
    
    /* Popular Areas Grid */
    .popular-areas {
        margin-top: 4rem;
    }
    
    .popular-areas-title {
        font-size: 1.3rem;
        color: white;
        margin-bottom: 1.5rem;
        font-weight: 600;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    }
    
    .popular-areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .popular-area-link {
        padding: 0.75rem 1rem;
        border-radius: 12px;
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        border: 1px solid rgba(255,255,255,0.15);
        background: transparent;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    }
    
    .popular-area-link:hover {
        background: white;
        color: var(--ai-green);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-color: var(--ai-green);
    }
    
    /* Footer */
    .footer {
        background: var(--gray-900);
        color: white;
        padding: 60px 2rem 20px;
        position: relative;
        z-index: 10;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--ai-green);
    }
    
    .footer-brand p {
        color: var(--gray-400);
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .footer-section h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: white;
    }
    
    .footer-section a {
        color: var(--gray-400);
        text-decoration: none;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
        color: var(--ai-green);
    }
    
    .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 0.2s ease;
        text-decoration: none;
    }
    
    .social-link:hover {
        background: rgba(16, 185, 129, 0.2);
        border-color: var(--ai-green);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
        display: block;
        filter: brightness(0) invert(1);
    }
    
    .footer-bottom {
        text-align: center;
        color: var(--gray-500);
        font-size: 0.9rem;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid var(--gray-800);
    }
    
    /* Benefits Grid */
    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-item {
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        padding: 20px 15px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.35);
        min-height: 200px;
    }
    
    .benefit-item:hover {
        transform: translateY(-5px);
    }
    
    .benefit-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
        display: block;
    }
    
    .benefit-item h4 {
        font-size: 1.1em;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

    .benefit-item p {
        color: rgba(255,255,255,0.85);
        line-height: 1.5;
        font-size: 0.9em;
    }
    /* AI Landline FAQ accordion */
    .ai-faq-list {
        max-width: 800px;
        margin: 0 auto 40px;
    }

    .ai-faq-item {
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .ai-faq-question {
      width: 100%;
      padding: 1rem 1.25rem;
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
    }

    .ai-faq-icon {
      margin-left: 12px;
      font-weight: 800;
      color: var(--ai-green);
      flex-shrink: 0;
    }

    .ai-faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 1.25rem;
      transition: max-height 0.25s ease, padding-bottom 0.25s ease;
    }

    .ai-faq-answer p,
    .ai-faq-answer ul {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.85);
      margin: 0.5rem 0;
    }

    .ai-faq-answer ul {
      padding-left: 1.1rem;
      list-style: disc;
    }

    /* Open state */
    .ai-faq-item.open .ai-faq-answer {
      padding-bottom: 1rem;
      max-height: 500px; /* enough for content; adjust if needed */
    }

    .ai-faq-item.open .ai-faq-icon {
      transform: rotate(45deg);
    }
    
    .ai-reviews {
        padding: 80px 2rem;
    }
    /* Horizontal review scroller */
    .reviews-strip {
      margin-top: 2rem;
      margin-bottom: 1.5rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      scrollbar-width: thin;
    }

    .reviews-track {
      display: flex;
      gap: 1rem;
      min-width: max-content;
    }

    .review-card {
      min-width: 260px;
      max-width: 280px;
      backdrop-filter: blur(12px) saturate(120%);
      -webkit-backdrop-filter: blur(12px) saturate(120%);
      border-radius: 16px;
      padding: 1.25rem 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(245, 158, 11, 0.4);
      border-top: 2px solid rgba(245, 158, 11, 0.6);
      background: rgba(255, 255, 255, 0.06);
      flex-shrink: 0;
    }

    .review-name {
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 0.25rem;
    }
    .review-role {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 0.5rem;
    }

    .review-stars {
      font-size: 0.95rem;
      color: #FBBF24;
      margin-bottom: 0.5rem;
    }

    .review-text {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6;
    }
    /* View more reviews button */
    .view-more-reviews {
      text-align: center;
      margin-top: 0.5rem;
    }

    .view-more-reviews a {
      display: inline-block;
      padding: 0.85rem 1.8rem;
      border-radius: 999px;
      background: var(--gradient-ai);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .view-more-reviews a:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(16, 185, 129, 0.35);
    }
    /* ── What Is Section ── */
    .what-is-section { padding: 80px 2rem; }
    .what-is-content {
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 3rem 2.5rem;
        box-shadow: var(--shadow-lg);
        max-width: 900px;
        margin: 0 auto;
    }
    .what-is-content a, .feature-desc a, .ai-faq-answer a { color: var(--ai-green); text-decoration: none; font-weight: 600; }
    .what-is-content a:hover, .feature-desc a:hover, .ai-faq-answer a:hover { text-decoration: underline; }
    .what-is-content p {
        color: rgba(255,255,255,0.9);
        font-size: 1.05rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }
    .what-is-content p:last-child { margin-bottom: 0; }
    .what-is-content strong { color: var(--ai-green); font-weight: 700; }
     
    /* ── How It Works ── */
    .how-it-works { padding: 80px 2rem; }
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        margin-top: 2.5rem;
    }
    .step-card {
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 2.2rem 1.8rem;
        text-align: center;
        box-shadow: var(--shadow-lg);
        transition: transform 0.2s, border-color 0.2s;
    }
    .step-card:hover { transform: translateY(-4px); border-color: var(--ai-green); }
    .step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px; height: 52px;
        border-radius: 50%;
        background: var(--gradient-ai);
        color: #fff;
        font-weight: 800;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .step-card h3 { color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: 0.6rem; }
    .step-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6; }
    a.step-card { text-decoration: none; color: inherit; display: block; }
    a.step-card:hover .step-number { transform: scale(1.1); }
    .step-arrow {
        display: none;
        align-items: center;
        justify-content: center;
        color: var(--ai-green);
        font-size: 2rem;
        font-weight: 700;
    }
    @media(min-width: 900px) {
        .steps-grid { grid-template-columns: 1fr auto 1fr auto 1fr; }
        .step-arrow { display: flex; }
    }
     
    /* ── Stats Bar ── */
    .stats-bar { padding: 60px 2rem; }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
        text-align: center;
    }
    .stat-item {}
    .stat-number {
        font-size: 2.6rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.3rem;
    }
    .stat-label {
        color: rgba(255,255,255,0.75);
        font-size: 0.95rem;
        font-weight: 500;
    }
     
    /* ── Comparison Table ── */
    .comparison-section { padding: 80px 2rem; }
    .comparison-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 2.5rem;
    }
    .comparison-table {
        width: 100%;
        min-width: 640px;
        border-collapse: separate;
        border-spacing: 0;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }
    .comparison-table thead th {
        background: rgba(15,23,42,0.9);
        color: #fff;
        padding: 1.1rem 1rem;
        font-size: 0.95rem;
        font-weight: 700;
        text-align: center;
        border-bottom: 2px solid rgba(255,255,255,0.1);
    }
    .comparison-table thead th.highlight-col {
        background: var(--ai-green);
        color: #fff;
        font-size: 1rem;
    }
    .comparison-table tbody td {
        backdrop-filter: blur(10px);
        padding: 1rem;
        font-size: 0.92rem;
        color: rgba(255,255,255,0.9);
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .comparison-table tbody td:first-child {
        text-align: left;
        font-weight: 600;
        color: #fff;
    }
    .comparison-table tbody td.highlight-col {
        background: rgba(16,185,129,0.12);
        font-weight: 600;
    }
    .comparison-table tbody tr:last-child td { border-bottom: none; }
    .cmp-check { color: var(--ai-green); font-weight: 700; }
    .cmp-cross { color: #F87171; }
    .cmp-partial { color: #FBBF24; }
     
    /* ── Industry Use Cases ── */
    .use-cases-section { padding: 80px 2rem; }
    .use-cases-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    .use-case-card {
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 1.8rem 1.5rem;
        box-shadow: var(--shadow-md);
        transition: transform 0.2s, border-color 0.2s;
    }
    .use-case-card:hover { transform: translateY(-3px); border-color: var(--ai-green); }
    .use-case-icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .use-case-card h3 { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
    .use-case-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.6; }
    .ai-faq-section {
        padding: 80px 2rem;
    }
    .ai-faq-section .container {
        max-width: 800px;
        margin: 0 auto;
    }
    /* ── Final CTA ── */
    .final-cta { padding: 80px 2rem; text-align: center; }
    .final-cta-box {
        backdrop-filter: blur(12px) saturate(120%);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 3.5rem 2.5rem;
        max-width: 800px;
        margin: 0 auto;
        box-shadow: var(--shadow-xl);
    }
    .final-cta-box h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 0.8rem; }
    .final-cta-box p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.7; }
    .final-cta-price { font-size: 2.2rem; font-weight: 800; color: var(--ai-green); margin-bottom: 0.4rem; }
    .final-cta-price-note { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; }
    .final-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.2rem; }
    .final-cta-buttons .btn {
        padding: 0.85rem 2rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.2s;
    }
    .final-cta-buttons .btn-primary { background: var(--ai-green); color: #fff; }
    .final-cta-buttons .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16,185,129,0.4); }
    .final-cta-buttons .btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6); }
    .final-cta-buttons .btn-outline:hover { background: rgba(255,255,255,0.08); }
    .final-cta-guarantee { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
    
    a.use-case-card { text-decoration: none; color: inherit; display: block; }
    a.use-case-card:hover { border-color: var(--ai-green, #10B981); transform: translateY(-4px); }
    .card-link-arrow { display: inline-block; margin-top: 0.8rem; color: #10B981; font-size: 0.88rem; font-weight: 700; transition: transform 0.2s; }
    a.use-case-card:hover .card-link-arrow { transform: translateX(4px); }

    .explore-section { padding: 60px 2rem; }
    .explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 2rem; }
    .explore-link { display: flex; align-items: center; gap: 10px; padding: 1rem 1.2rem; border-radius: 14px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 0.92rem; font-weight: 600; text-decoration: none; transition: all 0.2s; backdrop-filter: blur(8px); }
    .explore-link:hover { border-color: #10B981; color: #10B981; transform: translateY(-2px); }
    .explore-link .el-icon { font-size: 1.3rem; flex-shrink: 0; }
    .explore-link .el-desc { font-weight: 400; font-size: 0.82rem; color: rgba(255,255,255,0.6); display: block; margin-top: 2px; }
    
    /* Responsive */
    @media (max-width: 1024px) {
        .benefit-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
    }
    
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        
        .numbers-grid {
            grid-template-columns: 1fr;
        }
        
        .benefit-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .benefit-item {
            padding: 20px;
            min-height: auto;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
        }
        
        .popular-areas-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    /* Enhanced glass morphism for sections */
    .bg-office-wrap .business-numbers,
    .bg-office-wrap .ai-features,
    .bg-office-wrap .diversion-section {
        background: transparent !important;
    }
    
    .bg-office-wrap .container {
        position: relative;
        z-index: 1;
    }
