        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-blue: #0066FF;
            --email-purple: #667eea;
            --email-secondary: #764ba2;
            --success-green: #10B981;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --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, #667eea 0%, #764ba2 100%);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.25);
            --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.35);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #020617;
            position: relative;
            min-height: 100vh;
        }

        /* Global glass background with office image */
        body::before{
            content:"";position:fixed;inset:0;z-index:-1;
            background:linear-gradient(135deg,rgba(0,0,0,.35),rgba(0,0,40,.25));
            pointer-events:none;
        }
        body::after{
            content:"";position:fixed;inset:0;z-index:-2;
            background:url('../assets/team-connect-main-office.webp') center top/cover no-repeat;
            transform:translateZ(0);will-change:transform;pointer-events:none;
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            border-bottom: 1px solid rgba(148, 163, 184, 0.4);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header.scrolled {
            background: rgba(15, 23, 42, 0.95) !important;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        }
        
        .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: #e5e7eb;
            text-decoration: none;
        }
        
        .logo-img {
            height: 40px;
            width: auto;
            display: block;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-link {
            text-decoration: none;
            color: #e5e7eb;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #facc15 !important;
        }
        
        .nav-cta {
            display: flex;
            gap: 1rem;
        }
        
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 999px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 18px 40px rgba(102, 126, 234, 0.7);
        }

        /* Burger Menu */
        .burger-menu {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(148, 163, 184, 0.5);
            border-radius: 12px;
            padding: 12px;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            display: block;  /* CHANGED: was none */
        }

        .burger-icon {
            width: 24px;
            height: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .burger-line {
            width: 100%;
            height: 3px;
            background: #e5e7eb;
            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);
        }

        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.75);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-sidebar {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: rgba(15, 23, 42, 0.96);
            border-left: 1px solid rgba(148, 163, 184, 0.4);
            z-index: 1000;
            transition: right 0.3s ease;
            overflow-y: auto;
            padding-top: 20px;
            box-shadow: var(--shadow-xl);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
        }

        .nav-sidebar.active {
            right: 0;
        }

        .nav-header {
            padding: 20px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.35);
            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;
            font-weight: 700;
            color: white;
            font-size: 16px;
        }

        .nav-title {
            font-size: 1.1em;
            font-weight: 600;
            color: #e5e7eb;
        }

        .nav-section {
            padding: 20px 0;
            border-bottom: 1px solid rgba(148, 163, 184, 0.25);
        }

        .nav-section:last-child {
            border-bottom: none;
        }

        .nav-section-title {
            padding: 0 20px 12px 20px;
            font-size: 0.8em;
            color: #9ca3af;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.06em;
        }

        .nav-item {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            color: #e5e7eb;
            text-decoration: none;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .nav-item:hover {
            background: rgba(148, 163, 184, 0.12);
            color: #e0e7ff;
        }

        .nav-item-icon {
            font-size: 1.2em;
            margin-right: 12px;
            width: 24px;
            text-align: center;
        }

        .nav-item-text {
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-cta {
                display: none;
            }
        }
        
        .main {
            padding-top: 80px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Hero Section */
        .hero {
            padding: 110px 2rem 90px;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            background: radial-gradient(circle at top left, rgba(102, 126, 234, 0.35), transparent 55%),
                        radial-gradient(circle at bottom right, rgba(118, 75, 162, 0.4), transparent 55%),
                        rgba(15, 23, 42, 0.72);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(148, 163, 184, 0.45);
            backdrop-filter: blur(26px);
            -webkit-backdrop-filter: blur(26px);
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(148, 163, 184, 0.7);
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 2rem;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: clamp(1.05rem, 2vw, 1.35rem);
            opacity: 0.9;
            margin-bottom: 3rem;
            color: #e5e7eb;
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .btn-hero {
            padding: 1rem 2.1rem;
            font-size: 16px;
            font-weight: 700;
        }
        
        .btn-white {
            background: rgba(248, 250, 252, 0.95);
            color: var(--email-purple);
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
        }
        
        .btn-white:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
        }
        
        .btn-outline {
            background: transparent;
            color: #e5e7eb;
            border: 1.5px solid rgba(226, 232, 240, 0.7);
        }
        
        .btn-outline:hover {
            background: rgba(148, 163, 184, 0.2);
            border-color: #e5e7eb;
        }
        
        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero-feature {
            text-align: center;
        }
        
        .hero-feature-icon {
            font-size: 2.4rem;
            margin-bottom: 0.8rem;
        }
        
        .hero-feature h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        
        .hero-feature p {
            font-size: 0.9rem;
            opacity: 0.8;
            color: #e5e7eb;
        }
        
        /* Trust Bar */
        .trust-bar {
            background: rgba(15, 23, 42, 0.8);
            padding: 2rem;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
            border-radius: 18px;
            margin: -60px auto 80px;
            max-width: 1000px;
            position: relative;
            z-index: 10;
            border: 1px solid rgba(148, 163, 184, 0.6);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
        }
        
        .trust-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .trust-number {
            font-size: 2.3rem;
            font-weight: 800;
            color: #bfdbfe;
            margin-bottom: 0.5rem;
        }
        
        .trust-label {
            color: #e5e7eb;
            font-weight: 500;
            opacity: 0.85;
        }

        /* Section */
        .section {
            padding: 80px 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-badge {
            display: inline-block;
            background: rgba(37, 99, 235, 0.9);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(191, 219, 254, 0.9);
        }
        
        .section-title {
            font-size: clamp(1.9rem, 4vw, 2.8rem);
            font-weight: 800;
            color: #f9fafb;
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.05rem;
            color: #e5e7eb;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background: rgba(15, 23, 42, 0.82);
            border-radius: 18px;
            padding: 2.3rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(148, 163, 184, 0.7);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 65px rgba(15, 23, 42, 0.95);
            border-color: rgba(191, 219, 254, 0.9);
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #f9fafb;
            margin-bottom: 1rem;
        }
        
        .feature-desc {
            color: #e5e7eb;
            line-height: 1.7;
            font-size: 0.98rem;
            opacity: 0.95;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 2rem;
            background: transparent;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: rgba(15, 23, 42, 0.85);
            border-radius: 18px;
            padding: 2rem 1.7rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(148, 163, 184, 0.7);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 26px 70px rgba(15, 23, 42, 0.98);
            border-color: rgba(191, 219, 254, 0.95);
        }

        .pricing-card.featured {
            border-color: #93c5fd;
            transform: scale(1.02);
        }

        .pricing-card.featured::before {
            content: '🔥 MOST POPULAR';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #1d4ed8;
            color: white;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            border: 1px solid #bfdbfe;
        }

        .plan-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: #f9fafb;
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 2.4rem;
            font-weight: 900;
            color: #bfdbfe;
            margin-bottom: 0.3rem;
        }

        .plan-period {
            color: #e5e7eb;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .plan-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(148, 163, 184, 0.4);
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #e5e7eb;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--success-green);
            font-weight: bold;
            margin-right: 8px;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 2rem;
            background: transparent;
        }
        
        .testimonials-scroll-wrapper {
            position: relative;
            margin-top: 3rem;
            overflow: hidden;
        }
        
        .testimonials-scroll-wrapper::before,
        .testimonials-scroll-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 60px;
            z-index: 10;
            pointer-events: none;
        }
        
        .testimonials-scroll-wrapper::before {
            left: 0;
            background: linear-gradient(to right, rgba(2, 6, 23, 1) 0%, transparent 100%);
        }
        
        .testimonials-scroll-wrapper::after {
            right: 0;
            background: linear-gradient(to left, rgba(2, 6, 23, 1) 0%, transparent 100%);
        }
        
        .testimonials-scroll {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 1rem 0.5rem 2rem;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: rgba(102, 126, 234, 0.5) transparent;
        }
        
        .testimonials-scroll::-webkit-scrollbar {
            height: 8px;
        }
        
        .testimonials-scroll::-webkit-scrollbar-track {
            background: rgba(148, 163, 184, 0.1);
            border-radius: 10px;
        }
        
        .testimonials-scroll::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
        }
        
        .testimonials-scroll::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }
        
        .testimonial {
            flex: 0 0 350px;
            min-width: 350px;
            background: rgba(15, 23, 42, 0.8);
            border-radius: 18px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(148, 163, 184, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.3s ease;
        }
        
        .testimonial:hover {
            transform: translateY(-5px);
            border-color: rgba(191, 219, 254, 0.9);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
        }
        
        .testimonial-stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        
        .testimonial-content {
            margin-bottom: 1.5rem;
            font-style: italic;
            color: #e5e7eb;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1rem;
            flex-shrink: 0;
        }
        
        .author-info h4 {
            font-weight: 600;
            color: #f9fafb;
            margin-bottom: 0.2rem;
        }
        
        .author-info p {
            color: #cbd5f5;
            font-size: 0.85rem;
        }
        
        .testimonials-footer {
            text-align: center;
            margin-top: 2.5rem;
        }
        
        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 1rem 2rem;
            font-size: 1rem;
        }
        
        .read-more-btn:hover {
            background: rgba(102, 126, 234, 0.2);
            border-color: #667eea;
            color: #bfdbfe;
        }

        @media (max-width: 768px) {
            .testimonial {
                flex: 0 0 300px;
                min-width: 300px;
                padding: 1.5rem;
            }
            
            .testimonials-scroll-wrapper::before,
            .testimonials-scroll-wrapper::after {
                width: 30px;
            }
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .testimonial {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 18px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(148, 163, 184, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        
        .testimonial-content {
            margin-bottom: 2rem;
            font-style: italic;
            color: #e5e7eb;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .author-info h4 {
            font-weight: 600;
            color: #f9fafb;
        }
        
        .author-info p {
            color: #cbd5f5;
            font-size: 0.9rem;
        }
        /* EMAIL MARKETING – HORIZONTAL CUSTOMER REVIEWS */
        .email-reviews {
          padding: 70px 2rem 40px;
        }

        .email-reviews .section-header {
          margin-bottom: 2rem;
        }

        .email-reviews-strip {
          max-width: 1200px;
          margin: 0 auto;
          overflow-x: auto;
          padding-bottom: 10px;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
        }

        .email-reviews-strip::-webkit-scrollbar {
          display: none;
        }

        .email-reviews-track {
          display: flex;
          gap: 16px;
          width: max-content;
        }

        .email-review-card {
          min-width: 260px;
          max-width: 280px;
          background: rgba(255, 255, 255, 0.08);
          backdrop-filter: blur(12px);
          -webkit-backdrop-filter: blur(12px);
          border-radius: 18px;
          border: 1px solid rgba(255, 140, 0, 0.45);
          padding: 16px 18px;
          box-shadow: none;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        }

        .email-review-stars {
          color: #FACC15;
          margin-bottom: 6px;
          font-size: 0.9rem;
        }

        .email-review-text {
          font-size: 0.9rem;
          color: rgba(255, 255, 255, 0.85);
          margin-bottom: 10px;
        }

        .email-review-meta {
          display: flex;
          align-items: center;
          gap: 10px;
          margin-top: 6px;
        }

        .email-review-avatar {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          background: linear-gradient(135deg, #F97316, #EF4444);
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.8rem;
          color: #fff;
          font-weight: 900;
        }

        .email-review-name {
          font-size: 0.9rem;
          font-weight: 800;
          color: #ffffff;
        }

        .email-review-role {
          font-size: 0.75rem;
          color: rgba(255, 255, 255, 0.6);
        }

        .email-reviews-more {
          max-width: 1200px;
          margin: 18px auto 0;
          text-align: center;
        }

        .email-reviews-more-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          padding: 0.9rem 2.2rem;
          border-radius: 999px;
          background: #EF4444;
          color: #fff;
          font-weight: 900;
          font-size: 0.95rem;
          text-decoration: none;
          text-transform: uppercase;
          letter-spacing: 0.08em;
          box-shadow: 0 14px 32px rgba(239, 68, 68, 0.45);
          transition: all 0.2s ease;
        }

        .email-reviews-more-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 18px 44px rgba(239, 68, 68, 0.65);
        }
        /* CTA Section (glass) */
        .cta {
            padding: 80px 2rem;
            text-align: center;
            color: #f9fafb;
            background: radial-gradient(circle at top left, rgba(102, 126, 234, 0.35), transparent 55%),
                        radial-gradient(circle at bottom right, rgba(118, 75, 162, 0.4), transparent 55%),
                        rgba(15, 23, 42, 0.9);
            border-top: 1px solid rgba(148, 163, 184, 0.6);
            border-bottom: 1px solid rgba(148, 163, 184, 0.6);
            backdrop-filter: blur(26px);
            -webkit-backdrop-filter: blur(26px);
        }
        
        .cta h2 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .cta p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* FAQ glass (already added, just matches theme) */
        .faq-section .container {
            border-radius: 20px;
            border: 1px solid rgba(148, 163, 184, 0.7);
            padding-top: 3rem;
            padding-bottom: 3rem;
            box-shadow: var(--shadow-xl);
        }

        .faq-grid {
            max-width: 900px;
            margin: 2.5rem auto 0;
            display: grid;
            gap: 1.5rem;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-radius: 16px;
            padding: 1.5rem 1.75rem;
            border: 1px solid rgba(148, 163, 184, 0.7);
            box-shadow: var(--shadow-md);
        }

        .faq-q {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: #f9fafb;
        }

        .faq-a {
            font-size: 0.95rem;
            color: #e5e7eb;
        }

        /* Footer */
        .footer {
            background: rgba(15, 23, 42, 0.98);
            color: white;
            padding: 60px 2rem 20px;
            border-top: 1px solid rgba(148, 163, 184, 0.6);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
        }

        .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: #bfdbfe;
        }

        .footer-brand p {
            color: #9ca3af;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .footer-section h4 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: #f9fafb;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #bfdbfe;
        }

        .footer-bottom {
            text-align: center;
            color: #6b7280;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(31, 41, 55, 1);
        }

        .social-links {
            margin-top: 1rem;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.9);
            border: 1px solid rgba(148, 163, 184, 0.8);
            transition: all 0.2s ease;
        }

        .social-link:hover {
            background: rgba(30, 64, 175, 0.9);
            border-color: #bfdbfe;
            transform: translateY(-2px);
        }

        .social-icon {
            width: 20px;
            height: 20px;
        }
