/* ================================================================
   TeamPulseIQ — shared stylesheet
   Used by index.html, about.html, privacy.html, terms.html
   Keeping header/nav/footer/buttons here means they can never
   visually drift between pages again.
================================================================ */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Color Palette */
        :root {
            --primary: #3F84F3;
            --primary-dark: #2F6FE0;
            --primary-light: #7CACF8;
            --dark-bg: #0f172a;
            --light-bg: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-light: #e2e8f0;
            --accent: #1E4FD1;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Header & Navigation */
        header {
            background: transparent;
            padding: 1.5rem 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
            transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        header.scrolled .nav-links a {
            color: var(--text-primary);
        }

        header.scrolled .logo-text {
            background: #282828;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        header .nav-links a {
            color: var(--text-primary);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .logo-footer {
            font-size: 1.8rem;
            font-weight: 800;
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .logo-icon {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: 800;
            height: 40px;
            width: 40px;
            border-radius: 10px;
           display: flex;
           align-items: center;
           justify-content: center;
           background-color: var(--primary);
           line-height: 1;
        }
        .logo-icon-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo-text {
            background: #282828;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            line-height: 4rem;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-header {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-header:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(63, 132, 243, 0.3);
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            height: 100vh;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .hero-inner-container{
            background-color: #ffffffa6;
            height: 100vh;
            width: 100%;
            position: relative;
            top: -32px;
        }

        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 2rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
            height: 100%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(63, 132, 243, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(30, 79, 209, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-image {
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease forwards, textGradient 6s ease infinite;
            opacity: 0;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 40px;
        }

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

        .hero-content p {
            font-size: 1.2rem;
            color: #282828;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-content .cta-group {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(63, 132, 243, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 0.95rem 2.45rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: fadeIn 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        /* Desktop browser-style device frame */
        .device-desktop {
            /* border-radius: 14px;
            overflow: hidden;
            background: #ffffff; */
            /* box-shadow: 0 25px 50px rgba(63, 132, 243, 0.15); */
            /* animation: floatAnimation 6s ease-in-out infinite, rotateGradient 8s ease-in-out infinite; */
            transition: all 0.3s ease;
        }

        .device-desktop:hover {
            animation: floatAnimation 4s ease-in-out infinite, glow 2s ease-in-out infinite;
            transform: scale(1.02);
            border-radius: 10px;
        }

        .device-topbar {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 0.7rem 1rem;
            background: linear-gradient(180deg, #eef2f7, #e2e8f0);
            border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        }

        .device-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .device-dot.dot-red { background: #ff5f57; }
        .device-dot.dot-yellow { background: #febc2e; }
        .device-dot.dot-green { background: #28c840; }

        .device-desktop img {
            display: block;
            width: 100%;
            height: auto;
        }

        /* Mobile phone-style device frame */
        .hero-mobile-card {
            position: absolute;
            bottom: -9%;
            right: -6%;
            width: 30%;
            max-width: 190px;
            z-index: 2;
            animation: fadeIn 0.8s ease 0.6s forwards, floatAnimation 5s ease-in-out infinite 0.8s;
            opacity: 0;
        }

        .device-mobile {
            position: relative;
            background: #111827;
            border-radius: 28px;
            padding: 0.85rem 0.5rem;
            overflow: hidden;
            box-shadow: 0 25px 45px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        .device-notch {
            position: absolute;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            width: 38%;
            height: 14px;
            background: #111827;
            border-radius: 0 0 12px 12px;
            z-index: 3;
        }

        .device-mobile img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 16px;
            transition: transform 0.3s ease;
        }

        .device-home-bar {
            position: absolute;
            bottom: 0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 28%;
            height: 4px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.35);
            z-index: 3;
        }

        .hero-mobile-card:hover .device-mobile img {
            transform: scale(1.04);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes floatAnimation {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 25px 50px rgba(63, 132, 243, 0.15), 0 0 30px rgba(63, 132, 243, 0.1);
            }
            50% {
                box-shadow: 0 25px 60px rgba(63, 132, 243, 0.25), 0 0 50px rgba(63, 132, 243, 0.2);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        @keyframes rotateGradient {
            0% {
                filter: brightness(1) hue-rotate(0deg);
            }
            50% {
                filter: brightness(1.05) hue-rotate(10deg);
            }
            100% {
                filter: brightness(1) hue-rotate(0deg);
            }
        }

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

        @keyframes textGradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Section Styles */
        section {
            padding: 2rem 0rem;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            animation: slideInDown 0.6s ease;
            font-weight: 800;
            letter-spacing: -0.3px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features Section */
        .features {
            background: linear-gradient(180deg, #f0f5ff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .features-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(63, 132, 243, 0.1);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            transition: all 0.35s ease;
            border: 1px solid rgba(63, 132, 243, 0.08);
            cursor: pointer;
            animation: slideUp 0.6s ease forwards;
            opacity: 0;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 20px 20px 0 0;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-num {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--primary);
            opacity: 0.5;
        }

        .feature-icon-wrap {
            width: 52px;
            height: 52px;
            background: #f8fafc;
            border: 1px solid var(--border-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s ease;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
        }

        .feature-icon-wrap svg {
            width: 28px;
            height: 28px;
        }

        .feature-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 45px rgba(63, 132, 243, 0.13);
            border-color: rgba(63, 132, 243, 0.25);
        }


        .feature-card:hover .feature-icon-wrap {
            transform: translateY(-3px) scale(1.06);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
        }

        .feature-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
            margin: 0;
        }

        .feature-card-arrow {
            margin-top: auto;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            opacity: 0;
            transform: translateX(-6px);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-card-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Benefits Section */
        .benefits {
            position: relative;
            color: white;
            overflow: hidden;
            background-image: url('whychoose.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .benefits::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .benefits .section-container {
            position: relative;
            z-index: 1;
        }

        .benefits-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(63, 132, 243, 0.2);
            border: 1px solid rgba(63, 132, 243, 0.35);
            color: rgba(63, 132, 243);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
        }

        .benefits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .benefits-left h2 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.8rem;
            color: white;
        }

        .benefits-left > p {
            color: rgba(255,255,255,0.82);
            font-size: 1.02rem;
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .benefits-list {
            list-style: none;
            display: flex;
            flex-direction: column;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.2rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 14px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.35s ease;
            opacity: 0;
            transform: translateX(-30px);
        }

        .benefit-item.in-view {
            opacity: 1;
            transform: translateX(0);
        }

        .benefit-item:hover {
            background: rgba(63, 132, 243, 0.12);
            border-color: rgba(63, 132, 243, 0.3);
            transform: translateX(6px);
        }

        .benefit-check {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        }

        .benefit-check svg {
            width: 20px;
            height: 20px;
        }

        .benefit-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: #000000;
        }

        .benefit-item p {
            color: rgba(0,0,0,0.72);
            line-height: 1.6;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Stats panel — absolutely placed at bottom of .benefits-right */
        .benefits-stats {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 4;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        .benefit-stat {
            text-align: center;
            padding: 1.1rem 0.75rem;
            background: rgba(4, 10, 35, 0.78);
            border-top: 1px solid rgba(255,255,255,0.10);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            opacity: 0;
            transform: translateY(14px);
            transition: all 0.4s ease;
        }

        .benefit-stat:not(:last-child) {
            border-right: 1px solid rgba(255,255,255,0.08);
        }

        .benefit-stat.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-stat:hover {
            background: rgba(63,132,243,0.18);
        }

        .benefit-stat:hover .benefit-stat-num,
        .benefit-stat:hover .benefit-stat-label {
            color: #000000;
        }

        .benefit-stat-num {
            font-size: 1.75rem;
            font-weight: 800;
            color: #ffffff;
            display: block;
            line-height: 1;
        }

        .benefit-stat-label {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.60);
            margin-top: 0.3rem;
            display: block;
            letter-spacing: 0.3px;
        }

        /* Right side image column */
        .benefits-right {
            position: relative;
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.7s ease;
        }

        .benefits-right.in-view {
            opacity: 1;
            transform: translateX(0);
        }

        .benefits-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                        0 0 0 1px rgba(255,255,255,0.08),
                        0 0 60px rgba(63, 132, 243, 0.15);
            position: relative;
        }

        /* Stats bar clips inside the image card's border-radius */
        .benefits-image .benefits-stats {
            border-radius: 0 0 20px 20px;
        }

        .benefits-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 40%, rgba(63,132,243,0.08) 60%, transparent 80%);
            animation: shimmer 4s infinite;
            pointer-events: none;
            z-index: 1;
        }

        .benefits-image img {
            width: 100%;
            height: auto;
            display: block;
            animation: floatAnimation 8s ease-in-out infinite;
            transition: transform 0.4s ease;
            border-radius: 10px;
        }

        .benefits-image:hover img {
            transform: scale(1.02);
        }

        .benefits-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(63, 132, 243, 0.25) 0%, transparent 70%);
            border-radius: 50%;
            top: -60px;
            right: -60px;
            pointer-events: none;
            animation: floatAnimation 6s ease-in-out infinite;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to   { opacity: 1; transform: translateX(0); }
        }

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

        /* ─── Floating background icons ─── */
        .bg-icons-layer {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }

        .bg-icon {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bg-icon svg {
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            display: block;
        }

        @keyframes bgFloat1 {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33%  { transform: translateY(-22px) rotate(6deg); }
            66%  { transform: translateY(-10px) rotate(-4deg); }
        }

        @keyframes bgFloat2 {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            40%  { transform: translateY(-30px) translateX(12px) rotate(-7deg); }
            75%  { transform: translateY(-14px) translateX(-6px) rotate(5deg); }
        }

        @keyframes bgFloat3 {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            25%  { transform: translateY(-18px) rotate(10deg) scale(1.06); }
            60%  { transform: translateY(-32px) rotate(-5deg) scale(0.95); }
            80%  { transform: translateY(-22px) rotate(3deg) scale(1.02); }
        }

        @keyframes bgFloat4 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            30%  { transform: translate(10px, -20px) rotate(-8deg); }
            60%  { transform: translate(-8px, -35px) rotate(6deg); }
            80%  { transform: translate(5px, -15px) rotate(-3deg); }
        }

        @keyframes bgFloat5 {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            20%  { transform: translateY(-12px) scale(1.08) rotate(4deg); }
            50%  { transform: translateY(-28px) scale(0.94) rotate(-6deg); }
            75%  { transform: translateY(-18px) scale(1.04) rotate(2deg); }
        }

        @media (max-width: 768px) {
            .bg-icons-layer { display: none; }
        }

        /* Pricing Section */
        /* ══════════════════════════════════
           PRICING SECTION
        ══════════════════════════════════ */
        .pricing {
            background: linear-gradient(180deg, #f0f5ff 0%, #f8fafc 60%, #f0f5ff 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(63,132,243,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
            align-items: stretch;
        }

        /* Base card */
        .pricing-card {
            background: #ffffff;
            border-radius: 20px;
            border: 1.5px solid #e5eaf3;
            box-shadow: 0 4px 20px rgba(15,23,42,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            animation: slideUp 0.6s ease forwards;
            opacity: 0;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:nth-child(1) { animation-delay: 0.1s; }
        .pricing-card:nth-child(2) { animation-delay: 0.2s; }
        .pricing-card:nth-child(3) { animation-delay: 0.3s; }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(63,132,243,0.14);
        }

        /* Inner body — flex column so button always pins to bottom */
        .pricing-card-body {
            position: relative;
            padding: 2.4rem 2.2rem;
            border-radius: 18px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        /* Blue top bar on hover */
        .pricing-card-body::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            border-radius: 20px 20px 0 0;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .pricing-card:hover .pricing-card-body::before {
            transform: scaleX(1);
        }

        /* ── Featured card (Professional) — deep navy ── */
        .pricing-card.featured {
            background: #4084f3;
            border: 1.5px solid rgba(99, 155, 255, 0.25);
            box-shadow: 0 20px 60px rgba(15,32,80,0.55), 0 0 0 1px rgba(63,132,243,0.12);
            transform: translateY(-8px);
        }

        .pricing-card.featured:hover {
            transform: translateY(-14px);
            box-shadow: 0 30px 70px rgba(15,32,80,0.65), 0 0 0 1px rgba(63,132,243,0.2);
        }

        .pricing-card.featured .pricing-card-body::before {
            transform: scaleX(1);
        }

        /* Subtle gradient glow behind featured card */
        .pricing-card.featured::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 21px;
            background: linear-gradient(135deg, rgba(63,132,243,0.5), rgba(30,79,209,0.4), rgba(63,132,243,0.5));
            z-index: -1;
            opacity: 0.35;
            filter: blur(20px);
        }

        /* "Most Popular" badge */
        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary), var(--accent));
            color: white;
            padding: 0.38rem 1.1rem;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.4px;
            white-space: nowrap;
            z-index: 9;
            box-shadow: 0 4px 14px rgba(63,132,243,0.45);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .pricing-badge::before {
            content: '★';
            font-size: 0.7rem;
        }

        /* Tier icon */
        .pricing-tier-icon {
            width: 48px;
            height: 48px;
            border-radius: 13px;
            background: #f8fafc;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.4rem;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
        }

        .pricing-card.featured .pricing-tier-icon {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .pricing-tier-icon svg {
            width: 24px;
            height: 24px;
        }

        .pricing-card.featured .pricing-tier-icon svg {
            width: 28px;
            height: 28px;
        }

        /* Plan name */
        .pricing-name {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 0.6rem;
        }

        .pricing-card.featured .pricing-name {
            color: #ffffff;
        }

        /* Plan tagline */
        .pricing-tagline {
            font-size: 0.88rem;
            color: var(--text-secondary);
            margin-bottom: 1.4rem;
            line-height: 1.5;
        }

        .pricing-card.featured .pricing-tagline {
            color: rgba(255,255,255,0.72);
        }

        /* Price row */
        .pricing-price-row {
            display: flex;
            align-items: flex-start;
            gap: 0.1rem;
            margin-bottom: 0.3rem;
        }

        .pricing-currency {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 0.5rem;
            line-height: 1;
        }

        .pricing-card.featured .pricing-currency {
            color: #ffffff;
        }

        .pricing-price {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1;
            letter-spacing: -1px;
        }

        .pricing-card.featured .pricing-price {
            color: #ffffff;
        }

        .pricing-period {
            font-size: 0.83rem;
            color: var(--text-secondary);
            margin-bottom: 1.6rem;
            display: block;
        }

        .pricing-card.featured .pricing-period {
            color: rgba(255,255,255,0.60);
        }

        /* Divider */
        .pricing-divider {
            height: 1px;
            background: #e5eaf3;
            margin: 0 0 1.5rem;
        }

        .pricing-card.featured .pricing-divider {
            background: rgba(255,255,255,0.10);
        }

        /* Feature list — grows to fill space, pushing button to bottom */
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            flex: 1;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255,255,255,0.88);
        }

        .pricing-feature-check {
            width: 20px;
            height: 20px;
            border-radius: 6px;
            background: rgba(16, 185, 129, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pricing-card.featured .pricing-feature-check {
            background: rgba(16, 185, 129, 0.2);
        }

        .pricing-feature-check svg {
            width: 11px;
            height: 11px;
            stroke: #059669;
            fill: none;
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pricing-card.featured .pricing-feature-check svg {
            stroke: #34D399;
        }

        /* CTA button */
        .pricing-btn {
            width: 100%;
            padding: 0.95rem 1rem;
            border: 1.5px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
            box-sizing: border-box;
        }

        .pricing-btn:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 8px 24px rgba(63,132,243,0.3);
            transform: translateY(-2px);
        }

        .pricing-card.featured .pricing-btn {
            background: #ffffff;
            color: #0c1a3a;
            border-color: transparent;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }

        .pricing-card.featured .pricing-btn:hover {
            background: #eef4ff;
            box-shadow: 0 10px 28px rgba(0,0,0,0.3);
            transform: translateY(-2px);
            color: #0c1a3a;
        }

        /* Testimonials Section */
        .testimonials {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(63, 132, 243, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(63, 132, 243, 0.1);
        }

        /* ---------------------------------------------------------------
           Testimonial carousel
        --------------------------------------------------------------- */
        .testimonial-carousel {
            position: relative;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-viewport {
            overflow: hidden;
            width: 100%;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
            will-change: transform;
        }

        .testimonial-slide {
            flex: 0 0 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: 0.25rem;
        }

        .testimonial-slide .testimonial-card {
            max-width: 640px;
            margin: 0 auto;
            padding: 2.5rem;
            text-align: center;
        }

        .testimonial-slide .testimonial-card .stars {
            justify-content: center;
        }

        .testimonial-slide .testimonial-card .testimonial-author {
            justify-content: center;
        }

        .testimonial-quote-mark {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 4rem;
            line-height: 1;
            color: rgba(63, 132, 243, 0.18);
            margin-bottom: -1rem;
            font-weight: 800;
        }

        .testimonial-arrow {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid var(--border-light);
            background: white;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
        }

        .testimonial-arrow:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-color: transparent;
            transform: scale(1.08);
            box-shadow: 0 8px 22px rgba(63, 132, 243, 0.3);
        }

        .testimonial-arrow:active {
            transform: scale(0.96);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.6rem;
            margin-top: 2rem;
        }

        .testimonial-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--border-light);
            cursor: pointer;
            border: none;
            padding: 0;
            transition: all 0.3s ease;
        }

        .testimonial-dot:hover {
            background: rgba(63, 132, 243, 0.5);
        }

        .testimonial-dot.active {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            width: 26px;
            border-radius: 5px;
        }

        @media (max-width: 640px) {
            .testimonial-carousel {
                gap: 0.75rem;
            }

            .testimonial-arrow {
                width: 38px;
                height: 38px;
                font-size: 1.1rem;
            }

            .testimonial-slide .testimonial-card {
                padding: 1.75rem 1.25rem;
            }
        }

        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .testimonial-text {
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .author-info h4 {
            font-size: 1rem;
            color: var(--text-primary);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .section-header-Why {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header-Why h2,
        .section-header-Why p {
            color: #000000;
        }

        /* FAQ Section */
        .faqs {
            background: #f8fafc;
            position: relative;
            overflow: hidden;
        }

        .faqs::before {
            content: '';
            position: absolute;
            top: -160px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 450px;
            background: radial-gradient(ellipse, rgba(63,132,243,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .faqs::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .faqs .section-container {
            position: relative;
            z-index: 2;
        }

        .faq-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(63, 132, 243, 0.1);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            margin-bottom: 1.25rem;
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            animation: slideUp 0.6s ease forwards;
            opacity: 0;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(63, 132, 243, 0.12);
            border-color: rgba(63, 132, 243, 0.3);
        }

        .faq-item.active {
            border-color: rgba(63, 132, 243, 0.35);
            box-shadow: 0 14px 32px rgba(63, 132, 243, 0.14);
        }

        .faq-header {
            padding: 1.6rem 1.8rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.2rem;
            transition: background 0.3s ease;
            background: white;
        }

        .faq-item:hover .faq-header {
            background: #f7faff;
        }

        .faq-item.active .faq-header {
            background: #f0f6ff;
        }

        .faq-title {
            font-size: 1.08rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(63, 132, 243, 0.35);
            transition: transform 0.35s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding: 0 1.8rem;
        }

        .faq-item.active .faq-content {
            max-height: 500px;
            padding: 0 1.8rem 1.8rem;
        }

        .faq-text {
            color: var(--text-secondary);
            line-height: 1.8;
            border-top: 1px solid var(--border-light);
            padding-top: 1.2rem;
        }

        /* CTA Section */
        .cta {
            background: url('Transform.png') center center / cover no-repeat;
            color: rgb(0, 0, 0);
            text-align: center;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        /* Dark overlay so text stays readable over the image */
        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgb(0 150 255 / 62%) 0%, rgb(80 118 218 / 0%) 50%, rgb(138 162 255 / 72%) 100%);
            pointer-events: none;
            z-index: 0;
        }

        .cta .section-container {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: fadeIn 0.6s ease;
            position: relative;
            z-index: 2;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeIn 0.6s ease 0.1s forwards;
            opacity: 0;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            background: white;
            color: var(--primary);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: fadeIn 0.6s ease 0.2s forwards;
            opacity: 0;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, #f8fafc 0%, var(--light-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -160px;
            right: -120px;
            width: 600px;
            height: 500px;
            background: radial-gradient(ellipse, rgba(63, 132, 243, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact .section-container {
            position: relative;
            z-index: 1;
        }

        .contact-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(63, 132, 243, 0.1);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-info-card {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-start;
            gap: 1.1rem;
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(63, 132, 243, 0.12);
            border-color: rgba(63, 132, 243, 0.25);
        }

        .contact-info-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #f8fafc;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
        }

        .contact-info-icon svg {
            width: 24px;
            height: 24px;
        }

        .contact-info-card h3 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
            color: var(--text-primary);
        }

        .contact-info-card p,
        .contact-info-card a {
            color: var(--text-secondary);
            line-height: 1.7;
            text-decoration: none;
        }

        .contact-info-card a:hover {
            color: var(--primary);
        }

        .contact-form-wrap {
            position: relative;
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 2.25rem;
            box-shadow: 0 15px 50px rgba(15, 23, 42, 0.1);
            overflow: hidden;
        }

        .contact-form-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-group label span {
            color: #ef4444;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1px solid var(--border-light);
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            color: var(--text-primary);
            background: #fff;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(63, 132, 243, 0.15);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .contact-submit {
            grid-column: 1 / -1;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-family: inherit;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: start;
        }

        .contact-submit svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 2.2;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }

        .contact-submit:hover:not(:disabled) svg {
            transform: translate(3px, -3px);
        }

        .contact-submit:hover:not(:disabled) {
            background: linear-gradient(135deg, var(--primary-dark), var(--accent));
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(63, 132, 243, 0.35);
        }

        .contact-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .contact-status {
            grid-column: 1 / -1;
            padding: 0.85rem 1rem;
            border-radius: 10px;
            font-size: 0.95rem;
            display: none;
        }

        .contact-status.success {
            display: block;
            background: #ecfdf5;
            color: #047857;
            border: 1px solid #a7f3d0;
        }

        .contact-status.error {
            display: block;
            background: #fef2f2;
            color: #b91c1c;
            border: 1px solid #fecaca;
        }

        .contact-note {
            grid-column: 1 / -1;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* Footer */
        footer {
            position: relative;
            background: var(--dark-bg);
            color: white;
            padding: 4.5rem 2rem 2rem;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
        }

        footer::after {
            content: '';
            position: absolute;
            top: -180px;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(63, 132, 243, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        footer .section-container,
        .footer-content,
        .footer-bottom {
            position: relative;
            z-index: 1;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            border-bottom: 1px solid #334155;
            padding-bottom: 3rem;
        }

        .footer-brand .logo-icon-container {
            margin-bottom: 1rem;
        }

        .footer-brand .logo {
            font-size: 1.3rem;
        }

        .footer-tagline {
            color: #94a3b8;
            font-size: 0.92rem;
            line-height: 1.7;
            max-width: 320px;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.7rem;
        }

        .footer-social-link {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
            transition: all 0.3s ease;
        }

        .footer-social-link svg {
            display: block;
            width: 16px;
            height: 16px;
            fill: currentColor;
            stroke: none;
        }

        .footer-social-link:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-color: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(63, 132, 243, 0.35);
        }

        .footer-column h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1.3rem;
            position: relative;
            padding-bottom: 0.7rem;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 26px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: #e2e2e2;
            text-decoration: none;
            font-size: 0.92rem;
            transition: color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
            display: flex;
        }

        .footer-column a:hover {
            color: var(--primary-light);
            transform: translateX(4px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
            color: #64748b;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            font-size: 0.85rem;
        }

        .footer-bottom-links a {
            color: #64748b;
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary-light);
        }

        .footer-bottom-links span {
            color: #334155;
        }

        .back-to-top {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #cbd5e1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .back-to-top svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-color: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(63, 132, 243, 0.35);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }

            .footer-bottom {
                justify-content: center;
                text-align: center;
            }

            .logo {
                font-size: 1.2rem;
            }
            header{
                padding: 1rem 0;

            }

            .nav-links {
                display: none;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                padding: 3rem 0 0 0;
                min-height: auto;
                gap:0.5rem;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-mobile-card {
                width: 34%;
                max-width: 140px;
                bottom: -5%;
                right: 4%;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .benefits-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
            }

            .pricing-card.featured {
                transform: translateY(0);
            }

            .cta h2 {
                font-size: 1.8rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card,
            .pricing-card,
            .faq-item {
                animation: none;
                opacity: 1;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 0 1rem;
            }
            .hero{
                padding: 0px;
            }

            .hero-content h1 {
                font-size: 1.8rem;
                text-align: center;
                padding-top: 80px;
            }

            .hero-content p {
                font-size: 1rem;
                padding: 0 20px;
                text-align: center;
            }
            .cta-group{
                text-align: center;
                padding: 0 20px;
            }

            .hero-content .cta-group {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            section {
                padding: 3rem 1rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .pricing-card-body {
                padding: 1.5rem;
            }

            .faq-header {
                padding: 1.2rem;
            }
        }

        /* ── Nav: active-page indicator (used on subpages) ── */
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        /* ================================================================
           About page
        ================================================================ */
.section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(63, 132, 243, 0.1);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }

.about-hero {
            position: relative;
            overflow: hidden;
            padding: 10rem 2rem 6rem;
            background: url('Privacy.png') center center / cover no-repeat;
        }

.about-hero .section-container {
            position: relative;
            z-index: 1;
            text-align: center;
        }

.breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            animation: fadeIn 0.6s ease;
        }

.breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.25s ease;
        }

.breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb-header{
            text-align: center;
        }

.about-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            max-width: 780px;
            margin: 0 auto 1.25rem;
            animation: fadeInUp 0.7s ease forwards;
        }

.about-hero h1 span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.about-hero > .section-container > p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto;
            animation: fadeInUp 0.7s ease 0.1s forwards;
            opacity: 0;
        }

.story {
            background: var(--light-bg);
        }

.story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

.story-copy .section-label {
            margin-bottom: 1rem;
        }

.story-copy h2 {
            font-size: 2.4rem;
            font-weight: 800;
            letter-spacing: -0.3px;
            margin-bottom: 1.2rem;
        }

.story-copy p {
            color: var(--text-secondary);
            margin-bottom: 1.1rem;
            line-height: 1.8;
        }

.story-copy p:last-child {
            margin-bottom: 0;
        }

.story-visual {
            position: relative;
        }

.mission-vision {
            background: linear-gradient(180deg, #f8fafc 0%, #f0f5ff 100%);
        }

.mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

.mv-card {
            position: relative;
            overflow: hidden;
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

.mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

.mv-card:hover::before {
            transform: scaleX(1);
        }

.mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(63, 132, 243, 0.12);
        }

.mv-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: #f8fafc;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
        }

.mv-icon svg {
            width: 28px;
            height: 28px;
        }

.mv-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

.mv-card p {
            color: var(--text-secondary);
            line-height: 1.75;
        }

.stats-band {
            background: var(--dark-bg);
            color: white;
            position: relative;
            overflow: hidden;
        }

.stats-band::before {
            content: '';
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(63, 132, 243, 0.18) 0%, transparent 70%);
            pointer-events: none;
        }

.stats-band .section-container {
            position: relative;
            z-index: 1;
        }

.stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: center;
        }

.stat-item h3 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

.stat-item p {
            color: #94a3b8;
            font-size: 0.95rem;
        }

.values {
            background: var(--light-bg);
        }

.values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

.value-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(63, 132, 243, 0.08);
            box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

.value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

.value-card:hover::before {
            transform: scaleX(1);
        }

.value-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 45px rgba(63, 132, 243, 0.13);
            border-color: rgba(63, 132, 243, 0.25);
        }

.value-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #f8fafc;
            border: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
        }

.value-icon svg {
            width: 26px;
            height: 26px;
        }

.value-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

.value-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        /* ================================================================
           Legal pages (Privacy Policy / Terms of Service)
        ================================================================ */
.legal-hero {
            position: relative;
            overflow: hidden;
            padding: 9.5rem 2rem 3.5rem;
            background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 100%);
        }

.legal-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(63, 132, 243, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

.legal-hero .section-container {
            position: relative;
            z-index: 1;
        }

.breadcrumb {
            display: flex;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1.25rem;
            animation: fadeIn 0.6s ease;
        }

.breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.25s ease;
        }

.breadcrumb a:hover {
            color: var(--primary);
        }

.legal-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(63, 132, 243, 0.1);
            color: var(--primary);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1.1rem;
        }

.legal-hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 0.75rem;
            animation: fadeInUp 0.6s ease forwards;
        }

.legal-updated {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

.legal-body {
            padding: 4rem 2rem 6rem;
        }

.legal-layout {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 3.5rem;
            align-items: start;
        }

.legal-toc {
            position: sticky;
            top: 110px;
            background: #f8fafc;
            border: 1px solid var(--border-light);
            border-radius: 16px;
            padding: 1.5rem;
        }

.legal-toc h4 {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

.legal-toc ol {
            list-style: none;
            counter-reset: toc;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

.legal-toc li {
            counter-increment: toc;
        }

.legal-toc a {
            display: flex;
            gap: 0.6rem;
            padding: 0.5rem 0.6rem;
            border-radius: 8px;
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.2s ease;
        }

.legal-toc a::before {
            content: counter(toc);
            font-weight: 700;
            color: var(--primary);
            flex-shrink: 0;
            width: 1.1rem;
        }

.legal-toc a:hover {
            background: rgba(63, 132, 243, 0.08);
            color: var(--text-primary);
        }

.legal-toc a.active {
            background: rgba(63, 132, 243, 0.1);
            color: var(--primary);
            font-weight: 600;
        }

.legal-content h2 {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.2px;
            margin: 2.75rem 0 1rem;
            scroll-margin-top: 110px;
        }

.legal-content section:first-of-type h2 {
            margin-top: 0;
        }

.legal-content h2 .num {
            color: var(--primary);
            margin-right: 0.5rem;
        }

.legal-content p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.85;
        }

.legal-content ul {
            color: var(--text-secondary);
            margin: 0 0 1rem 1.3rem;
            line-height: 1.85;
        }

.legal-content ul li {
            margin-bottom: 0.4rem;
        }

.legal-content strong {
            color: var(--text-primary);
        }

.legal-callout {
            background: #eff6ff;
            border: 1px solid #dbeafe;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            margin: 1.5rem 0;
        }

.legal-callout p {
            color: #1e3a5f;
            margin: 0;
            font-size: 0.95rem;
        }

.legal-callout strong {
            color: #1E4FD1;
        }

.legal-contact-card {
            margin-top: 3rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 16px;
            padding: 2rem;
            color: white;
        }

.legal-contact-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

.legal-contact-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
        }

.legal-contact-card a {
            color: white;
            font-weight: 700;
            text-decoration: underline;
        }

/* ── Legal pages: reading progress bar ── */
.reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 1100;
            transition: width 0.1s ease-out;
        }

/* ── Legal pages: hero entrance choreography ── */
.legal-hero .legal-label {
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.1s forwards;
        }

.legal-hero h1 {
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.2s forwards;
        }

.legal-hero .legal-updated {
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.32s forwards;
        }

/* ── Legal pages: TOC entrance + refined active indicator ── */
.legal-toc {
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.15s forwards;
        }

.legal-toc a {
            position: relative;
        }

.legal-toc a.active {
            padding-left: 0.9rem;
        }

.legal-toc a.active::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 60%;
            border-radius: 3px;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

/* ── Legal pages: section number badge ── */
.legal-content h2 .num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.9rem;
            height: 1.9rem;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            font-size: 0.95rem;
            margin-right: 0.7rem;
            vertical-align: middle;
            box-shadow: 0 4px 12px rgba(63, 132, 243, 0.3);
        }

/* ── Legal pages: scroll-reveal for content sections ── */
.legal-content > section {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

.legal-content > section.in-view {
            opacity: 1;
            transform: translateY(0);
        }

/* ── Legal pages: callout + contact card polish ── */
.legal-callout {
            transition: box-shadow 0.3s ease;
        }

.legal-callout:hover {
            box-shadow: 0 8px 24px rgba(63, 132, 243, 0.1);
        }

.legal-contact-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(63, 132, 243, 0.15);
        }

.legal-contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(63, 132, 243, 0.22);
        }

@media (max-width: 900px) {
            .legal-layout {
                grid-template-columns: 1fr;
            }

            .legal-toc {
                position: static;
            }
        }

        .workflow-section{
            padding:100px 0;
            background:#f8fbff;
            overflow:hidden;
        }
        
        .container{
            width:min(1200px,90%);
            margin:auto;
        }
        
        .section-heading{
            text-align:center;
            margin-bottom:70px;
        }
        
        .section-tag{
            display:inline-block;
            padding:8px 18px;
            background:#e8f2ff;
            color:#2563eb;
            font-weight:600;
            border-radius:30px;
            margin-bottom:15px;
        }
        
        .section-heading h2{
            font-size:42px;
            font-weight:700;
            color:#111827;
            margin-bottom:18px;
        }
        
        .section-heading h2 span{
            color:#2563eb;
        }
        
        .section-heading p{
            max-width:650px;
            margin:auto;
            color:#6b7280;
            line-height:1.8;
        }
        
        .workflow{
            display:grid;
            grid-template-columns:1fr 60px 1fr 60px 1fr 60px 1fr;
            align-items:center;
        }
        
        .connector{
            height:3px;
            background:linear-gradient(to right,#3b82f6,#dbeafe);
            border-radius:20px;
            position:relative;
        }
        
        .connector::after{
            content:"";
            position:absolute;
            right:-4px;
            top:50%;
            transform:translateY(-50%);
            width:10px;
            height:10px;
            background:#3b82f6;
            border-radius:50%;
        }
        
        .workflow-card{
            position:relative;
            background:#fff;
            border-radius:22px;
            padding:35px;
            text-align:center;
            box-shadow:0 15px 40px rgba(15,23,42,.08);
            transition:.35s;
            border:1px solid rgba(0,0,0,.05);
        }
        
        .workflow-card:hover{
            transform:translateY(-10px);
            box-shadow:0 25px 60px rgba(37,99,235,.18);
        }
        
        .step-badge{
            position:absolute;
            top:-18px;
            left:50%;
            transform:translateX(-50%);
            width:44px;
            height:44px;
            border-radius:50%;
            background:#2563eb;
            color:#fff;
            font-weight:700;
            display:flex;
            justify-content:center;
            align-items:center;
            box-shadow:0 8px 20px rgba(37,99,235,.35);
        }
        
        .icon{
            width:78px;
            height:78px;
            margin:20px auto;
            border-radius:18px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:34px;
        }
        
        .blue{
            background:#e0ecff;
            color:#2563eb;
        }
        
        .purple{
            background:#efe7ff;
            color:#7c3aed;
        }
        
        .green{
            background:#dcfce7;
            color:#16a34a;
        }
        
        .orange{
            background:#ffedd5;
            color:#ea580c;
        }
        
        .workflow-card h3{
            font-size:22px;
            margin:18px 0 15px;
            color:#111827;
        }
        
        .workflow-card p{
            color:#6b7280;
            line-height:1.8;
        }
        
        /* Tablet */
        
        @media(max-width:991px){
        
        .workflow{
        grid-template-columns:1fr;
        gap:40px;
        }
        
        .connector{
        width:3px;
        height:55px;
        margin:auto;
        background:linear-gradient(to bottom,#3b82f6,#dbeafe);
        }
        
        .connector::after{
        left:50%;
        top:auto;
        bottom:-6px;
        transform:translateX(-50%);
        }
        
        }

/* ================================================================
   Colorful icon system — tinted badge backgrounds + matching
   card accent bars, so each icon reads as its own color family
   instead of every badge being the same flat blue.
================================================================ */
.icon-tint-blue   { background: #EFF6FF; border-color: #DBEAFE; }
.icon-tint-purple { background: #F5F3FF; border-color: #EDE9FE; }
.icon-tint-green  { background: #ECFDF5; border-color: #D1FAE5; }
.icon-tint-amber  { background: #FFFBEB; border-color: #FEF3C7; }
.icon-tint-pink   { background: #FFF1F2; border-color: #FFE4E6; }
.icon-tint-teal   { background: #ECFEFF; border-color: #CFFAFE; }
.icon-tint-indigo { background: #EEF2FF; border-color: #E0E7FF; }

.accent-blue::before   { background: linear-gradient(90deg, #60A5FA, #3F84F3); }
.accent-purple::before { background: linear-gradient(90deg, #A78BFA, #7C3AED); }
.accent-green::before  { background: linear-gradient(90deg, #34D399, #059669); }
.accent-amber::before  { background: linear-gradient(90deg, #FBBF24, #D97706); }
.accent-pink::before   { background: linear-gradient(90deg, #FB7185, #E11D48); }
.accent-teal::before   { background: linear-gradient(90deg, #22D3EE, #0891B2); }
.accent-indigo::before { background: linear-gradient(90deg, #818CF8, #4F46E5); }