:root {
    /* Colors */
    --primary: #0f172a;
    /* Deep Navy */
    --secondary: #1e293b;
    /* Lighter Navy */

    /* New Vibrant Accents */
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;

    --accent: #6366f1;
    /* Primary Accent (Indigo) */
    --accent-glow: rgba(99, 102, 241, 0.5);

    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;

    /* More Colorful Gradients */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    /* Blue -> Purple -> Pink */
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(236, 72, 153, 0.15) 50%, rgba(255, 255, 255, 0) 70%);

    /* Spacing */
    --container-width: 1140px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strike {
    text-decoration: line-through;
    opacity: 0.7;
}

.highlight {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 15px var(--accent-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
}

.btn-sm:hover {
    background: rgba(56, 189, 248, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
}

/* Overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    /* Reduced opacity to show more image */
    z-index: 0;
    backdrop-filter: blur(2px);
    /* Slight blur to help text pop without hiding image */
}

.hero-content {
    position: relative;
    z-index: 1;
    /* Ensure content is above overlay */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.badge-limit {
    display: inline-block;
    background: #ffe4e6;
    color: #e11d48;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.unlimited-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 10px;
}

/* Hero Visual - Glassmorphism */
.hero-visual {
    position: relative;
    height: 400px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.mockup-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 300px;
    padding: 20px;
    z-index: 1;
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.mockup-body .skeleton-line {
    height: 12px;
    background: #e2e8f0;
    margin-bottom: 12px;
    border-radius: 6px;
}

.w-70 {
    width: 70%;
}

.w-50 {
    width: 50%;
}

.skeleton-box {
    margin-top: 20px;
    height: 120px;
    background: #f1f5f9;
    border-radius: 10px;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 0;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features Section */
.value-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    /* Space for CTA */
}

.feature-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: transform 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.3);
    background: white;
    box-shadow: var(--shadow-md);
}

.feature-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card .icon-wrapper i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* Upsell Section */
.upsell-section {
    padding: 80px 0;
    background: #0f172a;
    /* Dark theme for contrast */
    color: white;
}

.upsell-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.upsell-content h2 {
    color: white;
    margin-bottom: 20px;
}

.upsell-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #cbd5e1;
}

.upsell-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.upsell-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upsell-list i {
    color: var(--accent);
}

.highlight-text {
    color: var(--accent);
    font-weight: 600;
}

/* AI Section */
.ai-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-badge {
    background: #e0e7ff;
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.ai-features li {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
}

.ai-features i {
    color: #4f46e5;
    margin-top: 5px;
}

.ai-visual {
    display: flex;
    justify-content: center;
}

.ai-circle {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4);
    position: relative;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4);
    }

    50% {
        box-shadow: 0 20px 70px rgba(236, 72, 153, 0.5);
    }

    100% {
        box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4);
    }
}

.ai-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.5);
    transform: scale(1.2);
    opacity: 0.5;
}

/* Form Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.form-header-inner {
    padding: 25px 30px 0;
    margin-bottom: 0;
}

.formTitle {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.formSub {
    margin: 8px 0 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.offer-form {
    padding: 25px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-form label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.offer-form input,
.offer-form textarea,
.offer-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-light);
    transition: all 0.3s;
    outline: none;
}

.offer-form input:focus,
.offer-form textarea:focus,
.offer-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background: white;
}

.offer-form textarea {
    min-height: 100px;
    resize: vertical;
}

.row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .row2 {
        grid-template-columns: 1fr;
    }
}

.hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0 10px;
}

.form-check input {
    width: auto;
    margin: 0;
}

.form-check label {
    margin: 0;
    font-weight: 400;
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 40px 0;
    font-size: 0.9rem;
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    color: var(--white);
    font-weight: 700;
}

.footer-links a {
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        display: none;
        /* Simplify for mobile, or stack */
    }

    .ai-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ai-features li {
        justify-content: center;
        text-align: left;
    }

    .ai-circle {
        margin: 0 auto;
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .form-wrapper {
        padding: 25px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-item summary {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .icon {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item details[open] summary .icon {
    transform: rotate(45deg);
    color: var(--text-light);
}

.faq-item p {
    margin: 0;
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item details[open] p {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Enhancements */
.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    padding: 12px 30px;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
}

.btn-outline-primary:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.upsell-cta {
    margin-top: 30px;
}

.ai-cta-wrapper {
    margin-top: 25px;
}

/* Countdown Timer Styles */
.countdown-wrapper {
    margin: 25px 0 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.time-box span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 4px;
}

.countdown-end {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
}

/* Top Notification Bar */
.top-bar {
    background: var(--gradient-accent);
    color: white;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.countdown-mini {
    font-family: monospace;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.top-bar .btn-xs {
    background: white;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.top-bar .btn-xs:hover {
    transform: scale(1.05);
}

/* Adjust Hero for Fixed Top Bar */
.hero {
    margin-top: 50px;
    /* Height of top bar approx */
    padding-top: 100px;
    /* Reset padding if needed or adjust */
}

@media (max-width: 600px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 5px;
    }

    .hero {
        margin-top: 90px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none !important;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex !important;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    font-size: 4rem;
    color: #27c93f;
    /* Green */
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}