        * {
            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(2, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
    max-width: 900px;
    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;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

<style id="campaign-walkthrough-styles">
    /* Section wrapper */
    .campaign-walkthrough{padding:80px 2rem;position:relative;}
    .campaign-walkthrough .section-header{text-align:center;max-width:780px;margin:0 auto 3.5rem;}
    .campaign-walkthrough .section-badge{display:inline-block;padding:.4rem 1rem;background:rgba(0,102,255,.15);border:1px solid rgba(0,102,255,.4);border-radius:999px;color:#93C5FD;font-size:.78rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-bottom:1rem;}
    .campaign-walkthrough .section-title{font-size:clamp(1.8rem,3.2vw,2.4rem);font-weight:800;color:#fff;margin-bottom:.8rem;line-height:1.2;}
    .campaign-walkthrough .section-subtitle{font-size:1.05rem;color:#cbd5e1;line-height:1.6;}
 
    /* Stagger container */
    .campaign-stagger{display:flex;flex-direction:column;gap:2.5rem;max-width:1200px;margin:0 auto;}
 
    /* Each step card */
    .campaign-stagger-item{display:grid;grid-template-columns:1fr;gap:2rem;align-items:center;background:rgba(15,23,42,.55);border:1px solid rgba(148,163,184,.18);border-radius:20px;padding:2rem;transition:border-color .2s,transform .2s;}
    .campaign-stagger-item:hover{border-color:rgba(0,102,255,.4);transform:translateY(-2px);}
 
    /* Tablet up: side-by-side */
    @media (min-width:900px){
        .campaign-stagger-item{grid-template-columns:1.05fr .95fr;gap:3rem;padding:2.5rem;}
        /* Even-numbered cards: image goes on the right */
        .campaign-stagger-item:nth-child(even) .campaign-stagger-img{order:2;}
    }
 
    /* Image side */
    .campaign-stagger-img{position:relative;border-radius:14px;overflow:hidden;background:rgba(0,0,0,.3);}
    .campaign-stagger-img img{display:block;width:100%;height:auto;aspect-ratio:16/10;object-fit:cover;border-radius:14px;box-shadow:0 14px 38px rgba(0,0,0,.45),0 0 0 1px rgba(148,163,184,.12);}
 
    /* Body side */
    .campaign-stagger-body{display:flex;flex-direction:column;}
    .campaign-stagger-step{display:inline-flex;align-items:center;gap:.6rem;font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#FACC15;margin-bottom:.9rem;}
    .campaign-stagger-step::before{content:"";display:inline-block;width:28px;height:1px;background:#FACC15;}
    .campaign-stagger-title{font-size:1.45rem;font-weight:800;color:#fff;margin:0 0 .8rem;line-height:1.25;}
    @media (min-width:900px){
        .campaign-stagger-title{font-size:1.6rem;}
    }
    .campaign-stagger-desc{font-size:.98rem;line-height:1.7;color:#e5e7eb;margin:0 0 1.2rem;}
    .campaign-stagger-features{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr;gap:.55rem;}
    @media (min-width:560px){
        .campaign-stagger-features{grid-template-columns:1fr 1fr;}
    }
    .campaign-stagger-features li{position:relative;padding-left:1.4rem;font-size:.9rem;line-height:1.55;color:#cbd5e1;}
    .campaign-stagger-features li::before{content:"";position:absolute;left:0;top:.55rem;width:8px;height:8px;border-radius:2px;background:#0066FF;}
 
    /* Footer CTA inside section */
    .campaign-stagger-footer{text-align:center;margin-top:3rem;padding:2rem;background:rgba(15,23,42,.4);border:1px solid rgba(148,163,184,.15);border-radius:18px;max-width:760px;margin-left:auto;margin-right:auto;}
    .campaign-stagger-footer p{color:#cbd5e1;font-size:1rem;margin:0 0 1.2rem;line-height:1.6;}
    .campaign-stagger-footer .cta-btn{display:inline-block;padding:.85rem 1.8rem;background:#0066FF;color:#fff;border-radius:10px;font-weight:700;text-decoration:none;font-size:.98rem;transition:background .2s,transform .2s;}
    .campaign-stagger-footer .cta-btn:hover{background:#0055d4;transform:translateY(-1px);}
    .campaign-stagger-footer .cta-btn.secondary{margin-left:.5rem;background:transparent;border:1px solid rgba(148,163,184,.35);color:#fff;}
    .campaign-stagger-footer .cta-btn.secondary:hover{background:rgba(148,163,184,.1);}
<style id="templates-grid-styles-v2">
    /* Section header */
    .templates-section .section-header{text-align:center;max-width:780px;margin:0 auto 2.5rem;}
 
    /* Grid: explicit breakpoints — 4-up desktop, 2-up tablet/mobile */
    .template-grid{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:1.5rem;
        margin-top:3rem;
    }
    @media (min-width:900px){
        .template-grid{grid-template-columns:repeat(4, 1fr);}
    }
 
    /* Cards */
    .template-card{
        background:rgba(15,23,42,.82);
        border-radius:18px;
        overflow:hidden;
        border:1px solid rgba(148,163,184,.7);
        transition:transform .2s,border-color .2s,box-shadow .2s;
        display:flex;
        flex-direction:column;
    }
    .template-card:hover{
        transform:translateY(-3px);
        border-color:rgba(0,102,255,.55);
        box-shadow:0 12px 32px rgba(0,0,0,.4);
    }
    .template-card:hover .template-preview{transform:translateY(-2px);}
 
    /* Gradient banner — frames the preview mockup */
    .template-card-banner{
        height:180px;
        position:relative;
        overflow:hidden;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:14px;
    }
    .template-card-banner::after{
        content:"";
        position:absolute;
        inset:0;
        background:linear-gradient(135deg, transparent 0%, rgba(255,255,255,.05) 50%, transparent 100%);
        pointer-events:none;
    }
    .template-card-banner.newsletter{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);}
    .template-card-banner.ecommerce{background:linear-gradient(135deg,#10B981 0%,#059669 100%);}
    .template-card-banner.promo{background:linear-gradient(135deg,#F59E0B 0%,#D97706 100%);}
    .template-card-banner.transactional{background:linear-gradient(135deg,#EF4444 0%,#DC2626 100%);}
 
    /* ============ MINI EMAIL PREVIEW (the white "envelope" card) ============ */
    .template-preview{
        position:relative;
        width:100%;
        height:100%;
        background:#ffffff;
        border-radius:6px;
        box-shadow:0 8px 20px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.06);
        padding:9px 10px;
        display:flex;
        flex-direction:column;
        gap:5px;
        overflow:hidden;
        transition:transform .25s;
    }
 
    /* Reusable preview parts */
    .tp-bar{background:#e5e7eb;border-radius:2px;height:5px;}
    .tp-bar.dark{background:#9ca3af;}
    .tp-bar.brand{height:4px;}
    .tp-bar.w90{width:90%;} .tp-bar.w80{width:80%;} .tp-bar.w70{width:70%;}
    .tp-bar.w60{width:60%;} .tp-bar.w50{width:50%;} .tp-bar.w40{width:40%;}
    .tp-bar.w30{width:30%;}
 
    .tp-divider{height:1px;background:#e5e7eb;margin:2px 0;}
    .tp-img-block{background:#cbd5e1;border-radius:3px;}
 
    /* ---- Newsletter mockup ---- */
    .newsletter .template-preview .tp-header{height:8px;background:linear-gradient(90deg,#667eea,#764ba2);border-radius:2px;width:55%;}
    .newsletter .template-preview .tp-article-img{height:30px;background:linear-gradient(135deg,#ddd6fe,#c4b5fd);border-radius:3px;}
    .newsletter .template-preview .tp-text-group{display:flex;flex-direction:column;gap:3px;margin-top:2px;}
 
    /* ---- E-commerce mockup ---- */
    .ecommerce .template-preview .tp-header{height:8px;background:linear-gradient(90deg,#10B981,#059669);border-radius:2px;width:50%;}
    .ecommerce .template-preview .tp-hero{height:24px;background:linear-gradient(135deg,#a7f3d0,#6ee7b7);border-radius:3px;display:flex;align-items:center;justify-content:center;}
    .ecommerce .template-preview .tp-hero-pill{width:38%;height:6px;background:#10B981;border-radius:8px;}
    .ecommerce .template-preview .tp-products{display:grid;grid-template-columns:repeat(3,1fr);gap:3px;margin-top:1px;}
    .ecommerce .template-preview .tp-product{aspect-ratio:1/1;background:linear-gradient(135deg,#d1fae5,#a7f3d0);border-radius:2px;display:flex;flex-direction:column;justify-content:flex-end;padding:2px;}
    .ecommerce .template-preview .tp-product::after{content:"";display:block;height:2px;width:60%;background:#10B981;border-radius:1px;}
    .ecommerce .template-preview .tp-cta{margin-top:auto;align-self:center;width:50%;height:7px;background:#10B981;border-radius:8px;}
 
    /* ---- Promo mockup ---- */
    .promo .template-preview{align-items:center;justify-content:center;text-align:center;}
    .promo .template-preview .tp-brand{height:5px;width:35%;background:#F59E0B;border-radius:2px;align-self:center;margin-bottom:2px;}
    .promo .template-preview .tp-headline{font-size:1.45rem;font-weight:900;color:#D97706;letter-spacing:-.02em;line-height:1;margin:0;}
    .promo .template-preview .tp-subline{height:4px;width:65%;background:#fde68a;border-radius:2px;margin:4px auto 0;}
    .promo .template-preview .tp-subline2{height:4px;width:50%;background:#fde68a;border-radius:2px;margin:0 auto;}
    .promo .template-preview .tp-cta-pill{margin-top:5px;width:55%;height:9px;background:linear-gradient(90deg,#F59E0B,#D97706);border-radius:10px;}
 
    /* ---- Transactional mockup ---- */
    .transactional .template-preview .tp-header{height:8px;background:linear-gradient(90deg,#EF4444,#DC2626);border-radius:2px;width:55%;}
    .transactional .template-preview .tp-heading{height:5px;background:#1f2937;width:45%;border-radius:1px;margin-top:1px;}
    .transactional .template-preview .tp-line-item{display:flex;justify-content:space-between;align-items:center;gap:8px;}
    .transactional .template-preview .tp-line-item .tp-bar{flex:1;}
    .transactional .template-preview .tp-line-item .tp-price{width:18px;height:5px;background:#9ca3af;border-radius:1px;flex-shrink:0;}
    .transactional .template-preview .tp-total{display:flex;justify-content:space-between;align-items:center;gap:8px;margin-top:1px;}
    .transactional .template-preview .tp-total .tp-bar{flex:1;height:6px;background:#1f2937;width:30%;flex:none;}
    .transactional .template-preview .tp-total .tp-price{width:24px;height:7px;background:#DC2626;border-radius:1px;}
 
    /* Card body */
    .template-card-body{
        padding:1.4rem 1.4rem 1.6rem;
        flex:1;
        display:flex;
        flex-direction:column;
    }
    .template-card-body h3{
        color:#f9fafb;
        font-size:1.1rem;
        font-weight:700;
        margin:0 0 .5rem;
        line-height:1.3;
    }
    .template-card-body p{
        color:#cbd5e1;
        font-size:.92rem;
        line-height:1.55;
        margin:0;
    }
 
    @media (min-width:900px){
        .template-card-banner{height:160px;}
        .template-card-body{padding:1.3rem 1.3rem 1.5rem;}
        .template-card-body h3{font-size:1.05rem;}
        .template-card-body p{font-size:.88rem;}
    }