/* FAQ — accordion dropdowns */
.faq-accordion{max-width:860px;margin:1.7rem auto 0;display:flex;flex-direction:column;gap:.7rem;}
.faq-acc-item{background:rgba(15,23,42,.8);border:1px solid rgba(55,65,81,.9);border-radius:14px;box-shadow:0 6px 16px rgba(0,0,0,.25);overflow:hidden;transition:border-color .2s,background .2s;}
.faq-acc-item:hover{border-color:rgba(0,102,255,.45);}
.faq-acc-item[open]{border-color:rgba(0,102,255,.6);background:rgba(15,23,42,.9);}
.faq-acc-q{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.1rem 1.3rem;cursor:pointer;font-weight:700;font-size:1rem;color:#F9FAFB;list-style:none;user-select:none;line-height:1.4;}
.faq-acc-q::-webkit-details-marker{display:none;}
.faq-acc-q::marker{content:"";}
.faq-acc-q:focus-visible{outline:2px solid #FACC15;outline-offset:-2px;}
.faq-acc-icon{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(0,102,255,.15);border:1px solid rgba(0,102,255,.4);color:#93C5FD;font-size:1.15rem;font-weight:700;line-height:1;flex-shrink:0;transition:transform .25s ease,background .2s,color .2s;}
.faq-acc-item[open] .faq-acc-icon{transform:rotate(45deg);background:rgba(250,204,21,.18);border-color:rgba(250,204,21,.5);color:#FACC15;}
.faq-acc-a{padding:0 1.3rem 1.2rem;font-size:.94rem;color:#E5E7EB;line-height:1.75;}
.faq-acc-a a{color:#93C5FD;text-decoration:underline;text-underline-offset:3px;}
.faq-acc-a a:hover{color:#FACC15;}
@media(max-width:768px){
    .faq-acc-q{font-size:.95rem;padding:1rem 1.1rem;}
    .faq-acc-a{padding:0 1.1rem 1.1rem;font-size:.92rem;}
}
        /* Responsive */
        @media (max-width: 768px) {
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                padding: 2.2rem 1.8rem;
            }
        }

