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

        :root {
            --primary: #673DE6;
            --primary-dark: #5631b8;
            --background: #ffffff;
            --foreground: #0a0a0a;
            --muted: #f4f4f5;
            --muted-foreground: #71717a;
            --border: #e4e4e7;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            color: var(--foreground);
            background-color: var(--background);
        }

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

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .logo {
            /* background-color: var(--primary); */
            background: linear-gradient(to bottom right, rgba(82, 29, 240, 0.242), var(--background), var(--background));
            color: var(--foreground);
            padding: 0.25rem 0.75rem;
            border-radius: 0.50rem;
            font-weight: 600;
        }
        .logo-first span{
color: var(--primary);

        }
        .logo-last{
            font-size: 12px;
        }

        nav {
            display: none;
            gap: 1.5rem;
        }

        nav a {
            text-decoration: none;
            color: var(--foreground);
            font-size: 0.875rem;
            transition: color 0.2s;
        }

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

        .header-actions {
            display: none;
            gap: 0.75rem;
        }

        .btn {
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

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

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

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

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

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

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

        .btn-lg {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }

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

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

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

        .mobile-menu a {
            text-decoration: none;
            color: var(--foreground);
            font-size: 0.875rem;
        }

        .mobile-menu .btn {
            width: 100%;
        }

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

            .header-actions {
                display: flex;
            }

            .mobile-menu-btn {
                display: none;
            }
        }
/* adv-section */

.adv-container{
    display: grid;
    width: 100%;
    gap: 1.5rem;
    grid-template-columns: repeat(5, 1fr) ;
    margin-bottom: 20px;
}
.adv-box{
    background-color: white;
    border: 2px solid var(--border);
    padding: 30px;
    border-radius: 10px;
}
.adv-box h1{
    font-size: 1.17rem;
    margin-bottom: 4px;
   
}
.adv-box a{
     padding: 0.3rem .6rem;
            border-radius: 0.375rem;
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
 background: transparent;
            border: 1px solid var(--primary);
            
    color: var(--primary-dark);
    
}
.adv-box p{
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.2;

}


        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom right, rgba(103, 61, 230, 0.1), var(--background), var(--background));
            padding: 2rem 0;
        }

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

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

        .badge {
            display: inline-block;
            background: rgba(103, 61, 230, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(103, 61, 230, 0.2);
            font-size: 0.875rem;
            width: fit-content;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            font-weight: 700;
        }

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

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

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

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .stat-card {
            position: absolute;
            background: white;
            border-radius: 0.75rem;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border);
        }

        .stat-card.bottom-left {
            bottom: -1.5rem;
            left: -1.5rem;
        }

        .stat-card.top-right {
            top: -1.5rem;
            right: -1.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* Features Section */
        .features-section {
            padding: 5rem 0;
            background-color: rgba(244, 244, 245, 0.3);
        }

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

        h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .features-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: 1fr;
        }

        .feature-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: rgba(103, 61, 230, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            display: inline-flex;
            padding: 0.75rem;
            border-radius: 0.5rem;
            background-color: var(--muted);
            margin-bottom: 1rem;
        }

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

        /* Pricing Section */
        .pricing-section {
            padding: 5rem 0;
        }

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

        .pricing-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            position: relative;
        }

        .pricing-card.popular {
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            transform: scale(1.05);
        }

        .popular-badge {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            padding: 2rem 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .pricing-header h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .price-original {
            text-decoration: line-through;
            color: var(--muted-foreground);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .price-period {
            color: var(--muted-foreground);
        }

        .pricing-body {
            padding: 1.5rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 5rem 0;
        }

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

        .testimonial-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            border-color: rgba(103, 61, 230, 0.5);
        }

        .stars {
            color: #facc15;
            margin-bottom: 1rem;
        }

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

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

        .author-name {
            font-weight: 600;
        }

        .author-role {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background-color: rgba(244, 244, 245, 0.3);
        }

        .faq-container {
            max-width: 48rem;
            margin: 0 auto;
        }

        .accordion-item {
            background: white;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .accordion-trigger {
            width: 100%;
            padding: 1rem 1.5rem;
            background: none;
            border: none;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-trigger:hover {
            background-color: rgba(244, 244, 245, 0.5);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.active {
            max-height: 500px;
        }

        .accordion-content-inner {
            padding: 0 1.5rem 1rem;
            color: var(--muted-foreground);
        }

        .accordion-icon {
            transition: transform 0.3s;
        }

        .accordion-trigger.active .accordion-icon {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
           
            background: linear-gradient(to right, var(--primary), #8b5cf6);
            padding: 5rem 3rem;
            text-align: center;
            color: white;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-box p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            max-width: 28rem;
            margin: 0 auto 2rem;
        }

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

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .btn-outline-white {
            background: transparent;
            border: 1px solid white;
            color: white;
        }

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

        .cta-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }
       

        .cta-bg-circle {
           position: absolute;
            width: 16rem;
            height: 16rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            filter: blur(60px);
        }

        .cta-bg-circle.top-right {
            top: 0;
            right: 0;
        }

        .cta-bg-circle.bottom-left {
            bottom: 0;
            left: 0;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            background-color: rgba(244, 244, 245, 0.3);
            padding: 3rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

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

        .footer-brand p {
            max-width: 28rem;
            color: var(--muted-foreground);
            margin: 1rem 0;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--foreground);
            transition: all 0.2s;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
        }

        .footer-column h3 {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: var(--muted-foreground);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

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

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            color: var(--muted-foreground);
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (min-width: 640px) {
            .hero-actions, .cta-actions {
                flex-direction: row;
            }
        }

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

            h2 {
                font-size: 2.5rem;
            }

            .hero {
                padding: 4rem 0;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }

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

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

            .hero-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }

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

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

        .why-hostinger-section {
            padding: 5rem 0;
            background-color: rgba(244, 244, 245, 0.3);
        }

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

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

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .stat-icon {
            width: 32px;
            height: 32px;
            color: var(--primary);
        }

        .why-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .why-feature {
            display: flex;
            gap: 0.75rem;
        }

        .why-feature-icon {
            background: var(--primary);
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 0.25rem;
            font-size: 0.75rem;
        }

        .why-feature h4 {
            margin-bottom: 0.25rem;
        }

        .why-feature p {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        @media (min-width: 1024px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 1250px) {
             .adv-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* This will make the last box (5th) start at column 2 (center) */
     .adv-box:nth-child(4){
        grid-column: span 2; /* Make them span all 3 columns */
      
    }
       
        }
       @media (max-width: 770px){
                 .adv-container {
        grid-template-columns: repeat(2, 1fr);
    }
        .adv-box:nth-child(4){
            grid-column: span 1;
        }
        .adv-box:nth-child(1){
            grid-row: span 2;
        }
       } 

         @media (max-width: 550px){
                 .adv-container {
        grid-template-columns: repeat(1, 1fr);
    }
        
        .adv-box:nth-child(1){
            grid-row: span 1;
        }
       } 