/* ============================================
   SAARAS AI — Landing Page Styles
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: hsl(228, 25%, 6%);
    color: hsl(220, 20%, 95%);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Particle Canvas --- */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, hsla(250, 85%, 65%, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: left 0.3s ease-out, top 0.3s ease-out;
}

/* --- Navbar --- */
.hp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: hsla(228, 25%, 6%, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(228, 30%, 30%, 0.2);
    transition: background 0.3s;
}

.hp-nav.scrolled {
    background: hsla(228, 25%, 8%, 0.95);
}

.hp-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.hp-nav-logo .ai {
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(190, 90%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hp-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.hp-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: hsl(220, 15%, 65%);
    transition: color 0.2s;
}

.hp-nav-links a:hover {
    color: hsl(250, 85%, 72%);
}

.hp-nav-cta {
    padding: 8px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(290, 80%, 60%));
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hp-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px hsla(250, 85%, 65%, 0.4);
}

.hp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hp-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: hsl(220, 20%, 95%);
    transition: 0.3s;
}

/* --- Sections Common --- */
.hp-section {
    position: relative;
    z-index: 2;
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hp-section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: hsl(250, 85%, 72%);
    margin-bottom: 12px;
    padding: 4px 14px;
    border-radius: 999px;
    background: hsla(250, 85%, 65%, 0.1);
    border: 1px solid hsla(250, 85%, 65%, 0.2);
}

.hp-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, hsl(220, 20%, 95%), hsl(220, 15%, 70%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hp-section-desc {
    font-size: 1.1rem;
    color: hsl(220, 15%, 60%);
    max-width: 600px;
    line-height: 1.7;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.16, 1, .3, 1), transform 0.8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* --- Hero --- */
.hp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 2;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    background: hsla(250, 85%, 65%, 0.1);
    border: 1px solid hsla(250, 85%, 65%, 0.25);
    color: hsl(250, 85%, 72%);
    margin-bottom: 28px;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes float-logo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hp-hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
}

.hp-hero-title .gradient {
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(190, 90%, 55%), hsl(290, 80%, 60%));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hp-hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(220, 15%, 60%);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* --- CTA Button --- */
.hp-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(250, 85%, 60%), hsl(290, 80%, 55%), hsl(190, 90%, 50%));
    background-size: 300% 300%;
    animation: cta-gradient 3s ease infinite;
    box-shadow: 0 0 40px hsla(250, 85%, 65%, 0.3), 0 0 80px hsla(250, 85%, 65%, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.hp-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 60px hsla(250, 85%, 65%, 0.5), 0 0 120px hsla(250, 85%, 65%, 0.15);
}

.hp-cta-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    z-index: -1;
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(190, 90%, 55%), hsl(290, 80%, 60%));
    background-size: 300% 300%;
    animation: cta-gradient 3s ease infinite;
    filter: blur(15px);
    opacity: 0.5;
}

@keyframes cta-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hp-cta-btn .arrow {
    display: inline-block;
    transition: transform 0.3s;
}

.hp-cta-btn:hover .arrow {
    transform: translateX(5px);
}

.hp-cta-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    animation: cta-pulse 2s ease-in-out infinite;
    border: 2px solid hsla(250, 85%, 65%, 0.4);
}

@keyframes cta-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* --- Hero floating orbs --- */
.hp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
    animation: orb-drift 12s ease-in-out infinite;
}

.hp-orb-1 {
    width: 400px;
    height: 400px;
    background: hsla(250, 85%, 55%, 0.12);
    top: 10%;
    left: -5%;
}

.hp-orb-2 {
    width: 350px;
    height: 350px;
    background: hsla(190, 90%, 50%, 0.08);
    top: 60%;
    right: -5%;
    animation-delay: -4s;
}

.hp-orb-3 {
    width: 300px;
    height: 300px;
    background: hsla(290, 80%, 55%, 0.08);
    bottom: 10%;
    left: 30%;
    animation-delay: -8s;
}

@keyframes orb-drift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -20px);
    }

    50% {
        transform: translate(-20px, 30px);
    }

    75% {
        transform: translate(20px, 10px);
    }
}

/* --- Stats Bar --- */
.hp-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.hp-stat {
    text-align: center;
}

