@import url('https://fonts.cdnfonts.com/css/museo-sans-rounded');

/* ===========================================
   NEXO LANDING PAGE STYLES
   Modern, premium design with gradients & glass
=========================================== */

@font-face {
    font-family: 'PoppinsMedium';
    src: url('../fonts/Poppins-Medium.otf');
}

@font-face {
    font-family: 'PoppinsRegular';
    src: url('../fonts/Poppins-Regular.otf');
}

:root {
    /* Colors - Adapted from main.css */
    --primary: #ffbf00;
    /* main.css --color-primary */
    --primary-dark: #e5ac00;
    /* slightly darker for hover */
    --primary-light: #ffda6f;
    /* main.css --color-primary-out */
    --secondary: #fff2cc;
    /* main.css --color-secondary */
    --secondary-dark: #ffe599;
    --accent: #2ecc71;
    /* main.css --color-green */
    --accent-light: #58d68d;

    /* Neutrals */
    --dark: #212121;
    /* main.css --color-black */
    --dark-800: #1a1a1a;
    --gray-900: #212121;
    --gray-800: #4f4f4f;
    /* main.css --color-text */
    --gray-700: #4f4f4f;
    --gray-600: #757575;
    --gray-500: #90908e;
    /* main.css --color-text-out */
    --gray-400: #cccccc;
    /* main.css --color-separate */
    --gray-300: #ececec;
    /* main.css --color-input-out */
    --gray-200: #f5f5f5;
    --gray-100: #fffdf7;
    /* main.css --color-background */
    --white: #ffffff;

    /* Gradients - Updated to Warm Tones */
    --gradient-primary: linear-gradient(135deg, #ffbf00 0%, #ffda6f 100%);
    --gradient-hero: linear-gradient(135deg, #fffdf7 0%, #fff2cc 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 191, 0, 0.1) 0%, rgba(255, 218, 111, 0.1) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    /* Lighter shadow for light theme */
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(255, 191, 0, 0.2);

    /* Typography */
    --font-family: 'PoppinsRegular', 'Rubik', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 20px;
    /* main.css tends to use 20px */
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===========================================
   BUTTONS
=========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    /* Solid color typically better for yellow buttons or maintain gradient if preferred */
    background: var(--gradient-primary);
    color: var(--dark);
    /* Black text on yellow */
    box-shadow: 0 4px 15px rgba(255, 191, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

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

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

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

/* ===========================================
   NAVBAR
=========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.9);
    /* White navbar */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    /* Dark logo */
}

.logo i {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-menu a {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
}

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

.navbar .btn-outline {
    color: var(--dark);
    border-color: rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

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

/* ===========================================
   HERO SECTION
=========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-10px, 20px) scale(0.95);
    }

    75% {
        transform: translate(30px, 10px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--dark);
    /* Dark text on light hero */
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Museo Sans Rounded', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #e67e22 0%, #f1c40f 100%);
    /* Orange to Yellow for visibility */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text>p {
    font-size: 18px;
    color: var(--gray-600);
    /* Darker gray for readability */
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
}

.form-card {
    background: var(--white);
    /* backdrop-filter: blur(20px); removed as it's solid white now */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    /* Dark text */
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray-600);
    font-size: 15px;
}

.form-header strong {
    color: var(--accent-light);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--gray-500);
    font-size: 16px;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 14px 14px 14px 44px;
    background: var(--gray-100);
    /* Light background for inputs */
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    color: var(--dark);
    font-family: var(--font-family);
    font-size: 15px;
    transition: var(--transition);
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

.input-wrapper select option {
    background: var(--white);
    color: var(--dark);
}

.input-wrapper input::placeholder {
    color: var(--gray-500);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.toggle-password {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: 4px;
}

.toggle-password:hover {
    color: var(--gray-300);
}

#signupForm .btn-primary {
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
}

.form-terms {
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

.form-terms a {
    color: var(--primary-light);
}

.form-terms a:hover {
    text-decoration: underline;
}

/* ===========================================
   SECTION COMMON STYLES
=========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-card);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

/* ===========================================
   PILLARS SECTION
=========================================== */
.pillars {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

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

.pillar-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pillar-card.featured {
    background: var(--gradient-hero);
    border: none;
    transform: scale(1.05);
}

.pillar-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pillar-card.featured h3,
.pillar-card.featured p,
.pillar-card.featured li {
    color: var(--white);
}

.pillar-card.featured .pillar-features i {
    color: var(--accent-light);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.pillar-icon.automation {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    color: var(--primary);
}

.pillar-icon.sales {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    color: var(--secondary);
}

.pillar-icon.management {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: var(--accent);
}

.pillar-card.featured .pillar-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.pillar-card>p {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 15px;
}

.pillar-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
}

.pillar-features i {
    color: var(--accent);
    font-size: 12px;
}

/* ===========================================
   FEATURES SECTION
=========================================== */
.features {
    padding: var(--section-padding) 0;
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: var(--gray-200);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-card);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.feature-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===========================================
   CTA SECTION
=========================================== */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    /* Dark text on light CTA */
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--gray-300);
    font-size: 17px;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
}

/* ===========================================
   PRICING SECTION
=========================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--gradient-hero);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header p,
.pricing-card.featured .pricing-features li {
    color: var(--gray-900);
}

.pricing-card.featured .pricing-features i {
    color: var(--accent);
}

.pricing-card.featured .price-amount .currency,
.pricing-card.featured .price-amount .value,
.pricing-card.featured .price-amount .period {
    color: var(--primary-dark);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 15px;
    color: var(--gray-600);
}

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

.pricing-features ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.pricing-features i {
    color: var(--accent);
    font-size: 14px;
}

.pricing-card .btn-outline {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.pricing-card .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.pricing-card.featured .btn-primary:hover {
    background: var(--gray-100);
}

/* ===========================================
   FAQ SECTION
=========================================== */
.faq {
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    color: var(--gray-500);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===========================================
   FINAL CTA
=========================================== */
.final-cta {
    padding: 80px 0;
    background: var(--gray-100);
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

/* ===========================================
   FOOTER
=========================================== */
.footer {
    background: var(--gray-900);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 15px;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 15px;
}

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

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

/* ===========================================
   TOAST NOTIFICATIONS
=========================================== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

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

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.toast-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ===========================================
   VSL CONTAINER
=========================================== */
.hero-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 30px;
}

.hero-subtitle strong {
    color: var(--accent-light);
}

.vsl-container {
    margin-bottom: 40px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 191, 0, 0.1);
    transition: var(--transition);
}

.vsl-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.vsl-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vsl-placeholder {
    background: rgba(0, 0, 0, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.vsl-placeholder:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary-light);
}

.vsl-placeholder i {
    font-size: 64px;
    color: var(--primary-light);
}

.vsl-placeholder span {
    font-size: 16px;
    color: var(--gray-400);
}

/* ===========================================
   STORY SECTION
=========================================== */
.story-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.story-lead {
    font-size: 24px !important;
    font-weight: 500;
    color: var(--gray-900) !important;
}

.story-lead strong {
    color: var(--primary);
}

.story-content strong {
    color: var(--gray-900);
    font-weight: 600;
}

.story-quote {
    background: var(--gradient-card);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 32px;
    margin: 40px 0;
    position: relative;
}

.story-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: var(--primary-light);
    opacity: 0.5;
}

.story-quote p {
    font-size: 20px !important;
    font-style: italic;
    color: var(--gray-800) !important;
    margin: 0 !important;
    padding-left: 20px;
}

.story-solution {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 50px;
}

.story-solution h3 {
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-solution h3 i {
    color: var(--primary-dark);
}

.story-solution p {
    color: var(--gray-700) !important;
    margin-bottom: 16px !important;
}

.story-solution p:last-child {
    margin-bottom: 0 !important;
}

.story-solution strong {
    color: var(--gray-900) !important;
}

/* ===========================================
   FALSE SOLUTIONS SECTION
=========================================== */
.false-solutions {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.text-danger {
    color: #ef4444;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.solution-card.false {
    border-top: 4px solid #ef4444;
}

.solution-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon>i:first-child {
    font-size: 28px;
    color: var(--gray-500);
}

.solution-icon .overlay-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 24px;
    color: #ef4444;
    background: var(--white);
    border-radius: 50%;
}

.solution-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===========================================
   OBJECTIONS SECTION
=========================================== */
.objections-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.objections-list {
    max-width: 800px;
    margin: 0 auto;
}

.objection-item {
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.objection-item:hover {
    border-color: var(--primary-light);
}

.objection-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.objection-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.objection-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.objection-question span i {
    color: var(--primary);
}

.objection-question:hover {
    background: var(--gray-100);
}

.objection-question .arrow {
    color: var(--gray-500);
    transition: var(--transition);
}

.objection-item.active .objection-question .arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.objection-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.objection-item.active .objection-answer {
    max-height: 300px;
}

.objection-answer p {
    padding: 0 24px 20px 60px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===========================================
   OFFER SECTION
=========================================== */
.offer-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
}

.offer-section .section-header h2 {
    color: var(--dark);
}

.offer-section .section-subtitle {
    color: var(--gray-600);
}

.offer-section .section-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-light);
    border-color: rgba(16, 185, 129, 0.3);
}

.badge-special i {
    margin-right: 6px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-top: 12px;
}

.offer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.module-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.module-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.module-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.module-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.offer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.offer-includes,
.offer-usp {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.offer-includes h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-includes h4 i {
    color: var(--accent-light);
}

.offer-includes ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offer-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-300);
}

.offer-includes li i {
    color: var(--primary-light);
    width: 20px;
}

.usp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.offer-usp p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
}

.price-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.price-content {
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount .currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.price-amount .value {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--gray-500);
}

.price-box .btn {
    font-size: 18px;
    padding: 18px 40px;
}

/* ===========================================
   TESTIMONIALS SECTION
=========================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-video {
    height: 180px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-video:hover {
    background: var(--gray-300);
}

.testimonial-video i {
    font-size: 48px;
    color: var(--primary);
}

.testimonial-quote {
    padding: 20px;
    font-size: 16px;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.6;
}

/* ===========================================
   BENEFITS SECTION
=========================================== */
.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--white);
    /* Card inside white section should be maybe gray or just white with border? Let's use gray for contrast inside white section */
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--gradient-card);
    transform: translateX(4px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: var(--white);
}

