 :root {
     --primary: #6366f1;
     --primary-dark: #4f46e5;
     --text-dark: #0f172a;
     --text-muted: #64748b;
     --bg-light: #f8fafc;
     --white: #ffffff;
     --border: #e2e8f0;
     --ff-body: 'Manrope', sans-serif;
     --ff-head: 'Manrope', sans-serif;
     --max-width: 1240px;
     --header-height: 80px;
     --radius-sm: 8px;
     --radius-md: 16px;
     --radius-lg: 24px;
     --footer-links: #ffffff;
     --footer-links-hov: #c6c6c69c;
 }

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

 body {
     font-family: var(--ff-body);
     background-color: var(--white);
     color: var(--text-muted);
     line-height: 1.6;
     overflow-x: hidden;
     padding-top: var(--header-height);
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--ff-head);
     color: var(--text-dark);
     font-weight: 800;
     line-height: 1.2;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s;
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }

 .container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px;
 }

 .muted {
     color: var(--text-muted);
 }

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: var(--header-height);
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
     z-index: 1000;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 24px;
 }

 .header-cls {
     display: flex;
     align-items: center;
 }

 .logo {
     height: 32px;
     width: auto;
 }

 .menu-items {
     display: flex;
     align-items: center;
     gap: 32px;
 }

 .menu-items a {
     font-size: 0.95rem;
     font-weight: 600;
     color: var(--text-dark);
 }

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

 .menu-items .active {
     color: var(--primary);
 }


 .home-nav {
     position: relative;
     display: flex;
     align-items: center;
     gap: 4px;
     cursor: pointer;
 }

 .home-btn {
     background: transparent;
     border: none;
     font-size: 16px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .dropdown-icon {
     font-size: 20px;
     cursor: pointer;
     color: var(--gold);
     transition: 0.3s ease;
 }

 .dropdown-icon.rotate {
     transform: rotate(180deg);
 }

 .home-select {
     position: absolute;
     top: 25px;
     left: 0;
     background: black;
     border: 1px solid #ddd;
     border-radius: 10px;
     min-width: 150px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
     display: none;
     z-index: 100;
 }

 .home-select.show {
     display: block;
 }

 .home-select a {
     display: block;
     padding: 10px 14px;
     color: #ffffff !important;
     text-decoration: none;
 }

 .hamburger {
     display: none;
     cursor: pointer;
     color: var(--text-dark);
 }

 .btn-close {
     display: none;
 }

 :root {
     --primary: #6366f1;
     --primary-dark: #4f46e5;
     --text-dark: #0f172a;
     --text-muted: #64748b;
     --white: #ffffff;
     --border: #e2e8f0;
     --radius-pill: 50px;
     --radius-md: 16px;
     --font-saas: 'Manrope', sans-serif;
 }


 .saas-hero {
     padding: 80px 0 60px 0;
     position: relative;
     background: radial-gradient(circle at 50% 0%, #eef2ff 0%, #ffffff 60%);
     overflow: hidden;
 }

 @keyframes fadeUpA {
     0% {
         opacity: 0;
         transform: translateY(30px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fadeDownA {
     0% {
         opacity: 0;
         transform: translateY(-25px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes softPopA {
     0% {
         opacity: 0;
         transform: scale(0.92);
     }

     100% {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes glowPulseA {
     0% {
         opacity: 0.4;
         transform: scale(1);
     }

     100% {
         opacity: 0.8;
         transform: scale(1.15);
     }
 }

 .saas-hero::before {
     animation: glowPulseA 6s ease-in-out infinite alternate;
 }

 .saas-badge {
     opacity: 0;
     animation: fadeDownA 0.8s ease forwards 0.2s;
 }

 .saas-title {
     opacity: 0;
     animation: fadeUpA 1s ease forwards 0.4s;
     animation:
         fadeUpA 1s ease forwards 0.4s,
         floatMicroA 6s ease-in-out infinite 1s;
 }

 @keyframes floatMicroA {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-6px);
     }

     100% {
         transform: translateY(0);
     }
 }

 .saas-subtitle {
     opacity: 0;
     animation: fadeUpA 1s ease forwards 0.7s;
 }

 .hero-btns {
     opacity: 0;
     animation: fadeUpA 1s ease forwards 1s;
 }

 .btn-saas {
     position: relative;
     overflow: hidden;
 }

 .btn-saas.primary::after,
 .btn-saas.secondary::after {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 120%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: 0.7s;
 }

 .btn-saas:hover::after {
     left: 100%;
 }

 .hero-dashboard {
     opacity: 0;
     animation: softPopA 1.3s cubic-bezier(.16, .84, .44, 1) forwards 1.4s;
 }


 .hero-inner {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px;
     display: flex;
     align-items: center;
     gap: 60px;
 }

 .hero-left {
     flex: 1;
     max-width: 600px;
 }

 .saas-badge {
     display: inline-block;
     padding: 6px 12px;
     background: #e0e7ff;
     color: var(--primary);
     border-radius: 50px;
     font-size: 0.8rem;
     font-weight: 700;
     margin-bottom: 24px;
     border: 1px solid #c7d2fe;
 }

 .saas-title {
     font-size: 3.5rem;
     letter-spacing: -1px;
     margin-bottom: 20px;
     color: var(--text-dark);
 }

 .saas-subtitle {
     font-size: 1.125rem;
     color: var(--text-muted);
     margin-bottom: 32px;
     max-width: 480px;
 }

 .hero-btns {
     display: flex;
     gap: 16px;
 }

 .btn-saas {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 14px 28px;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1rem;
     transition: 0.3s;
     cursor: pointer;
     border: none;
 }

 .btn-saas.primary {
     background: var(--primary);
     color: var(--white);
     box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
 }

 .btn-saas.primary:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
 }

 .btn-saas.secondary {
     background: var(--white);
     color: var(--text-dark);
     border: 1px solid var(--border);
 }

 .btn-saas.secondary:hover {
     border-color: var(--primary);
     color: var(--primary);
 }

 .center {
     flex: 1.2;
 }

 .hero-dashboard {
     width: 100%;
     border-radius: var(--radius-md);
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
     border: 1px solid rgba(0, 0, 0, 0.05);
     transform: perspective(1000px) rotateY(-20deg) rotateX(2deg);
     transition: 0.5s;
 }

 .hero-dashboard:hover {
     transform: perspective(1000px) rotateY(0) rotateX(0);
 }

 @keyframes floatUp {
     from {
         opacity: 0;
         transform: perspective(1000px) rotateX(10deg) translateY(60px);
     }

     to {
         opacity: 1;
         transform: perspective(1000px) rotateX(2deg) translateY(0);
     }
 }

 @media (max-width: 900px) {
     .saas-hero {
         padding: 100px 0 60px 0;
     }

     .saas-title {
         font-size: 2.8rem;
     }

     .hero-btns {
         flex-direction: column;
         gap: 15px;
         padding: 0 20px;
     }

     .btn-saas {
         width: 100%;
     }

     .hero-dashboard {
         margin-top: 40px;
         transform: none;
     }
 }

 .saas-logos {
     padding: 40px 0;
     border-bottom: 1px solid var(--border);
     margin-bottom: 80px;
 }

 .logo-strip {
     display: flex;
     justify-content: center;
     gap: 48px;
     flex-wrap: wrap;
     opacity: 0.6;
 }

 .saas-logo-img {
     height: 28px;
     width: auto;
     filter: grayscale(100%);
     transition: 0.3s;
 }

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

 .saas-features {
     padding: 80px 0;
 }

 .bento-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-top: 60px;
 }

 .bento-card {
     background: var(--bg-light);
     border-radius: var(--radius-lg);
     padding: 32px;
     border: 1px solid var(--border);
     transition: 0.3s;
     overflow: hidden;
     display: flex;
     flex-direction: column;
 }

 .bento-card:hover {
     border-color: var(--primary);
     transform: translateY(-4px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

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

 .bento-icon {
     width: 48px;
     height: 48px;
     background: var(--white);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     margin-bottom: 20px;
 }

 .bento-title {
     font-size: 1.25rem;
     margin-bottom: 10px;
 }

 .bento-card p {
     font-size: 0.95rem;
     color: var(--text-muted);
     margin-bottom: 20px;
 }

 .bento-card img {
     border-radius: 8px;
     border: 1px solid rgba(0, 0, 0, 0.05);
     margin-top: auto;
 }

 .avatar-stack {
     display: flex;
     padding-left: 10px;
 }

 .avatar-stack img {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     border: 3px solid var(--white);
     margin-left: -15px;
     object-fit: cover;
 }

 .pricing-section {
     padding: 100px 0;
     background: var(--white);
 }

 .pricing-inner {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 24px;
 }

 .pricing-switch {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 16px;
     margin-bottom: 48px;
 }

 .switch-label {
     font-weight: 600;
     color: var(--text-muted);
     cursor: pointer;
 }

 .switch-label.active {
     color: var(--text-dark);
 }

 .toggle-btn {
     width: 52px;
     height: 28px;
     background: var(--primary);
     border-radius: 50px;
     border: none;
     position: relative;
     cursor: pointer;
 }

 .toggle-ball {
     width: 22px;
     height: 22px;
     background: var(--white);
     border-radius: 50%;
     position: absolute;
     top: 3px;
     left: 3px;
     transition: 0.3s;
 }

 .pricing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 32px;
 }

 .price-card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 40px;
     position: relative;
     transition: 0.3s;
     display: flex;
     flex-direction: column;
 }

 .price-card:hover {
     border-color: var(--primary);
     transform: translateY(-5px);
 }

 .price-card.featured {
     background: #fdfcff;
     border: 2px solid var(--primary);
     box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
     transform: scale(1.05);
     z-index: 2;
 }

 .plan-name {
     font-weight: 700;
     font-size: 1.1rem;
     display: block;
     margin-bottom: 16px;
     color: var(--text-dark);
 }

 .price {
     font-size: 3rem;
     font-weight: 800;
     color: var(--text-dark);
     margin-bottom: 24px;
 }

 .features-list {
     margin-bottom: 32px;
     flex-grow: 1;
 }

 .features-list li {
     margin-bottom: 12px;
     padding-left: 24px;
     position: relative;
     font-size: 0.95rem;
 }

 .features-list li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--primary);
     font-weight: bold;
 }

 .site-footer {
     padding-top: 80px;
     font-size: 0.9rem;
 }

 .footer-top {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1fr;
     gap: 40px;
     padding-bottom: 60px;
 }

 .footer-desc {
     margin-top: 16px;
     max-width: 250px;
     line-height: 1.5;
 }

 .footer-heading {
     display: block;
     font-weight: 700;
     margin-bottom: 20px;
     color: #fec700;
     font-size: 20px;
 }

 .footer-links li {
     margin-bottom: 12px;
     text-indent: 18px;
 }

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

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

 @media (max-width: 968px) {
     .hamburger {
         display: block;
         font-size: 28px;
     }

     .menu-items {
         position: fixed;
         top: 0;
         right: -100%;
         width: 280px;
         height: 100vh;
         background: var(--white);
         flex-direction: column;
         align-items: flex-start;
         padding: 80px 24px;
         box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
         transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         z-index: 999;
     }

     .menu-items.show {
         right: 0;
     }

     .menu-items a {
         font-size: 1.1rem;
         width: 100%;
         border-bottom: 1px solid var(--border);
         padding-bottom: 12px;
     }

     .btn-close {
         display: block;
         position: absolute;
         top: 20px;
         right: 20px;
         font-size: 24px;
         cursor: pointer;
     }

     .hero-inner {
         flex-direction: column;
         text-align: center;
         padding-top: 40px;
     }

     .hero-left {
         max-width: 100%;
     }

     .saas-title {
         font-size: 2.5rem;
     }

     .hero-btns {
         justify-content: center;
     }

     .hero-dashboard {
         transform: none;
         margin-top: 40px;
     }

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

     .span-2 {
         grid-column: span 1 !important;
     }


     .pricing-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .price-card.featured {
         transform: scale(1);
     }

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

 @media (max-width: 600px) {
     .footer-top {
         grid-template-columns: 1fr;
     }

     .saas-title {
         font-size: 2rem;
     }

     .logo-strip {
         gap: 24px;
     }

     .saas-logo-img {
         height: 24px;
     }
 }