.hp-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(190, 90%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hp-stat-label {
    font-size: 0.85rem;
    color: hsl(220, 15%, 55%);
    margin-top: 4px;
}

/* --- About Section --- */
.hp-about {
    text-align: center;
}

.hp-about .hp-section-desc {
    margin: 0 auto 40px;
}

.hp-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.hp-about-card {
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    background: hsla(228, 22%, 14%, 0.6);
    border: 1px solid hsla(228, 30%, 30%, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.hp-about-card:hover {
    transform: translateY(-6px);
    border-color: hsla(250, 85%, 65%, 0.4);
    box-shadow: 0 20px 60px hsla(250, 85%, 65%, 0.1);
}

.hp-about-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.hp-about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hp-about-card p {
    font-size: 0.9rem;
    color: hsl(220, 15%, 60%);
    line-height: 1.6;
}

/* --- Features Section --- */
.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.hp-feature-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 20px;
    overflow: hidden;
    background: hsla(228, 22%, 12%, 0.5);
    border: 1px solid hsla(228, 30%, 25%, 0.4);
    backdrop-filter: blur(10px);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.hp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, linear-gradient(90deg, hsl(250, 85%, 65%), hsl(190, 90%, 55%)));
    opacity: 0;
    transition: opacity 0.4s;
}

.hp-feature-card:hover {
    transform: translateY(-8px);
    border-color: hsla(250, 85%, 65%, 0.3);
    box-shadow: 0 24px 64px hsla(0, 0%, 0%, 0.3);
}

.hp-feature-card:hover::before {
    opacity: 1;
}

.hp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    background: var(--card-accent-bg, hsla(250, 85%, 65%, 0.1));
    border: 1px solid var(--card-accent-border, hsla(250, 85%, 65%, 0.2));
}

.hp-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hp-feature-card p {
    font-size: 0.9rem;
    color: hsl(220, 15%, 58%);
    line-height: 1.6;
}

/* card accent variants */
.hp-feature-card:nth-child(1) {
    --card-accent: linear-gradient(90deg, hsl(250, 85%, 65%), hsl(270, 80%, 60%));
    --card-accent-bg: hsla(250, 85%, 65%, 0.1);
    --card-accent-border: hsla(250, 85%, 65%, 0.2);
}

.hp-feature-card:nth-child(2) {
    --card-accent: linear-gradient(90deg, hsl(155, 75%, 55%), hsl(170, 80%, 50%));
    --card-accent-bg: hsla(155, 75%, 55%, 0.1);
    --card-accent-border: hsla(155, 75%, 55%, 0.2);
}

.hp-feature-card:nth-child(3) {
    --card-accent: linear-gradient(90deg, hsl(40, 95%, 60%), hsl(25, 90%, 55%));
    --card-accent-bg: hsla(40, 95%, 60%, 0.1);
    --card-accent-border: hsla(40, 95%, 60%, 0.2);
}

.hp-feature-card:nth-child(4) {
    --card-accent: linear-gradient(90deg, hsl(190, 90%, 55%), hsl(210, 90%, 60%));
    --card-accent-bg: hsla(190, 90%, 55%, 0.1);
    --card-accent-border: hsla(190, 90%, 55%, 0.2);
}

.hp-feature-card:nth-child(5) {
    --card-accent: linear-gradient(90deg, hsl(290, 80%, 60%), hsl(310, 75%, 55%));
    --card-accent-bg: hsla(290, 80%, 60%, 0.1);
    --card-accent-border: hsla(290, 80%, 60%, 0.2);
}

.hp-feature-card:nth-child(6) {
    --card-accent: linear-gradient(90deg, hsl(210, 90%, 60%), hsl(230, 85%, 65%));
    --card-accent-bg: hsla(210, 90%, 60%, 0.1);
    --card-accent-border: hsla(210, 90%, 60%, 0.2);
}

/* --- Screenshots Section --- */
.hp-screenshots {
    text-align: center;
    overflow: hidden;
}

.hp-screenshots .hp-section-desc {
    margin: 0 auto 48px;
}

.hp-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hp-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(.16, 1, .3, 1);
}

.hp-carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

.hp-carousel-slide img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid hsla(228, 30%, 25%, 0.4);
    box-shadow: 0 20px 80px hsla(0, 0%, 0%, 0.5);
    transition: transform 0.4s;
}

.hp-carousel-slide img:hover {
    transform: scale(1.02);
}

.hp-carousel-slide .hp-slide-label {
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(220, 15%, 70%);
}

.hp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.hp-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: hsla(220, 15%, 40%, 0.5);
    transition: background 0.3s, transform 0.3s;
}

.hp-carousel-dot.active {
    background: hsl(250, 85%, 65%);
    transform: scale(1.3);
    box-shadow: 0 0 12px hsla(250, 85%, 65%, 0.5);
}

/* --- Benefits Section --- */
.hp-benefits {
    text-align: center;
}

.hp-benefits .hp-section-desc {
    margin: 0 auto 48px;
}

