/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    padding: 0.6rem 1.5rem;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-15deg);
    animation: shimmerGlass 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerGlass {
    0% { left: -50%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

.header.hidden {
    transform: translateX(-50%) translateY(-120%);
    opacity: 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 
        0 12px 40px rgba(31, 38, 135, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.header-container {
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f3f4f6;
    color: #6366f1;
}

.header-cta {
    display: flex;
    align-items: center;
}

/* Buttons */
.btn-primary-large {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 1.5rem 3rem;
    border: 3px solid #FFFFFF;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.6),
        0 0 0 0 rgba(255, 255, 255, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 350px;
    text-align: center;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.btn-primary-large:hover::before {
    left: 100%;
}

.btn-primary-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 1),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFED4E, #FFB000);
}

.btn-primary-large:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary-small {
    background: rgba(240, 240, 255, 0.9);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.btn-secondary-small:hover {
    background: rgba(99, 102, 241, 0.9);
    color: white;
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 1rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 40px;
}

.hero-cta {
    margin-top: 2rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: slideInRight 0.6s ease-out;
    padding: 2rem 0;
}

.ai-chatbot-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.chatbot-img {
    width: 27rem;
    height: 30rem;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.chatbot-img:hover {
    transform: scale(1.05);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #405de6, #5851db);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.instagram-header {
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #dbdbdb;
}

.ig-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ig-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.ig-profile span {
    font-weight: 600;
    color: #262626;
    font-size: 0.9rem;
}

.chat-conversation {
    padding: 1rem;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    max-width: 80%;
    padding: 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
    animation: fadeInUp 0.3s ease-out;
}

.user-message {
    background: #0084ff;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.bot-message {
    background: #f1f1f1;
    color: #333;
    margin-right: auto;
    border-bottom-left-radius: 5px;
}

.typing {
    position: relative;
}

.typing::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.4s infinite;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes typing {
    0%, 60%, 100% { opacity: 0; }
    30% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

/* What You Get Section */
.what-you-get {
    padding: 2rem 0;
    background: #ffffff;
    position: relative;
}

.what-you-get .container {
    max-width: none;
    padding: 0;
}

.what-you-get .section-title {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2.5rem;
    position: relative;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    max-width: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.benefit-icon {
    margin-bottom: 2rem;
    display: inline-block;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
    opacity: 1;
}

.benefit-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.benefit-card p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    max-width: 350px;
}

/* Video Section */
.video-section {
    padding: 1rem 0;
    background: #ffffff;
    position: relative;
}

.video-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
}

.highlight-text {
    font-size: 1.2rem;
    margin: 0;
}

/* Next Level Section */
.next-level {
    padding: 2.5rem 0;
    background: #ffffff;
    position: relative;
}

.next-level-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 3rem 3.5rem;
    text-align: center;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.next-level-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.03),
        transparent
    );
    transform: skewX(-15deg);
    animation: shimmerNext 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerNext {
    0% { left: -50%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 150%; opacity: 0; }
}

.next-level-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #6366f1;
}

.next-level-content .section-title {
    color: #111827;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
    text-align: center;
}

.next-level-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4b5563;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.next-level-text strong {
    color: #6366f1;
    font-weight: 700;
}

.next-level .btn-secondary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 1.3rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    text-transform: none;
    letter-spacing: 0;
    min-width: auto;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.next-level .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.next-level .btn-secondary:hover::before {
    left: 100%;
}

.next-level .btn-secondary:hover {
    background: linear-gradient(135deg, #5856eb 0%, #7c3aed 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.next-level .btn-secondary::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.next-level .btn-secondary:hover::after {
    transform: translateX(4px);
}

/* Form Section */
.form-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.form-section .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    /* animation: float 8s ease-in-out infinite; */
}

.form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.25), 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.25));
    border-radius: 32px;
    z-index: -1;
}

.lead-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #f8fafc;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    outline: none;
    font-size: 1rem;
    background: white;
    transition: box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.form-submit {
    text-align: center;
    margin: 2rem 0;
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-note a {
    color: #fbbf24;
    text-decoration: underline;
}

.form-benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.form-benefit:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e7e34;
}

.footer-links span {
    color: #6c757d;
}

.footer-copyright {
    color: #6c757d;
    font-weight: 400;
}

.footer-cookies {
    display: flex;
    align-items: center;
}

