       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0066FF;
            --dark-blue: #003D99;
            --light-blue: #E6F0FF;
            --black: #0A0A0A;
            --gray: #666666;
            --white: #FFFFFF;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        nav.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

          .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            padding: 0.0rem 0.5rem;
        }
        .logo:hover {
            cursor: pointer;
            border-radius: 6px;
            background: var(--light-blue);
            
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        .cta-button {
            background: var(--primary-blue);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--black);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            padding: 150px 2rem 100px;
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            width:600px;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--black);
        }

        .hero-content .highlight {
            display: block;
            color: var(--primary-blue);
            width:650px;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        .hero-buttons a{
            padding: 0.7rem 1rem;
        }   
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .secondary-button {
            background: transparent;
            color: #0066ff !important;
            padding: 0.7rem 1.5rem;
            border: 2px solid #0066ff;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .secondary-button:hover {
            background: var(--primary-blue);
            color: var(--white) !important;
        }

        .hero-visual {
            position: relative;
            height: 400px;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .card-1 {
            top: 20px;
            left: 0;
            width: 200px;
            animation-delay: 0s;
        }

        .card-2 {
            top: 120px;
            right: 0;
            width: 180px;
            animation-delay: 2s;
        }

        .card-3 {
            bottom: 40px;
            left: 50px;
            width: 220px;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(30px); }
        }

        .card-title {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 0.5rem;
        }

        .card-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        /* Features Section */
        .features {
            padding: 100px 2rem;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--black);
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--gray);
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            padding: 2.5rem;
            border-radius: 16px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
            border-color: var(--primary-blue);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--light-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--black);
        }

        .feature-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Stats Section */
        .stats {
            padding: 80px 2rem;
            background: var(--black);
            color: var(--white);
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 2rem;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--white);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-white {
            background: var(--white);
            color: var(--primary-blue);
        }

        .cta-white:hover {
            background: var(--light-blue);
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            background: var(--black);
            color: var(--white);
            text-align: center;
            display: flex;
        }

        footer p {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 2rem;
            background: linear-gradient(180deg, var(--white) 0%, var(--light-blue) 100%);
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            align-items: start;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
        }

        .featured-plan {
            border: 2px solid var(--primary-blue);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
        }

        .featured-plan:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-badge {
            display: inline-block;
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .plan-badge.popular {
            background: var(--primary-blue);
            color: var(--white);
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1rem;
        }

        

        .plan-price .currency {
            font-size: 1.5rem;
            color: var(--gray);
            font-weight: 600;
        }

        .plan-price .amount {
            font-size: 4rem;
            font-weight: 800;
            color: var(--black);
            line-height: 1;
            margin: 0 0.3rem;
        }

        .plan-price .period {
            font-size: 1.1rem;
            color: var(--gray);
            font-weight: 500;
        }

        .plan-description {
            color: var(--gray);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            line-height: 1.5;
            width: 195px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .plan-features li {
            padding: 0.8rem 0;
            color: var(--black);
            display: flex;
            align-items: center;
            font-size: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features .check {
            color: var(--primary-blue);
            font-weight: 800;
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }

        .plan-button {
            width: 100%;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .primary-plan {
            background: var(--primary-blue);
            color: var(--white);
        }

        .primary-plan:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
        }

        .secondary-plan {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .secondary-plan:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
        }

        .pricing-footer {
            text-align: center;
            margin-top: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            background-color: white;
        }

        .pricing-footer p {
            font-size: 1.1rem;
            color: var(--gray);
        }

        .contact-link {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid var(--primary-blue);
            transition: all 0.3s;
        }

        .contact-link:hover {
            color: var(--dark-blue);
            border-bottom-color: var(--dark-blue);
        }

        /* Responsive */
      

        /* Hero Visual Updates */
.hero-visual {
    position: relative;
    height: 450px;
}

/* Integration Cards */
.integration-card {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-20px) scale(1.1) !important;
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.25);
    border-color: var(--primary-blue);
}

.integration-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* Integration Card Positions */
.card-outlook {
    top: 30px;
    left: 20px;
    animation-delay: 0s;
}

.card-project {
    top: 120px;
    left: 100px;
    animation-delay: 1s;
}

.card-wsp {
    top: 40px;
    right: 250px;
    animation-delay: 2s;
}

.card-p6 {
    top: 200px;
    left: 30px;
    animation-delay: 3s;
}

.card-excel {
    top: 150px;
    right: 300px;
    animation-delay: 4s;
}

/* Metric Cards */
.metric-card {
    width: 200px;
    padding: 1.5rem;
}

.card-metric-1 {
    bottom: 80px;
    left: 120px;
    animation-delay: 2.5s;
}

.card-metric-2 {
    bottom: 20px;
    right: 80px;
    animation-delay: 5s;
}

/* Responsive adjustments for hero visual */


.floating-casos{
    text-decoration: none;
}
.card-metric-2:hover{
    background: #e7e7e7bf;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
    
}
.floating-casos {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.floating-casos:hover {
    transform: scale(1.02);
}

.card-hover-text {
    position: absolute;
    bottom: 0.5rem;
    left: 67%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.floating-casos:hover .card-hover-text {
    opacity: 1;
}

.floating-casos:hover .card-value {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    cursor: pointer;
    border-color: var(--primary-blue);
}
  @media (max-width: 768px) {
            
            .hide-mobile{
                display: none;
            }
            .integration-card {
                width: 60px;
                height: 60px;
            }
            
            .integration-logo {
                width: 30px;
                height: 30px;
            }
            
            .card-outlook {
                top: 20px;
                left: 10px;
            }
            
            .card-project {
                top: 100px;
                left: 70px;
            }
            
            .card-wsp {
                top: 60px;
                right: 70px;
            }
            
            .card-p6 {
                top: 180px;
                left: 20px;
            }
        
            .metric-card {
                width: 160px;
                padding: 1rem;
            }
            
            
            
            .card-metric-2 {
                bottom: -40px;
                left: 50px;
            }
            
            .card-value {
                font-size: 1.5rem;
            }
            .card-excel{
                top: 60px;
                left: 120px;
            }
            .hero-content p {
                font-size: 1.15rem;
                max-width: 90vw;
                margin-bottom: 2rem;
            }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                transition: right 0.3s;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .break{
                display: none;
            }

            .hero-content h1 {
                font-size: 1.7rem;
            }

            .hero-visual {
                height: 300px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .pricing-container {
                grid-template-columns: 1fr;
            }

            .featured-plan {
                transform: scale(1);
            }

            .featured-plan:hover {
                transform: translateY(-10px);
            }

            .plan-price .amount {
                font-size: 3rem;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0066FF;
            --dark-blue: #003D99;
            --light-blue: #E6F0FF;
            --black: #0A0A0A;
            --gray: #666666;
            --light-gray: #F5F5F5;
            --white: #FFFFFF;
            --border: #E0E0E0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--black);
            line-height: 1.6;
            background: var(--white);
            padding: 40px 20px;
        }

        .pricing-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .pricing-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--black);
        }

        .pricing-header .underline {
            width: 60px;
            height: 4px;
            background: var(--primary-blue);
            margin: 0 auto 30px;
            border-radius: 2px;
        }

        /* Controls */
        .pricing-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .team-size-control {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .team-size-control label {
            font-weight: 600;
            color: var(--black);
            font-size: 1rem;
        }

        .team-size-input {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .team-size-input input {
            width: 80px;
            padding: 8px 12px;
            border: 2px solid var(--border);
            border-radius: 6px;
            font-size: 1rem;
            text-align: center;
            font-weight: 600;
        }

        .team-size-input span {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .billing-toggle {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .billing-toggle label {
            font-weight: 500;
            color: var(--gray);
            cursor: pointer;
            transition: color 0.3s;
        }

        .billing-toggle label.active {
            color: var(--black);
            font-weight: 600;
        }

        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
            background: var(--border);
            border-radius: 13px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: var(--primary-blue);
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: var(--white);
            border-radius: 50%;
            transition: transform 0.3s;
                white-space: pre !important;
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(24px);
            white-space: pre !important;
        }

        .savings-badge {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Pricing Table */
        .pricing-table {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
        }

        .table-header {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            border-bottom: 2px solid var(--border);
            background: var(--light-gray);
        }

        .header-cell {
            padding: 30px 20px;
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .header-cell:last-child {
            border-right: none;
        }

        .header-cell:first-child {
            text-align: left;
        }

        .plan-badge {
            display: inline-block;
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .plan-badge.recommended {
            background: var(--primary-blue);
            color: var(--white);
        }
        .highlighted-price{
            border: 2px solid #0066FF !important;
            background-color: #e7f0ff !important;
        }
        .plan-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 8px;
            white-space: nowrap;
        }

        .plan-description {
            font-size: 0.9rem;
            color: var(--gray);
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 5px;
            justify-content: center;

        }

        .plan-price .currency {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 600;
        }

        .plan-period {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .plan-cta {
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 0.95rem;
            transition: all 0.3s;
            width: 100%;
            max-width: 200px;
        }

        .btn-primary {
            background: var(--primary-blue);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
        }

        .btn-secondary:hover {
            background: var(--primary-blue);
            color: var(--white);
        }

        /* Table Body */
        .table-body {
            display: flex;
            flex-direction: column;
        }

        .feature-section {
            border-bottom: 1px solid var(--border);
        }

        .feature-section:last-child {
            border-bottom: none;
        }

        .section-title {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            background: var(--light-gray);
            padding: 15px 20px;
            font-weight: 700;
            color: var(--black);
            font-size: 0.95rem;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            border-bottom: 1px solid var(--border);
            transition: background 0.2s;
        }

        .feature-row:hover {
            background: rgba(0, 102, 255, 0.02);
        }

        .feature-row:last-child {
            border-bottom: none;
        }

        .feature-cell {
            padding: 20px;
            display: flex;
            align-items: center;
            border-right: 1px solid var(--border);
        }

        .feature-cell:last-child {
            border-right: none;
        }

        .feature-cell:first-child {
            font-weight: 500;
            color: var(--black);
            font-size: 0.95rem;
        }

        .feature-cell:not(:first-child) {
            justify-content: center;
            text-align: center;
        }

        .check-icon {
            color: var(--primary-blue);
            font-size: 1.3rem;
            font-weight: 800;
        }

        .feature-value {
            font-weight: 600;
            color: var(--black);
        }

        .feature-logo {
            width: 20px;
            height: 20px;
            object-fit: contain;
            margin-left: 5px;
        }

        /* Footer */
        .pricing-footer {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            border-radius: 12px;
        }

        .pricing-footer p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 10px;
        }

        .contact-link {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid var(--primary-blue);
            transition: all 0.3s;
        }

        .contact-link:hover {
            color: var(--dark-blue);
            border-bottom-color: var(--dark-blue);
        }

        /* Responsive */
        @media (max-width: 968px) {
            #annualLabel{
                    width: 110px;
            }
            .pricing-header h1 {
                font-size: 2rem;
            }

            .table-header,
            .section-title,
            .feature-row {
                grid-template-columns: 1fr;
            }

            .header-cell,
            .feature-cell {
                border-right: none;
                border-bottom: 1px solid var(--border);
                text-align: left !important;
                justify-content: flex-start !important;
            }

            .header-cell:first-child {
                display: none;
            }

            .feature-cell:first-child {
                background: var(--light-gray);
                font-weight: 700;
            }

            .plan-name {
                font-size: 1.3rem;
            }

            .plan-cta {
                max-width: 100%;
            }

            .pricing-controls {
                flex-direction: column;
                gap: 20px;
            }
        }