.hp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.hp-benefit-card {
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    background: hsla(228, 22%, 12%, 0.5);
    border: 1px solid hsla(228, 30%, 25%, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hp-benefit-card:hover {
    transform: translateY(-4px);
    border-color: hsla(250, 85%, 65%, 0.3);
}

.hp-benefit-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.hp-benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hp-benefit-card p {
    font-size: 0.88rem;
    color: hsl(220, 15%, 58%);
    line-height: 1.6;
}

/* --- Pricing Section --- */
.hp-pricing {
    text-align: center;
}

.hp-pricing .hp-section-desc {
    margin: 0 auto 48px;
}

.hp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.hp-price-card {
    padding: 36px 28px;
    border-radius: 20px;
    position: relative;
    background: hsla(228, 22%, 12%, 0.6);
    border: 1px solid hsla(228, 30%, 25%, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, border-color 0.4s;
    display: flex;
    flex-direction: column;
}

.hp-price-card:hover {
    transform: translateY(-6px);
}

.hp-price-card.popular {
    border-color: hsla(250, 85%, 65%, 0.5);
    box-shadow: 0 0 40px hsla(250, 85%, 65%, 0.1);
}

.hp-price-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(290, 80%, 60%));
    color: white;
}

.hp-price-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: hsl(220, 15%, 70%);
}

.hp-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hp-price-period {
    font-size: 0.85rem;
    color: hsl(220, 15%, 50%);
    margin-bottom: 24px;
}

.hp-price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    flex: 1;
    text-align: left;
}

.hp-price-features li {
    padding: 8px 0;
    font-size: 0.88rem;
    color: hsl(220, 15%, 65%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-price-features li::before {
    content: '✓';
    color: hsl(155, 75%, 55%);
    font-weight: 700;
}

.hp-price-btn {
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid hsla(250, 85%, 65%, 0.3);
    color: hsl(250, 85%, 72%);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.hp-price-btn:hover {
    background: hsla(250, 85%, 65%, 0.1);
    transform: translateY(-2px);
}

.hp-price-card.popular .hp-price-btn {
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(290, 80%, 60%));
    color: white;
    border: none;
}

.hp-price-card.popular .hp-price-btn:hover {
    box-shadow: 0 8px 30px hsla(250, 85%, 65%, 0.4);
}

/* --- Testimonials --- */
.hp-testimonials {
    text-align: center;
}

.hp-testimonials .hp-section-desc {
    margin: 0 auto 48px;
}

.hp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-testimonial-card {
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    background: hsla(228, 22%, 12%, 0.5);
    border: 1px solid hsla(228, 30%, 25%, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.hp-testimonial-card:hover {
    transform: translateY(-4px);
}

.hp-testimonial-stars {
    color: hsl(40, 95%, 60%);
    font-size: 1rem;
    margin-bottom: 14px;
}

.hp-testimonial-text {
    font-size: 0.92rem;
    color: hsl(220, 15%, 70%);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(190, 90%, 55%));
    font-size: 1rem;
}

.hp-testimonial-name {
    font-size: 0.88rem;
    font-weight: 600;
}

.hp-testimonial-role {
    font-size: 0.78rem;
    color: hsl(220, 15%, 50%);
}

/* --- Final CTA --- */
.hp-final-cta {
    text-align: center;
    padding: 120px 40px;
    position: relative;
    z-index: 2;
}

.hp-final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.hp-final-cta p {
    font-size: 1.1rem;
    color: hsl(220, 15%, 60%);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Footer --- */
.hp-footer {
    position: relative;
    z-index: 2;
    padding: 60px 40px 30px;
    border-top: 1px solid hsla(228, 30%, 25%, 0.3);
}

.hp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hp-footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
}

.hp-footer-brand .ai {
    background: linear-gradient(135deg, hsl(250, 85%, 65%), hsl(190, 90%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hp-footer-links {
    display: flex;
    gap: 24px;
}

.hp-footer-links a {
    font-size: 0.85rem;
    color: hsl(220, 15%, 50%);
    transition: color 0.2s;
}

.hp-footer-links a:hover {
    color: hsl(250, 85%, 72%);
}

.hp-footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: hsl(220, 12%, 40%);
    margin-top: 30px;
}

/* --- Floating Elements (parallax) --- */
.hp-float {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hp-float-shape {
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(1px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {

    .hp-features-grid,
    .hp-pricing-grid,
    .hp-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hp-section {
        padding: 60px 20px;
    }

    .hp-section-title {
        font-size: 2rem;
    }

    .hp-features-grid,
    .hp-benefits-grid,
    .hp-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

    .hp-about-grid {
        grid-template-columns: 1fr;
    }

    .hp-stats {
        gap: 30px;
    }

    .hp-nav-links {
        display: none;
    }

    .hp-mobile-toggle {
        display: flex;
    }

    .hp-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: hsla(228, 25%, 8%, 0.97);
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid hsla(228, 30%, 25%, 0.3);
    }

    .hp-hero {
        padding: 100px 20px 60px;
    }

    .hp-hero-title {
        font-size: 2.4rem;
    }

    .hp-cta-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hp-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .hp-footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hp-hero-title {
        font-size: 1.9rem;
    }

    .hp-section-title {
        font-size: 1.6rem;
    }

    .hp-cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}