:root {
    --bg-color: #050510;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary-color: #4361ee;
    --secondary-color: #7b2cbf;
    --accent-color: #4cc9f0;
    --text-color: #ffffff;
    --text-muted: #b8b8d2;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.hidden {
    display: none !important;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

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

.gradient-text {
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 16, 0.95);
    /* Slightly darker for better readability */
    border-bottom: var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1001;
    /* Above mobile menu */
}

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

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: white;
}

.desktop-btn {
    display: inline-block;
}

.mobile-btn {
    display: none;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 5% 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e2e2f0;
    /* Brighter than muted */
    font-weight: 500;
    line-height: 1.4;
    max-width: 80%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: -1;
}

.floating-img {
    width: 400px;
    animation: float 6s ease-in-out infinite;
}

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

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

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

/* Common Section */
section {
    padding: 80px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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



/* Pain Points Section */
.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pain-card {
    background: rgba(255, 59, 48, 0.1);
    /* Subtle red tint */
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateX(10px);
    background: rgba(255, 59, 48, 0.15);
    border-color: rgba(255, 59, 48, 0.5);
}

.pain-icon {
    font-size: 2rem;
    color: #ff3b30;
    /* Red for pain points */
    flex-shrink: 0;
}

.pain-card p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.pain-cta {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--accent-color);
    padding: 20px;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(76, 201, 240, 0.3);
}

/* Solution Reveal Section */
.solution-reveal {
    text-align: center;
    padding: 60px 5%;
}