.cookies-btn {
    background: none;
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cookies-btn:hover {
    background: #6c757d;
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    margin: 10% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    animation: slideInUp 0.3s ease-out;
}

.modal-header {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #374151;
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
}

/* WordPress Form Integration */
.wordpress-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.wordpress-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.wordpress-form-wrapper iframe {
    border-radius: 16px;
    background: transparent;
    height: 800px;
    min-height: 700px;
    border: none;
    display: block;
}

.form-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.form-note {
    background: rgba(99, 102, 241, 0.1);
    color: #4338ca;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin: 0;
}

.form-note strong {
    color: #3730a3;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        padding: 60px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 1.5rem 0;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
        min-height: 240px;
        max-width: 500px;
        width: 100%;
    }
    
    .video-section {
        padding: 4rem 0;
    }
    
    .video-container {
        padding: 0 1.5rem;
    }
    
    .next-level {
        padding: 5rem 0;
    }
    
    .next-level-content {
        margin: 0 1.5rem;
        padding: 2.5rem 2rem 3rem;
    }
    
    .next-level-content .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 0.5rem 1rem;
        backdrop-filter: blur(15px) saturate(160%);
        -webkit-backdrop-filter: blur(15px) saturate(160%);
    }
    
    .header-container {
        flex-direction: row;
        gap: 0;
        padding: 0;
    }
    
    .header-cta {
        display: block;
    }
    
    .hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .chatbot-img {
        margin-top: -3rem;
        margin-bottom: -6rem;
        max-width: 270px;
        max-height: 300px;
    }
    
    .benefits-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        padding: 1rem 0;
    }
    
    .benefit-card {
        text-align: center;
        padding: 2.5rem 1.5rem;
        min-height: auto;
        max-width: 400px;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
        max-width: none;
    }
    
    .what-you-get .section-title {
        padding: 0 1rem;
    }
    
    .video-section {
        padding: 3rem 0;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .video-wrapper iframe {
        border-radius: 15px;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .next-level {
        padding: 4rem 0;
    }
    
    .next-level-content {
        margin: 0 1rem;
        padding: 2.5rem 2rem 3rem;
        border-radius: 16px;
    }
    
    .next-level-content .section-title {
        font-size: 2.2rem;
    }
    
    .next-level-text {
        font-size: 1.1rem;
        text-align: justify;
    }
    
    .next-level .btn-secondary {
        padding: 1.1rem 2.2rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .form-section .section-title {
        font-size: 2.2rem;
    }
    
    .form-benefits-icons {
        gap: 2rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .btn-primary-large {
        width: 100%;
        max-width: 350px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header {
        top: 5px;
        width: calc(100% - 10px);
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        backdrop-filter: blur(12px) saturate(140%);
        -webkit-backdrop-filter: blur(12px) saturate(140%);
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
    
    .hero {
        padding: 4rem 0 2.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    /* .chatbot-img {
        max-width: 250px;
    } */
    
    .lead-form,
    .form-benefits {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .next-level {
        padding: 3rem 0;
    }
    
    .next-level-content {
        margin: 0 0.5rem;
        padding: 2rem 1.5rem 2.5rem;
        border-radius: 15px;
    }
    
    .next-level-content:hover {
        transform: translateY(-4px);
    }
    
    .next-level-content .section-title {
        font-size: 1.8rem;
    }
    
    .next-level-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .next-level .btn-secondary {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        border-radius: 10px;
    }
    
    .form-section .section-title {
        font-size: 1.8rem;
    }
    
    .form-intro-text {
        font-size: 1rem;
    }
    
    .form-benefits-icons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .icon-circle {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .wordpress-form-wrapper iframe {
        height: 650px;
    }
    
    .form-note {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
        margin: 0 10px;
    }
    
    .benefits-grid {
        gap: 1.2rem;
        padding: 0.5rem 0;
    }
    
    .benefit-card {
        padding: 2rem 1.2rem;
        max-width: 350px;
        width: calc(100% - 1rem);
        margin: 0 0.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .what-you-get .section-title {
        padding: 0 0.5rem;
    }
    
    .video-section {
        padding: 2.5rem 0;
    }
    
    .video-container {
        padding: 0 0.5rem;
    }
    
    .video-wrapper {
        border-radius: 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .video-wrapper iframe {
        border-radius: 12px;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Introduction */
.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.form-intro-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-benefits-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.benefit-icon-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.benefit-icon-item:hover .icon-circle {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.benefit-icon-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
} 