/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #8b5cf6;
    --accent-light: #a78bfa;
    --gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-text: linear-gradient(135deg, #6366f1, #a855f7);
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px -12px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section {
    padding: 100px 0;
}

/* ===== TYPOGRAPHY ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #c7d2fe, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99,102,241,0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(99,102,241,0.3);
}
.btn-outline:hover {
    background: rgba(99,102,241,0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius);
}
.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(99,102,241,0.35);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}

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

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-icon { font-size: 1.5rem; margin-right: 4px; }
.logo-accent { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 6px 10px;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.btn-nav { color: white; }
.nav-links a.btn-nav:hover { color: white; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f0ff 0%, #f5f3ff 25%, #faf5ff 50%, #f8fafc 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--gradient);
    top: -200px; right: -150px;
    filter: blur(80px);
}
.shape-2 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    bottom: -100px; left: -100px;
    filter: blur(60px);
}
.shape-3 {
    width: 250px; height: 250px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    top: 50%; left: 50%;
    filter: blur(50px);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2.5px solid white;
    margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.hero-trust p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 2;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* Hero Illustration */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.device-laptop {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.laptop-screen {
    padding: 0;
}

.screen-header {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: var(--bg-muted);
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.screen-content {
    padding: 20px;
    min-height: 240px;
}

.mock-nav {
    height: 8px;
    width: 60%;
    background: var(--bg-muted);
    border-radius: 4px;
    margin-bottom: 24px;
}

.mock-hero { margin-bottom: 24px; }

.mock-text-lg {
    height: 14px;
    width: 80%;
    background: linear-gradient(90deg, var(--bg-muted) 0%, #e2e8f0 100%);
    border-radius: 4px;
    margin-bottom: 10px;
}

.mock-text-sm {
    height: 8px;
    width: 60%;
    background: var(--bg-muted);
    border-radius: 4px;
    margin-bottom: 14px;
}

.mock-btn {
    height: 24px;
    width: 100px;
    background: var(--gradient);
    border-radius: 6px;
    opacity: 0.7;
}

.mock-cards {
    display: flex;
    gap: 12px;
}

.mock-card {
    flex: 1;
    height: 60px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.laptop-base {
    height: 10px;
    background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
    border-radius: 0 0 12px 12px;
}

.device-phone {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 120px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    z-index: 2;
}

.phone-screen { padding: 0; }

.phone-content {
    padding: 14px 10px;
    min-height: 180px;
}

.mock-nav-sm {
    height: 6px;
    width: 50%;
    background: var(--bg-muted);
    border-radius: 3px;
    margin-bottom: 16px;
}

.mock-btn-sm {
    height: 16px;
    width: 60px;
    background: var(--gradient);
    border-radius: 4px;
    opacity: 0.7;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-1 {
    top: 30px;
    right: 0;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}

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

/* ===== BENEFITS ===== */
.benefits {
    background: var(--bg);
}

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

.benefit-card {
    padding: 36px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
    color: var(--primary);
    border-radius: 16px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== INCLUDED ===== */
.included {
    background: var(--bg-subtle);
}

.included-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.included-content .section-title,
.included-content .section-subtitle {
    text-align: left;
}

.included-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(5,150,105,0.1));
    color: #10b981;
    border-radius: 10px;
    margin-top: 2px;
}

.included-list li strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.included-list li span {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.included-visual {
    display: flex;
    justify-content: center;
}

.feature-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
}

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

.showcase-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.showcase-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* ===== PRICING ===== */
.pricing {
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 32px;
}
.pricing-single {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 32px;
}
.pricing-label {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gradient);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.pricing-card {
    position: relative;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    clip-path: inset(0 0 0 0 round var(--radius-lg));
}

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

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(99,102,241,0.15);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 25px 70px rgba(99,102,241,0.2);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: -10px;
    width: 130px;
    height: 130px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.pricing-badge::after {
    content: attr(data-label);
    position: absolute;
    top: 28px;
    right: -32px;
    width: 170px;
    padding: 8px 0;
    background: var(--gradient);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pricing-badge.badge-value::after {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

.pricing-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

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

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.pricing-features li.muted {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.55;
}

.pricing-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 0;
}
.pricing-note a {
    color: var(--primary);
    font-weight: 600;
}
.pricing-note a:hover { text-decoration: underline; }

.demo-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}
.demo-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-subtle);
}

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

.step-card {
    position: relative;
    padding: 36px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
    color: var(--primary);
    border-radius: 20px;
    margin: 12px auto 20px;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--bg);
}

.cta-card {
    position: relative;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.cta-shape-1 {
    width: 400px; height: 400px;
    background: white;
    top: -200px; right: -100px;
    filter: blur(40px);
}
.cta-shape-2 {
    width: 300px; height: 300px;
    background: white;
    bottom: -150px; left: -50px;
    filter: blur(40px);
}

.cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-subtle);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-success.show {
    display: block;
}

.form-success .success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
    color: var(--primary);
    border-radius: 14px;
}

.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(32,189,90,0.1));
    color: #25d366;
}

.info-card h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.info-card a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}
.info-card a:hover { color: var(--primary); }

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    color: white;
    margin-bottom: 12px;
    display: inline-flex;
}
.footer-logo .logo-accent { color: var(--primary-light); }

.footer-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
}
.footer-links a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }

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

    .included-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .included-content .section-title,
    .included-content .section-subtitle {
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .pricing-single { grid-template-columns: 1fr; max-width: 480px; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .section-subtitle { margin-bottom: 32px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius);
    }
    .nav-links a:hover { background: var(--bg-subtle); }
    .btn-nav {
        text-align: center;
        margin-top: 8px;
    }

    .nav-toggle { display: flex; }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }

    .hero-visual { max-width: 400px; margin: 0 auto; }

    .device-phone {
        width: 90px;
        right: -15px;
        bottom: -10px;
    }
    .phone-content { min-height: 130px; }

    .float-badge { display: none; }

    .benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .feature-showcase { max-width: 340px; margin: 0 auto; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 32px; }
    .pricing-single { max-width: 440px; }
    .pricing-card { padding: 32px 24px; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-6px); }
    .price { font-size: 2.8rem; }

    .cta-card { padding: 56px 28px; }

    .contact-form { padding: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }

    .cta-buttons { flex-direction: column; align-items: stretch; }
    .cta-buttons .btn { width: 100%; }

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