.benefit-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===========================================
   BONUS SECTION
=========================================== */
.bonus-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.bonus-section .section-header h2 {
    color: var(--gray-900);
}

.badge-bonus {
    background: rgba(16, 185, 129, 0.2) !important;
    color: var(--accent-light) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.badge-bonus i {
    margin-right: 6px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.bonus-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bonus-card:hover {
    background: var(--gray-50);
    transform: translateY(-4px);
}

.bonus-card.featured {
    background: var(--accent-light-bg);
    border-color: var(--accent-light);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 16px;
}

.bonus-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-value {
    font-size: 12px;
    color: var(--accent);
    text-decoration: none;
}

.bonus-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-icon i {
    font-size: 28px;
    color: var(--primary);
}

.bonus-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.bonus-total {
    text-align: center;
}

.bonus-total p {
    font-size: 16px;
    color: var(--gray-400);
}

.bonus-total .old-value {
    text-decoration: line-through;
    color: var(--gray-500);
}

.bonus-total .free-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-top: 8px;
}

.bonus-total .free-text i {
    margin-right: 8px;
}

/* ===========================================
   GUARANTEE SECTION
=========================================== */
.guarantee-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.guarantee-card {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 50px;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
}

.guarantee-seal {
    flex-shrink: 0;
}

.seal-inner {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
}

.seal-inner i {
    font-size: 40px;
    margin-bottom: 8px;
}

.seal-inner span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.seal-inner strong {
    font-size: 24px;
    font-weight: 800;
}

.guarantee-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.guarantee-intro {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.guarantees-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guarantee-item .guarantee-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-item .guarantee-icon i {
    font-size: 18px;
    color: var(--white);
}

.guarantee-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.guarantee-text p {
    font-size: 14px;
    color: var(--gray-600);
}

.guarantee-footer {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

.guarantee-section .final-cta {
    text-align: center;
    padding: 0;
    background: transparent;
}

.btn-xl {
    padding: 22px 48px;
    font-size: 18px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(124, 58, 237, 0.7);
    }
}

.urgency-text {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-500);
}

.urgency-text i {
    margin-right: 6px;
    color: var(--primary);
}

/* ===========================================
   RESPONSIVE
=========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text>p,
    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .vsl-container {
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 50px;
    }

    .hero-form-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

    .pillars-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pillar-card.featured,
    .pricing-card.featured {
        transform: none;
    }

    .pillar-card.featured:hover,
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .modules-grid,
    .offer-details {
        grid-template-columns: 1fr;
    }

    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .guarantees-list {
        text-align: left;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .vsl-placeholder {
        padding: 60px 20px;
    }

    .vsl-placeholder i {
        font-size: 48px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        text-align: center;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .story-lead {
        font-size: 20px !important;
    }

    .story-content p {
        font-size: 16px;
    }

    .story-quote p {
        font-size: 18px !important;
    }

    .story-solution {
        padding: 30px;
    }

    .story-solution h3 {
        font-size: 20px;
    }

    .features-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .features-grid,
    .solutions-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .price-amount .value {
        font-size: 56px;
    }

    .btn-xl {
        padding: 18px 32px;
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: 28px 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .stat-number {
        font-size: 28px;
    }
}