  /* ==================== CSS RESET & BASE ==================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        :root {
            --background: 0 0% 100%;
            --foreground: 220 20% 15%;
            --card: 0 0% 100%;
            --card-foreground: 220 20% 15%;
            --primary: 168 76% 36%;
            --primary-foreground: 0 0% 100%;
            --secondary: 168 40% 96%;
            --secondary-foreground: 168 76% 25%;
            --muted: 220 14% 96%;
            --muted-foreground: 220 10% 45%;
            --accent: 168 60% 94%;
            --accent-foreground: 168 76% 30%;
            --destructive: 0 84% 60%;
            --destructive-foreground: 0 0% 100%;
            --border: 220 13% 91%;
            --input: 220 13% 91%;
            --ring: 168 76% 36%;
            --radius: 0.625rem;
            --taptec-navy: 220 30% 18%;
            --taptec-teal-dark: 168 80% 28%;
            --taptec-teal-light: 168 50% 95%;
            --taptec-slate: 220 15% 55%;
            --taptec-success: 152 69% 40%;
            --shadow-sm: 0 1px 2px 0 hsl(220 30% 18% / 0.05);
            --shadow-md: 0 4px 6px -1px hsl(220 30% 18% / 0.08), 0 2px 4px -2px hsl(220 30% 18% / 0.05);
            --shadow-lg: 0 10px 15px -3px hsl(220 30% 18% / 0.08), 0 4px 6px -4px hsl(220 30% 18% / 0.04);
            --shadow-xl: 0 20px 25px -5px hsl(220 30% 18% / 0.1), 0 8px 10px -6px hsl(220 30% 18% / 0.08);
            --shadow-card: 0 0 0 1px hsl(220 13% 91%), 0 4px 12px hsl(220 30% 18% / 0.06);
            --shadow-elevated: 0 0 0 1px hsl(220 13% 91%), 0 8px 30px hsl(220 30% 18% / 0.12);
            --gradient-hero: linear-gradient(135deg, hsl(168 76% 36%) 0%, hsl(168 80% 28%) 100%);
            --gradient-subtle: linear-gradient(180deg, hsl(168 50% 95%) 0%, hsl(0 0% 100%) 100%);
            --gradient-card-hover: linear-gradient(180deg, hsl(168 60% 94%) 0%, hsl(0 0% 100%) 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            letter-spacing: -0.025em;
            color: hsl(var(--taptec-navy));
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ==================== UTILITY CLASSES ==================== */
        .section-container {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        @media (min-width: 640px) {
            .section-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .section-container {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        .section-padding {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .section-padding {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
        }

        .gradient-text {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.corporate-card{
    background: var(--gradient-card-hover) !important;
}

        .card-elevated {
    background: var(--card);
           
            border-radius: 0.75rem;
            border: 1px solid hsl(var(--border));
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }
.contact-form{
background: var(--background);

}
.contact-form.card-elevated{
	background: #fff;
	}
        .card-elevated:hover {
            box-shadow: var(--shadow-elevated);
            transform: translateY(-2px);
        }

        .badge-feature {
            display: inline-flex;
            align-items: center;
            border-radius: 9999px;
            background-color: hsl(var(--secondary));
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: hsl(var(--secondary-foreground));
	   line-height: 1rem;
        }

        /* ==================== BUTTONS ==================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.625rem 1.25rem;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }

        .btn-primary {
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            opacity: 0.9;
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid hsl(var(--border));
            color: hsl(var(--foreground));
        }

        .btn-outline:hover {
            background-color: hsl(var(--muted));
        }

        .btn-ghost {
            background-color: transparent;
            color: hsl(var(--foreground));
        }

        .btn-ghost:hover {
            background-color: hsl(var(--muted));
        }

        .btn-lg {
            padding: 8px 1.5rem;
            font-size: 0.875rem;
        }

        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }
.corporate-ctas .btn-lg{
font-weight: 500;
gap: 0.5rem;
padding: 10px 32px;
}

        /* ==================== HEADER ==================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-color: hsl(var(--background) / 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid hsl(var(--border));
        }

        .header-inner {
            display: flex;
            height: 4rem;
            align-items: center;
            justify-content: space-between;
        }

        .header-logo img {
            height: 2.5rem;
        }

        .header-nav {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .header-nav {
                display: flex;
            }
        }

        .header-nav a {
            font-size: 0.875rem;
            font-weight: 500;
            color: hsl(var(--muted-foreground));
            transition: color 0.2s ease;
        }

        .header-nav a:hover {
            color: hsl(var(--foreground));
        }

        .header-ctas {
            display: none;
            align-items: center;
            gap: 0.75rem;
        }

        @media (min-width: 768px) {
            .header-ctas {
                display: flex;
            }
        }

        .mobile-menu-btn {
            display: block;
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: hsl(var(--foreground));
        }

        .mobile-menu {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid hsl(var(--border));
        }

        .mobile-menu.active {
            display: block;
        }

        @media (min-width: 768px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu a {
            display: block;
            padding: 0.5rem 0;
            font-size: 0.875rem;
            font-weight: 500;
            color: hsl(var(--muted-foreground));
        }

        .mobile-menu-ctas {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding-top: 1rem;
            margin-top: 1rem;
            border-top: 1px solid hsl(var(--border));
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            position: relative;
            padding-top: 6rem;
            padding-bottom: 4rem;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .hero {
                padding-top: 8rem;
                padding-bottom: 6rem;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: #fff;
        }

        .hero-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .hero-badge {
            display: inline-block;
        }

        .hero h1 {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1;
        }
.hero{
	background:#fff;
}
.hero .btn-lg{
	padding: 9px 32px;
gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.5rem;

}
  .glow.back {
      inset: -14rem;
      z-index: -3;
      animation-delay: 3s; 
      opacity: 0.6;
    }

    .glow::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(
        circle at center,
        hsl(var(--primary)) 0%,
        hsl(var(--primary) / 1) 40%,
        transparent 70%
      );
    filter: blur(64px);
    }

    /* IMAGE */
    .hero {
      position: relative;
     
    }

    .hero img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    }


    /* ANIMATIONS */
    @keyframes pulse {
      0%, 100% {
        transform: scale(0.9);
        opacity: 0.6;
      }
      50% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes hueShift {
      from { filter: hue-rotate(0deg); }
      to { filter: hue-rotate(360deg); }
    }

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


.blur-\[80px\] {
    --tw-blur: blur(80px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.-z-20 {
    z-index: -20;
}
.-inset-16 {
    top: -4rem;
    right: -4rem;
    bottom: -4rem;
    left: -4rem;
}

        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 3.75rem;
            }
        }

        .hero-description {
            font-size: 1.125rem;
            color: hsl(var(--muted-foreground));
            max-width: 36rem;
        line-height: 1.75rem;
        }

        @media (min-width: 768px) {
            .hero-description {
                font-size: 1.25rem;
            }
        }

        .hero-ctas {
            display: flex;
            flex-direction: column;
            gap: 1rem;
    padding-top: 10px;
        }

        @media (min-width: 640px) {
            .hero-ctas {
                flex-direction: row;
            }
        }

        .hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            padding-top: 1.5rem;
        }

        .hero-highlight {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
    line-height: 1.25rem;

        }

        .hero-highlight svg {
            width: 1rem;
            height: 1rem;
            color: hsl(var(--primary));
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
            animation: float 5s ease-in-out infinite;
        }

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

        .hero-glow {
            position: absolute;

            background: radial-gradient(circle at center, hsl(var(--primary) / 0.6) 0%, transparent 60%);
            
            animation: pulse-glow 3s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        /* ==================== SCROLL REVEAL ANIMATIONS ==================== */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-reveal.delay-1 { transition-delay: 0.1s; }
        .scroll-reveal.delay-2 { transition-delay: 0.2s; }
        .scroll-reveal.delay-3 { transition-delay: 0.3s; }

        /* ==================== HERO WORD STAGGER ANIMATION ==================== */
        .hero-word {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            animation: hero-word-in 0.5s ease-out forwards;
        }

        @keyframes hero-word-in {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==================== ANIMATED BACKGROUND ==================== */
        .animated-background {
            position: fixed;
            inset: 0;
            z-index: -20;
            overflow: hidden;
            pointer-events: none;
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            transition: transform 0.1s linear;
        }

        .bg-orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, hsl(var(--primary) / 0.12) 0%, transparent 70%);
            top: 5%;
            left: -10%;
        }

        .bg-orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, hsl(var(--accent) / 0.15) 0%, transparent 70%);
            top: 40%;
            right: -5%;
        }

        .bg-orb-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, hsl(var(--primary) / 0.1) 0%, transparent 70%);
            top: 70%;
            left: 10%;
        }

        .bg-dots {
            position: absolute;
            inset: 0;
            opacity: 0.015;
            background-image: radial-gradient(hsl(var(--foreground)) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        /* ==================== LOGO CAROUSEL ==================== */
        .logo-carousel {
            padding: 4rem 0 4rem;
            background-color: hsl(var(--background));
            overflow: hidden;
        }

        .logo-carousel-title {
            text-align: center;
            font-size: 1.125rem;
            font-weight: 500;
            color: hsl(var(--muted-foreground));
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .logo-title-glow {
            position: relative;
            display: inline-block;
overflow: hidden;

        }
.mt-8{
  margin-top: 8px;
}     .logo-title-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.7) 50%, transparent 100%);
            filter: blur(12px);
            width: 50%;
            left: -50%;
            opacity: 0;
            transition: none;
        }

        .logo-title-glow.glow-sweep::after {
            animation: glow-sweep 1.5s ease-in-out forwards;
        }

        @keyframes glow-sweep {
            0% { left: -50%; opacity: 1; }
            100% { left: 100%; opacity: 1; }
        }

        .logo-row {
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
        }

        .logo-row::before,
        .logo-row::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 5rem;
            z-index: 10;
        }

        .logo-row::before {
            left: 0;
            background: linear-gradient(to right, hsl(var(--background)), transparent);
        }

        .logo-row::after {
            right: 0;
            background: linear-gradient(to left, hsl(var(--background)), transparent);
        }

        @media (min-width: 768px) {
            .logo-row::before,
            .logo-row::after {
                width: 8rem;
            }
.logo-carousel-title{
        font-size: 1.25rem;
        line-height: 2.2rem;
    
        }

        .logo-track {
            display: flex;
            gap: 0.5rem;
            width: max-content;
        }

        @media (min-width: 768px) {
            .logo-track {
                gap: 1rem;
            }
        }

        .logo-track.scroll-left {
            animation: scroll-left 90s linear infinite;
        }

        .logo-track.scroll-right {
            animation: scroll-right 90s linear infinite;
        }

        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-33.333%); }
        }

        @keyframes scroll-right {
            0% { transform: translateX(-33.333%); }
            100% { transform: translateX(0); }
        }

        .logo-item {
            flex-shrink: 0;
            height: 5rem;
            width: 10rem;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .logo-item {
                height: 7rem;
                width: 13rem;
            }
        }

        .logo-item:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .logo-item img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        /* ==================== HOW IT WORKS ==================== */
        .how-it-works {
            background-color: hsl(var(--background));
        }

        .section-header {
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 3rem;
        }

        .section-header h2 {
            font-size: 1.875rem;
            margin-bottom: 1rem;
	    font-weight: 700;
        }
       
        @media (min-width: 768px) {
            .section-header h2 {
                font-size: 2.25rem;
		line-height:2.5rem;
            }
        }

        .section-header p {
            font-size: 1rem;
            color: hsl(var(--muted-foreground));
        }

        .steps-grid {
            display: grid;
            gap: 2rem;
        }
	.gallery .section-header p{
	 line-height: 1.5rem;

}
        @media (min-width: 768px) {
            .steps-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 3rem;
            }
        }

        .step {
            position: relative;
            text-align: center;
        }

        .step-icon {
            position: relative;
            margin: 0 auto 1.5rem;
            height: 6rem;
            width: 6rem;
            border-radius: 1rem;
            background-color: hsl(var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-icon svg {
            width: 2.5rem;
            height: 2.5rem;
            color: hsl(var(--primary));
        }

        .step-number {
            position: absolute;
            top: -0.5rem;
            right: -0.5rem;
            height: 2rem;
            width: 2rem;
            border-radius: 9999px;
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
            font-size: 0.875rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
	    line-height: 1.75rem;
        }

        .step p {
            color: hsl(var(--muted-foreground));
line-height: 1.5rem;
        }
.step:hover .step-icon{
    background-color: hsl(var(--primary) / .1);
	}

        /* ==================== DASHBOARD SECTION ==================== */
        .dashboard-section {
               background-color: hsl(var(--muted) / .3);
        }

        .dashboard-grid {
            display: grid;
            gap: 3rem;
            align-items: center;
        }
.dashboard-content h2{
	font-weight: 700;
}
.dashboard-content .btn-primary{
	    padding: 11px 32px;
}
        @media (min-width: 1024px) {
            .dashboard-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .dashboard-content h2 {
            font-size: 1.875rem;
            margin-bottom: 1.4rem;
        }

        @media (min-width: 768px) {
            .dashboard-content h2 {
                font-size: 2.25rem;
            }
        }

        @media (min-width: 1024px) {
            .dashboard-content h2 {
                font-size: 3rem;
		line-height: 1;
            }
        }

        .dashboard-content .subtitle {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            color: hsl(var(--primary));
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .dashboard-content > p {
            font-size: 1.125rem;
            color: hsl(var(--muted-foreground));
            margin-bottom: 1.5rem;
	    line-height: 1.75rem;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .feature-list .check-icon {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 9999px;
            background-color: hsl(var(--primary) / 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 0.125rem;
        }

        .feature-list .check-icon svg {
            width: 1rem;
            height: 1rem;
            color: hsl(var(--primary));
        }

        .dashboard-mockup {
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border: 1px solid hsl(var(--border) / 0.5);
            overflow: hidden;
        }

        .mockup-header {
            background-color: hsl(var(--muted) / 0.3);
            padding: 1rem 1.5rem;
            border-bottom: 1px solid hsl(var(--border) / 0.5);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mockup-dots {
            display: flex;
            gap: 0.5rem;
        }

        .mockup-dots span {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 9999px;
        }

        .mockup-dots span:nth-child(1) { background-color: #f87171; }
        .mockup-dots span:nth-child(2) { background-color: #fbbf24; }
        .mockup-dots span:nth-child(3) { background-color: #4ade80; }

        .mockup-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: hsl(var(--muted-foreground));
line-height: 1.25rem;
        }

        .mockup-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

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

        .chart-area {
            background-color: hsl(var(--muted) / 0.2);
            border-radius: 0.75rem;
            padding: 1rem;
            border: 1px solid hsl(var(--border) / 0.3);
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .chart-title {
            font-size: 0.875rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
	line-height: 1.25rem;
        }

        .chart-period {
            font-size: 0.75rem;
            color: hsl(var(--muted-foreground));
            background-color: hsl(var(--muted) / 0.5);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
line-height: 1rem;

        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 0.5rem;
            height: 8rem;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(to top, hsl(var(--primary)), hsl(var(--primary) / 0.6));
            border-radius: 8px  8px 0 0;
            transform: scaleY(0);
            transform-origin: bottom;
        }

        .chart-bar.bar-animate {
            animation: bar-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }
	.mt-4{
		margin-top: 1rem;	
	}
        @keyframes bar-bounce {
            0% { transform: scaleY(0); }
            100% { transform: scaleY(1); }
        }

        /* Dashboard stat card animations */
        .stat-card {
            padding: 1rem;
            border-radius: 0.75rem;
            color: white;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
        }

        .stat-card:nth-child(1) { background-color: hsl(var(--primary)); }
        .stat-card:nth-child(2) { background-color: #22c55e; }
        .stat-card:nth-child(3) { background-color: #f59e0b; }

        .stat-card .stat-label {
            font-size: 0.75rem;
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
line-height: 1rem;
        }

        .stat-card .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
line-height: 2rem;
        }
.stat-label svg{
	width: 20px;
	height: 20px;
}
        .stat-card.stat-animate {
            animation: stat-in 0.5s ease-out forwards;
        }

        @keyframes stat-in {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Lead item animations */
        .lead-item {
            opacity: 0;
            transform: translateX(-30px);
        }

        .lead-item.lead-animate {
            animation: lead-in 0.4s ease-out forwards;
        }

        @keyframes lead-in {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .chart-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.75rem;
            color: hsl(var(--muted-foreground));
line-height: 1rem;
        }

        /* ==================== SOLUTIONS SECTION ==================== */
        .solutions {
            background: var(--gradient-subtle);
        }

        .solutions-header {
            display: grid;
            gap: 2rem;
            margin-bottom: 4rem;
        }
	.solutions-header .btn{
	    padding: 10px 16px;
    line-height: 1.25rem;
}

        @media (min-width: 1024px) {
            .solutions-header {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: flex-start;
            }
        }

        .solutions-header h2 {
            font-size: 1.875rem;
	    font-weight: 700;
        }
	
        @media (min-width: 768px) {
            .solutions-header h2 {
                font-size: 2.25rem;
		line-height:2.5rem;
            }
        }

        .solutions-header p {
            font-size: 1.125rem;
            color: hsl(var(--muted-foreground));
            margin-bottom: 1rem;
		line-height: 1.75rem;

        }

        .features-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            padding: 1.5rem;
            background-color: hsl(var(--card));
        }

        .feature-card-icon {
            height: 3rem;
            width: 3rem;
            border-radius: 0.5rem;
            background-color: hsl(var(--primary) / 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .feature-card-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: hsl(var(--primary));
        }

        .feature-card h3 {
            font-size: 1.125rem;
            margin-bottom: 0.5rem;

        }

        .feature-card p {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
	line-height: 1.25rem;
        }

        /* ==================== PRODUCTS SECTION ==================== */
        .products {
            background-color: hsl(var(--background));
        }

        .products-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        .product-card {
            position: relative;
            padding: 1.5rem;
        }

        @media (min-width: 1024px) {
            .product-card {
                padding: 2rem;
            }
        }

        .product-card.popular {
            border: none;
        }
	.product-card.popular:hover,
.pricing-card.popular:hover{
	box-shadow: 0 0 0 1px hsl(167.37deg 35.83% 70.34%), 0 8px 30px hsl(167.69deg 41.88% 78.33%);
}
        .product-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -0.75rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            box-shadow: var(--shadow-lg);
	    z-index: 10;
        }

        .product-icon {
            height: 3.5rem;
            width: 3.5rem;
            border-radius: 0.75rem;
            background-color: hsl(var(--primary) / 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .product-icon svg {
            width: 1.75rem;
            height: 1.75rem;
            color: hsl(var(--primary));
        }

        .product-name {
            font-size: 1.25rem;
               line-height: 1.75rem;

        }

        .product-tagline {
            font-size: 0.875rem;
            font-weight: 500;
            color: hsl(var(--primary));
            margin-bottom: 1rem;
    line-height: 1.25rem;

        }

        .product-description {
            color: hsl(var(--muted-foreground));
            margin-bottom: 1.5rem;
	 line-height: 1.25rem;

        }

        .product-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .product-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
 line-height: 1.25rem;

        }

        .product-features svg {
            width: 1rem;
            height: 1rem;
            color: hsl(var(--taptec-success));
            flex-shrink: 0;
        }

        /* ==================== BENEFITS SECTION ==================== */
        .benefits {
            background: var(--gradient-subtle);
        }

        .comparison-table {
            max-width: 56rem;
            margin: 0 auto;
        }

        .comparison-headers {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .comparison-header {
            text-align: center;
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
	        line-height: 1.5rem;
        }

        .comparison-header.traditional {
            background-color: hsl(var(--muted));
            color: hsl(var(--muted-foreground));
        }

        .comparison-header.taptec {
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
        }

        .comparison-rows {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .comparison-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .comparison-cell {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            border-radius: 0.5rem;
            background-color: hsl(var(--card));
            border: 1px solid hsl(var(--border));
        }

        .comparison-cell.taptec {
            border-color: hsl(var(--primary) / 0.2);
        }

        .comparison-cell svg {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

        .comparison-cell.traditional svg {
            color: hsl(var(--destructive));
        }

        .comparison-cell.taptec svg {
            color: hsl(var(--taptec-success));
        }

        .comparison-cell span {
            font-size: 0.875rem;
line-height: 1.25rem;
        }

        .comparison-cell.traditional span {
            color: hsl(var(--muted-foreground));
        }

        /* ==================== PRICING SECTION ==================== */
        .pricing {
            background-color: hsl(var(--background));
        }

        .pricing-grid {
            display: grid;
            gap: 1.5rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        .pricing-card {
            padding: 1.5rem;
            position: relative;
        }

        @media (min-width: 1024px) {
            .pricing-card {
                padding: 2rem;
            }
        }

        .pricing-card.popular {
            border: none;
        }

        .pricing-card.popular::before {
            content: 'Best Value';
            position: absolute;
            top: -0.75rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: hsl(var(--primary));
            color: hsl(var(--primary-foreground));
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            box-shadow: var(--shadow-lg);
    	    z-index: 10;
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 1.5rem;

            
        }

        .pricing-name {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
line-height: 1.75rem;
        }

        .pricing-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: hsl(var(--taptec-navy));
    line-height: 2.5rem;
        }

        .pricing-period {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
	    line-height: 1.25rem;
	    margin-top: .25rem;
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
    line-height: 1.25rem;
        }

        .pricing-features svg {
            width: 1rem;
            height: 1rem;
            color: hsl(var(--taptec-success));
            flex-shrink: 0;
        }

        .pricing-features .highlight {
            color: hsl(var(--primary));
            font-weight: 500;
        }

        .bulk-banner {
            margin-top: 3rem;
        }

        .bulk-banner-inner {
                display: flex;
    		flex-wrap: wrap;
    		align-items: center;
    		justify-content: center;
    		gap: 1rem;
    padding: 12px 24px;
    border-radius: 50px;
    background-color: hsl(var(--secondary));
    border: 1px solid hsl(var(--primary) / 0.2);
    width: fit-content;
    margin: 0 auto;

        }
.bulk-text strong{
	color: hsl(var(--primary));
font-weight: 600;
}

        .bulk-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: hsl(var(--primary));
            color: white;
            font-weight: 700;
        }

        .bulk-text {
            font-size: 1rem;
            color: hsl(var(--foreground));
font-weight: 500;
        }

        .bulk-link {
            color: hsl(var(--primary));
            font-weight: 600;
            font-size: 0.875rem;
text-decoration: underline;
        }

        .bulk-link:hover {
            text-decoration: underline;
        }

        .corporate-box {
            margin-top: 5rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .corporate-card {
            padding: 2rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .corporate-card {
                padding: 3rem;
            }
        }

        .corporate-card h3 {
            font-size: 1.875rem;
            margin-bottom: 1rem;
line-height: 2.25rem;
font-weight: 700;
        }

        .corporate-card > p {
            color: hsl(var(--muted-foreground));
            margin-bottom: 1.5rem;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
    font-size: 1.125rem;
  line-height: 1.75rem;


        }

        .corporate-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .corporate-features span {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            padding: 0rem 0rem;
            border-radius: 9999px;
 line-height: 1.25rem;
    color: hsl(var(--muted-foreground));
        }

        .corporate-features svg {
            width: 1rem;
            height: 1rem;
            color: hsl(var(--primary));
        }

        .corporate-ctas {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .corporate-ctas {
                flex-direction: row;
            }
        }

        /* ==================== GALLERY SECTION ==================== */
        .gallery {
            background-color: hsl(var(--secondary) / .3);
        }

        .gallery-grid {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(2, 1fr);
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .gallery-item-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1rem;
            color: white;
            font-size: 1rem;
	    line-height: 1.5rem;
            font-weight: 500;
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-item-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==================== TESTIMONIALS SECTION ==================== */
        .testimonials {
               background: var(--gradient-subtle);
        }

        .testimonials-grid {
            display: grid;
            gap: 1.5rem;
margin-bottom: 4rem;
        }
	.pricing .section-header,
	.benefits .section-header,
	.products .section-header,
	.how-it-works .section-header,
	.testimonials .section-header{
		margin: 0 auto 4rem;
	}
	.how-it-works .section-header p{
		font-size: 1.125rem;
    		line-height: 1.75rem;
	}
        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
        }

        .testimonial-card {
            padding: 1.5rem;
        }

        @media (min-width: 768px) {
            .testimonial-card {
                padding: 2rem;
            }
        }

        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
            color: #f59e0b;
        }

        .testimonial-quote {
            font-size: 1rem;
            color: hsl(var(--foreground));
            margin-bottom: 1.5rem;
                line-height: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .testimonial-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: hsl(var(--primary));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .testimonial-name {
            font-weight: 500;
            font-size: 0.875rem;
    line-height: 1.25rem;
        }

        .testimonial-role {
            font-size: 0.75rem;
            color: hsl(var(--muted-foreground));
line-height: 1rem;

        }

        /* ==================== CTA SECTION ==================== */
        .cta {
            background: hsl(var(--taptec-navy));
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .cta-inner {
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .cta h2 {
            font-size: 1.875rem;
            color: white;
            margin-bottom: 1rem;
    font-weight: 700;
        }
.cta .btn{
	font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    padding: 11px 32px;
}
.cta .btn.btn-primary{
	gap: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

        @media (min-width: 768px) {
            .cta h2 {
                font-size: 2.25rem;
		line-height: 2.5rem;
            }
        }

        .cta p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 36rem;
            margin: 0 auto 2rem;
line-height: 1.75rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        .cta .btn-outline {
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
            background-color: transparent;
        }

        .cta .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .cta .btn-white {
            background-color: white;
            color: hsl(var(--primary));
        }

        .cta .btn-white:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        /* ==================== CONTACT FORM ==================== */
        .contact {
            background-color: hsl(var(--muted) / 0.3);
        }

        .contact-form-wrapper {
            max-width: 42rem;
            margin: 0 auto;
        }

        .contact-form {
            padding: 1.5rem;
        }

        @media (min-width: 768px) {
            .contact-form {
                padding: 2rem;
            }
.contact-form.card-elevated{
  padding: 0px;
}
        }
textarea#message{
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
textarea#message::placeholder{
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

        .form-grid {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .form-grid.two-col {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        .form-label {
            font-size: 0.875rem;
            font-weight: 500;
        }
	.form-input::placeholder{
	 font-size: 0.875rem;
            font-weight: 500;

	}
        .form-input,
        .form-select,
        .form-textarea {
            height: 2.5rem;
            width: 100%;
            border-radius: 0.375rem;
            border: 1px solid hsl(var(--input));
            background-color: hsl(var(--background));
            padding: 0 0.75rem;
            font-size: 0.875rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: hsl(var(--ring));
            box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
        }

        .form-textarea {
            height: auto;
            min-height: 6rem;
            padding: 0.75rem;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            margin-top: 0.5rem;
    	padding: 12px 14px;
	gap: 1rem;
        line-height: 1.25rem;
        }

        .form-footer {
            text-align: center;
            margin-top: 0;
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }

        .form-footer a {
            color: hsl(var(--primary));
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        .honeypot {
            display: none;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background-color: hsl(var(--background));
            border-top: 1px solid hsl(var(--border));
        }

        .footer-inner {
            padding: 3rem 0 4rem;
        }

        @media (min-width: 1024px) {
            .footer-inner {
                padding: 4rem 0;
            }
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-brand {
            grid-column: span 2;
        }

        @media (min-width: 768px) {
            .footer-brand {
                grid-column: span 1;
            }
        }

        .footer-logo {
            height: 2.5rem;
            margin-bottom: 1rem;
        }

        .footer-tagline {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
   	    line-height: 1.25rem;
        }

        .footer-column h4 {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
	    line-height: 1.25rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
        }

        .footer-links a {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
            transition: color 0.2s ease;
    	    line-height: 1.25rem;
        }

        .footer-links a:hover {
            color: hsl(var(--foreground));
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid hsl(var(--border));
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
line-height: 1.25rem;
        }

        @media (min-width: 640px) {
            .footer-bottom {
                flex-direction: row;
            }
        }

        .footer-bottom p {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }



.blur-xl {
    --tw-blur: blur(24px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.opacity-25 {
    opacity: .25;
}
.rounded-xl {
    border-radius: .75rem;
}
.-z-10 {
    z-index: -10;
}
    .-inset-\[2px\] {
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
}
.overflow-visible{
	overflow: visible;
}


.bg-card {
    background-color: hsl(var(--card));
}

.z-0 {
    z-index: 0;
}
.inset-\[2px\] {
    top: 2px;
    right: 2px;
    bottom: 2px;
    left: 2px;
}
.pricing-card .btn{
    line-height: 1.25rem;
    padding: 9px 16px;
}
.pricing-card .btn-primary{
	 padding: 9px 16px;
}
.product-icon,
.product-name,
.product-tagline,
.product-description,
.product-features,
.product-card .btn,
.pricing-features,
.pricing-card .btn,
.pricing-header{
	    position: relative;
    z-index: 9;
}
    @keyframes borderGlow {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .animated-border {
      background: linear-gradient(
        135deg,
        hsl(var(--primary)),
        hsl(var(--accent)),
        hsl(var(--primary))
      );
      background-size: 300% 300%;
      animation: borderGlow 6s ease infinite;
    }
.product-card .btn{
	   padding: 10px 12px;
        line-height: 1.25rem;
}
.product-card .btn-outline{
padding: 9px 12px;

}
@media (min-width: 768px) {
    .md\:block {
        display: block;
    }
}
.bg-border {
    background-color: hsl(var(--border));
}
.w-\[80\%\] {
    width: 80%;
}
.h-\[2px\] {
    height: 2px;
}
.top-12 {
    top: 3rem;
}
.left-\[60\%\] {
    left: 60%;
}
.dashboard-content .subtitle{

    margin-bottom: 1.5rem;
}

 .product-card .btn{
    font-weight: 500;
}
.testimonials .testimonial-card{
	    background: #fff;
}
.corporate-box .section-header p,
.pricing .section-header p,
.benefits .section-header p,
.products .section-header p,
.contact .section-header p{
	    font-size: 1.125rem;
    line-height: 1.75rem;
}
.space-y-2 {
    --tw-space-y-reverse: 0;
    margin-top: calc(.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.p-3 {
    padding: .75rem;
}
.bg-muted\/30 {
    background-color: hsl(var(--muted) / .3);
}
.rounded-lg {
    border-radius: var(--radius);
}
.justify-between {
    justify-content: space-between;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.gap-3 {
    gap: .75rem;
}
.text-primary {
    color: hsl(var(--primary));
}
.font-medium {
    font-weight: 500;
}
.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}
.bg-primary\/20 {
    background-color: hsl(var(--primary) / .2);
}
.rounded-full {
    border-radius: 9999px;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.w-8 {
    width: 2rem;
}
.h-8 {
    height: 2rem;
}
.text-muted-foreground {
    color: hsl(var(--muted-foreground));
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem;
}
.text-foreground {
    color: hsl(var(--foreground));
}

.font-medium {
    font-weight: 500;
}
.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}
.gap-2 {
    gap: .5rem;
}

.space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse));
}
.header-ctas .btn{
	padding: 7px 0.75rem;
}
a.header-logo{
	    display: flex;

}
.bg-border{
	 opacity: 0;
  transform: translateX(-50px);
width: 0;
  transition: opacity 0.6s ease, transform 0.6s ease, width 0.9s ease;
	}
.step.show .bg-border{
	 opacity: 1;
  transform: translateX(0);
 width: 80%;

}
.feature-card h3{ 
	overflow: hidden;
	line-height: 1.75rem;
}
.step,
.feature-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.show,
.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}
.dashboard-mockup{
transform: translatex(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;

}
.dashboard-mockup.animate-in{
transform: translatex(0px);
}

.fade-item {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-item.show {
  opacity: 1;
  transform: translateX(0);
}
.animate-bg{
 opacity: 0;
	transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease, width 0.6s ease;
width: 0;
}
.feature-card.show .animate-bg{
	 opacity: 1;
  transform: translateX(0);
width: 100%;
}
.step-icon,
.feature-card-icon{
 opacity: 0;
  transform: scale(0.6);
 transition: opacity 0.6s ease, transform 0.6s ease;

}
.step.show .step-icon,
.feature-card.show .feature-card-icon{
 opacity: 1;
  transform: scale(1);

}
.animate-out{
transform: scale(1.5);
 transition: transform 0.6s ease;
}
.fade-item.show .animate-out{
  transform: scale(1);

}
.step-number{
	transform: scale(1.5);
 transition: transform 0.6s ease;	
}
.step.show .step-number{
  transform: scale(1);

}


.blur-3xl {
    --tw-blur: blur(64px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}