@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Stalemate&display=swap');

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

        :root {
            --primary: #2f056b;
            --accent: #f5d66a;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --purple-light: rgba(47, 5, 107, 0.05);
            --yellow-light: rgba(245, 214, 106, 0.1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family:  "Urbanist","Afacad",-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #fafafabb;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(47, 5, 107, 0.15);
            z-index: 1000;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .logo  img {
            height: 3.2em;
            vertical-align: middle;
        }

        .logo-dot {
            color: var(--accent);
        }

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

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

        .nav-links a:hover {
            color: #21044a;
            font-weight: bold;
        }

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

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

        .cta-btn {
            padding: 0.5rem 1.5rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-family: "Afacad";
            font-size: medium;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-btn:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 1rem 4rem;
            background: linear-gradient(135deg, white 0%, rgba(245, 214, 106, 0.05) 50%, white 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: float 20s ease-in-out infinite;
        }

        .hero-bg-circle-1 {
            top: 10%;
            right: 10%;
            width: 400px;
            height: 400px;
            background: var(--purple-light);
        }

        .hero-bg-circle-2 {
            bottom: 10%;
            left: 10%;
            width: 350px;
            height: 350px;
            background: var(--yellow-light);
            animation-delay: -5s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .floating-shape {
            position: absolute;
            border: 4px solid rgba(47, 5, 107, 0.2);
            animation: rotate 8s linear infinite;
        }

        .shape-1 {
            top: 20%;
            left: 15%;
            width: 60px;
            height: 60px;
            border-radius: 8px;
        }

        .shape-2 {
            bottom: 20%;
            right: 20%;
            width: 80px;
            height: 80px;
            border: 4px solid rgba(245, 214, 106, 0.4);
        }

        @keyframes rotate {
            0% { transform: rotate(0deg) translateY(0); }
            50% { transform: rotate(180deg) translateY(-20px); }
            100% { transform: rotate(360deg) translateY(0); }
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-tag {
            color: #2f056b;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: inline-block;
            animation: fadeIn 1s ease-out 0.2s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero h1 {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .hero .highlight {
            position: relative;
            display: inline-block;
            width: 4em;
        }

        .hero .highlight::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 0;
            width: 0;
            height: 12px;
            background:rgb(3 169 244 / 41%);
            z-index: -1;
            rotate: 355deg;
            border-radius: 12px;
            animation: underline 1s ease-out 1s forwards;
        }

        
        .hl {
            position: relative;
            display: inline-block;
            width: 3.6em;
            -webkit-text-fill-color: cornflowerblue;
        }

        .hl::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 0;
            width: 0;
            height: 12px;
            background:rgb(3 169 244 / 41%);
            z-index: -1;
            rotate: 355deg;
            border-radius: 12px;
            animation: underline 1s ease-out 1s forwards;
        }

        @keyframes underline {
            to { width: 100%; }
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn-primary {
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-family: "Afacad";
            font-size: larger;
            transition: all 0.5s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:hover {
            background: linear-gradient(rgb(56 13 85 / 33%), rgb(22 14 14 / 22%)), url(img/footerbg.jpeg);
            background-size: cover;
            color: var(--gray-50);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
        }

        .btn-outline {
            padding: 1rem 2rem;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            cursor: pointer;
            font-family: "Afacad";
            font-size: larger;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Section Styles */
        section {
            padding: 6rem 1rem;
            position: relative;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-tag {
            color:#2f056b;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }

        .section-header h2 {
            font-family: "Stalemate";
            font-size: 6rem;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: 1px;
            background: linear-gradient(220deg, #870d84 0%, #061435ed 100%);
            -webkit-background-clip: text;
              background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-header p {
            color: var(--gray-600);
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, white 0%, rgba(245, 214, 106, 0.05) 100%);
            border: 1px solid rgb(47 5 107 / 15%);
            border-radius: 16px;
            padding: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(47, 5, 107, 0.3);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            transition: transform 0.6s;
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg);
        }

        .service-card h3 {
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .service-card p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Products Grid */
        #products {
            background: linear-gradient(135deg, white 0%, rgba(47, 5, 107, 0.02) 50%, white 100%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border: 2px solid rgb(47 5 107 / 15%);
            border-radius: 16px;
            padding: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .product-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color:#9cc2f1cc;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .product-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            transition: transform 0.6s;
        }

        .product-card:hover .product-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .product-badge {
            display: inline-block;
            padding: 0.25rem 1rem;
            background: rgba(245, 214, 106, 0.2);
            color: var(--primary);
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .product-badge-wip {
            display: inline-block;
            padding: 0.25rem 1rem;
            border: 2px solid rgba(245, 214, 106, 0.2);
            color: #a9a9a9;
            background: none;
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .product-card p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
        }

        .product-features li {
            color: var(--gray-600);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }

        .product-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        /* Portfolio Grid */
        #work {
            background: linear-gradient(135deg, rgba(245, 214, 106, 0.05) 0%, white 50%, rgba(47, 5, 107, 0.03) 100%);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .portfolio-card {
            height: 400px;
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s;
            cursor: pointer;
            letter-spacing: 0.2px;
            border: 2px solid transparent;
        }

        .portfolio-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-card:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border: 2px solid #9cc2f1cc;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 5%;
            right: 2rem;
            width: 120px;
            height: 120px;
            border: 2px solid rgb(100 70 227 / 7%);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
        }

        .portfolio-card::after {
            content: '';
            position: absolute;
            bottom: 5%;
            left: 2rem;
            width: 60px;
            height: 60px;
            border: 2px solid rgb(100 70 227 / 7%);
            animation: rotate 8s linear infinite reverse;
        }

        .portfolio-content {
            position: relative;
            z-index: 10;
            color:#3b0f0fe8;
        }

        .portfolio-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .portfolio-card h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-card p {
            opacity: 0.9;
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, var(--primary) 0%, #4a0a9e 100%);
            color: white;
        }

        #contact .section-tag {
            color: var(--accent);
        }

        #contact h2,
        #contact .section-header p {
            color: white;
        }

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

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: #551717;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group select option {
            background: var(--primary);
        }

        .btn-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

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

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: transform 0.3s;
        }

        .info-card:hover {
            transform: translateX(10px);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: rgba(245, 214, 106, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
            color: white;
            font-size: 1.25rem;
        }

        .social-link:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 3rem 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 3fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 2.5rem;
            margin-bottom: 0.1rem;
            letter-spacing: 1px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .footer-brand p small {
            font-family: "Afacad";
            font-size: medium;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color:#9cc2f1;
            text-decoration: none;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

         /* Responsive */
        @media (min-width: 1290px) {
            .nav-container{
                padding: 0 2px;
            }
        }
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                border-top: 1px solid rgba(47, 5, 107, 0.1);
                padding: 1rem;
                gap: 0;
            }

            .nav-links.active a {
                padding: 1rem;
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-brand h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                letter-spacing: 1px;
            }
        }

        .page-hero{
            padding:6rem 1rem;
        }

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

        .hero-visual{
            border-radius:24px;
            padding:2rem;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .hero-visual.visible{
            transform:  translateY(0);
        }


        .journey-box{
            border-radius:16px;
            overflow:hidden;
            border:1px solid rgba(47,5,107,.1);
        }

        .journey-row{
            display: flex;
            justify-content: center;
          
        }

        .journey-row-img{
            border-radius:24px;
            box-shadow:0 20px 60px rgba(0,0,0,.08);
        }

        .journey-row:last-child{
            border-bottom:none;
        }

        .audit-flow{
            text-align:center;
            margin-top:2rem;
            display:grid;
            gap:1rem;
            font-weight:600;
        }

        .problem-section{
            background:#fafafa;
        }

        .process-timeline{
            display:grid;
            grid-template-columns:repeat(5,1fr);
            gap:1rem;
        }

        .process-step{
            background:white;
            border-radius:16px;
            padding:1.5rem;
            border:1px solid rgba(47,5,107,.1);
            transition:.3s;
        }

        .process-step:hover{
            transform:translateY(-4px);
        }

        .faq-list{
            max-width:900px;
            margin:auto;
        }

        .faq-item{
            border-bottom:1px solid rgba(47,5,107,.1);
        }

        .faq-question{
            width:100%;
            text-align:left;
            padding:1.5rem 0;
            background:none;
            border:none;
            cursor:pointer;
            font-size:1rem;
            font-weight:600;
            font-family: 'Urbanist';
        }

        .faq-answer{
            display:none;
            padding-bottom:1.5rem;
            color:#666;
            font-family: 'Urbanist';
        }

        .faq-item.active .faq-answer{
            display:block;
        }

        .cta-banner{
            background:#fafafa;
            border-radius:32px;
            text-align:center;
            padding:5rem 2rem;
        }

        .cta-banner p{
            margin-bottom: 2em;
        }

        .audit-framework{
            display:grid;
            grid-template-columns:1fr 1fr;
            gap:4rem;
            align-items:center;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .audit-framework.visible{
            transform:  translateY(0);
        }

        .framework-content{
            display:flex;
            flex-direction:column;
            gap:1rem;
        }

        .framework-visual{

            background:
                linear-gradient(
                    135deg,
                    white 0%,
                    rgba(245,214,106,.05) 100%
                );

            border:
                1px solid rgb(47 5 107 / 15%);

            border-radius:16px;

            padding:1.5rem;

            overflow:hidden;

            transition:
                transform .3s ease,
                box-shadow .3s ease;
        }

        .framework-visual:hover{

            transform:translateY(-4px);

            box-shadow:
                0 20px 50px rgb(47 5 107 / 10%);
        }

        .framework-visual img{
            width:100%;
            height:auto;
            display:block;
            transition: transform .4s ease;
        }

        .framework-content ul{
            display:flex;
            flex-wrap:wrap;
            gap:0.75rem;
            list-style:none;
            padding:0;
        }

        .framework-content li{
            padding:.75rem 1rem;

            border:1px solid var(--border);

            border-radius:999px;

            background:var(--yellow-light);
        }

        .framework-visual img{
            border-radius:24px;
            box-shadow:0 20px 60px rgba(0,0,0,.08);
        }

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

        .framework-card{
            background:linear-gradient(
                135deg,
                white 0%,
                rgba(245,214,106,.05) 100%
            );

            border:1px solid rgb(47 5 107 / 15%);
            border-radius:16px;

            padding:2rem;

            transition:all .3s;
        }

        .framework-card:hover{
            transform:translateY(-4px);
        }

        .content-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;

            margin: 1rem 0 0;
            padding: 0;
            list-style: none;
        }

        .content-list li {
            position: relative;
            padding-left: 1.5rem;
            line-height: 1.6;
        }

        .content-list li::before {
            content: "🏆";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: 700;
        }

        @media(max-width:768px){

            .audit-framework{
                grid-template-columns:1fr;
                gap:2rem;
            }
            .framework-grid{
                gap:4px;
              
                display: grid;
                grid-template-columns: repeat(2,1fr);
               
                justify-items: stretch;
                justify-content: center;
                align-content: space-around;
 
            }

        }

        @media(max-width:900px){

            .hero-split{
                grid-template-columns:1fr;
            }

            .process-timeline{
                grid-template-columns:1fr;
            }
        }

        .reports-page {
            padding-bottom: 4rem;
        }

        .report-panel {
            margin-top: 3rem;
        }

        .report-type{
            cursor:pointer;
        }

        .report-type.active{
            border:2px solid #9cc2f1cc;
            background:#f8fbff;
            transform:translateY(-6px);
        }

        .form-card,
        .tracker-card,
        .success-card {
            max-width: 900px;
            margin: 0 auto;
        }

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

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

        .form-group label {
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ddd;
            border-radius: 12px;
            font: inherit;
        }

        .report-type-card {
            cursor: pointer;
            transition: all .2s ease;
        }

        .report-type-card.selected {
            border: 2px solid var(--primary-color);
        }

        .hidden {
            display: none !important;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .timeline-item {
            padding: 1rem;
            border-radius: 12px;
            background: #f6f6f6;
        }

        .timeline-item.complete {
            border-left: 4px solid #1f8f3a;
        }

        .timeline-item.active {
            border-left: 4px solid #4f46e5;
        }

        .what-next-grid {
            display: grid;
            gap: 1rem;
            grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
        }

        .how-it-works{
            margin:40px 0;
            padding:30px;
            background:#fff;
            border:1px solid #e5e7eb;
            border-radius:20px;
        }

        .how-it-works h3{
            margin-bottom:20px;
        }

        .steps{
            display:flex;
            flex-direction:column;
            gap:20px;
        }

        .step{
            display:flex;
            gap:16px;
            align-items:flex-start;
        }

        .step span{
            width:36px;
            height:36px;
            border-radius:50%;
            background:#f0f7ff;
            color:#2563eb;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:700;
            flex-shrink:0;
        }

        .step p{
            margin-top:4px;
            color:#666;
        }
        /* Pricing Comparison Table */

        .pricing-comparison {
            padding: 80px 0;
        }

        .table-wrapper {
            overflow-x: auto;
            margin-top: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 900px;
        }

        .pricing-table th,
        .pricing-table td {
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-table th:first-child,
        .pricing-table td:first-child {
            text-align: left;
            font-weight: 600;
            width: 280px;
        }

        .pricing-table thead{
            background-color: #2f056b;
            color: aliceblue;
        }
        .pricing-table thead th {
            background: var(--secondary-bg);
            font-weight: 700;
            font-size: x-large;
            position: sticky;
            top: 0;
        }

        .pricing-table tbody tr:hover {
            background: rgba(128, 181, 229, 0.06);
        }

        .pricing-table td {
            color: var(--text-secondary);
        }

        .pricing-table td:first-child {
            color: var(--text-primary);
        }

        .pricing-table .highlight {
            color: var(--primary-color);
            font-weight: 700;
        }

        .pricing-table th:nth-child(3),
        .pricing-table td:nth-child(3) {
            background: rgba(128, 181, 229, 0.08);
        }

        .coming-soon-cell {
            color: #d97706;
            font-weight: 600;
        }

        .pricing-table thead th {
            white-space: nowrap;
        }

        