.solution-intro {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.solution-title {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #fff, #b8b8d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00b894, #00cec9);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 184, 148, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

/* Detailed Features Section */
.features-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.features-intro strong {
    color: white;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.8), rgba(67, 97, 238, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    /* Align icon and text vertically */
    gap: 20px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 30px;
    /* Force width for alignment */
    text-align: center;
}

.feature-text {
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Audio Samples Section */
.audio-samples {
    text-align: center;
}

.sample-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.section-header h2 .highlight {
    color: var(--primary-color);
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.sample-card {
    background: var(--card-bg);
    border: var(--glass-border);
    padding: 20px;
    border-radius: 15px;
    text-align: left;
}

.sample-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sample-name {
    font-weight: 600;
    color: white;
}

.sample-lang {
    font-size: 0.8rem;
    background: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    color: white;
}

audio {
    width: 100%;
    height: 40px;
    border-radius: 20px;
}

/* Use Cases Section */
.use-cases-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .use-cases-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.use-cases-visual {
    flex: 1;
    position: relative;
    text-align: center;
}

.use-cases-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.use-cases-content {
    flex: 1;
}

.use-cases-list {
    list-style: none;
    margin-top: 30px;
}

.use-cases-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.use-cases-list li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    background: rgba(76, 201, 240, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.floating-player-graphic {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: white;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.player-btn {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
}

.player-bar {
    width: 100px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
}

/* Special Offer Section */
.special-offer {
    text-align: center;
    padding: 100px 5%;
    background: radial-gradient(circle at center, rgba(67, 97, 238, 0.1) 0%, rgba(10, 10, 20, 0) 70%);
    position: relative;
    overflow: hidden;
}

.offer-container {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(67, 97, 238, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    color: white;
    position: relative;
}

.offer-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0055, #00ffff, #ff0055);
    z-index: -1;
    border-radius: 42px;
    background-size: 400%;
    animation: glowingBorder 20s linear infinite;
    opacity: 0.5;
}

@keyframes glowingBorder {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.offer-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #a0c4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(67, 97, 238, 0.5);
}

.offer-comparison {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.8;
}

.offer-comparison strong {
    color: white;
    font-weight: 700;
}

.strikethrough {
    text-decoration: line-through;
    color: #ff3b30;
    font-weight: bold;
    opacity: 0.8;
}

.offer-price {
    font-size: 5.5rem;
    font-weight: 900;
    margin: 20px 0 50px;
    color: white;
    text-shadow: 0 0 20px rgba(76, 201, 240, 0.5);
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.offer-arrows {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0.8;
}

.offer-arrows i {
    animation: arrowBounce 1.5s infinite;
    text-shadow: 0 0 10px white;
}

.offer-arrows i:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-arrows i:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowBounce {

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

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

.btn-danger {
    background: linear-gradient(135deg, #ff0055, #ff3366);
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 25px 60px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(255, 0, 85, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-danger:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 85, 0.6);
    filter: brightness(1.2);
}

.pulsate {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(255, 0, 85, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

/* Checkout Page Styles */
.checkout-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-color);
}

.checkout-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 10;
}

.checkout-header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: all 0.3s;
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Common Panel Style */
.order-summary-panel,
.customer-form-panel {
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.summary-header h2,
.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #a0c4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.summary-header p,
.form-header p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Product Card in Summary */
.product-card-checkout {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.product-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.product-details h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.product-tag {
    font-size: 0.8rem;
    color: #4cc9f0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.product-price {
    margin-left: auto;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.features-recap ul {
    list-style: none;
    margin-bottom: 30px;
}

.features-recap li {
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.features-recap li i {
    color: #4cc9f0;
}

.total-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #aaa;
}

.total-row.discount {
    color: #00ff88;
}

.total-row.final {
    margin-top: 20px;
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ddd;
    font-size: 0.95rem;
    font-weight: 500;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.input-icon-wrapper input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px 16px 55px;
    /* space for icon */
    border-radius: 12px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-icon-wrapper input:focus {
    outline: none;
    border-color: #4361ee;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
}

.input-icon-wrapper input:focus+i,
.input-icon-wrapper input:not(:placeholder-shown)+i {
    /* Keeps icon highlighted if content exists, if you used next-sibling selector correctly (CSS can't select previous sibling, so would need JS or reordering HTML) - Actually just keeping focused state logic or similar */
    /* CSS limitation: can't style previous sibling 'i' based on input. Correct approach: put 'i' after input or use :focus-within on parent wrapper */
}

/* Fix for icon color on wrapper focus */
.input-icon-wrapper:focus-within i {
    color: #4361ee;
}

/* Payment Section */
.payment-section {
    margin: 35px 0;
}

.payment-options {
    display: grid;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.payment-option.selected {
    background: rgba(67, 97, 238, 0.1);
    border-color: #4361ee;
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.15);
}

.payment-option input {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #555;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s;
}

.payment-option.selected .radio-custom {
    border-color: #4361ee;
}

.payment-option.selected .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #4361ee;
    border-radius: 50%;
}

.payment-info {
    flex: 1;
}

.payment-name {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.payment-desc {
    font-size: 0.85rem;
    color: #888;
}

.payment-icon {
    font-size: 1.5rem;
    color: #bbb;
}

.btn-checkout {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff0055, #ff3366);
    box-shadow: 0 10px 25px rgba(255, 0, 85, 0.3);
}

.btn-checkout:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 85, 0.5);
}

.secure-notice {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
}

/* Responsive Checkout */
@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary-panel {
        order: 2;
        /* Move summary below form on mobile? Or keep top? Usually summary top or collapsible. Let's keep top for now as it's critical info */
        order: 1;
    }

    .customer-form-panel {
        order: 2;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    /* More movement + subtle scale */
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth easing */
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Delays for Children (Features/Pricing) */
.features-grid .feature-card,
.pricing-cards .price-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active .features-grid .feature-card:nth-child(1),
.reveal.active .pricing-cards .price-card:nth-child(1) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .features-grid .feature-card:nth-child(2),
.reveal.active .pricing-cards .price-card:nth-child(2) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .features-grid .feature-card:nth-child(3),
.reveal.active .pricing-cards .price-card:nth-child(3) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.audio-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--card-bg);
    border: var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.price-card.popular {
    background: linear-gradient(145deg, rgba(67, 97, 238, 0.1), rgba(123, 44, 191, 0.1));
    border: 1px solid rgba(67, 97, 238, 0.3);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.price-card ul li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Footer */
footer {
    padding: 40px 5%;
    border-top: var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Loader */
.loader {
    width: 18px;
    height: 18px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-left: 10px;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(5, 5, 16, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        border-left: var(--glass-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        /* Hidden initially for staggered animation */
    }

    .nav-links a {
        font-size: 1.2rem;
    }


    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: inline-block;
        margin-top: 20px;
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Responsive */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

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

    .hero-content {
        margin-bottom: 50px;
        width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-img {
        width: 80%;
        max-width: 300px;
    }

    /* General Padding */
    section {
        padding: 60px 5%;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .input-area textarea {
        height: 120px;
    }
}