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

:root {
    --primary-color: #3E3AF2;
    --secondary-color: #6B5FFF;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #a1a1aa;
    --card-bg: #1a1a1a;
    --border-color: #27272a;
    --accent-gradient: linear-gradient(135deg, #3E3AF2 0%, #6B5FFF 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-text);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--light-text);
    transition: all 0.3s ease;
}

/* Mobile Menu Active States */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    padding: 20px;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--light-text);
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--gray-text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light-text);
}

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

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

.btn-hero {
    padding: 14px 40px;
    font-size: 16px;
    background: var(--accent-gradient);
    color: var(--light-text);
}

.btn-small {
    padding: 8px 20px;
    font-size: 13px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.05;
}

.floating-text {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    white-space: nowrap;
    color: var(--light-text);
    animation: float 10s linear infinite;
}

.floating-text:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.floating-text:nth-child(2) {
    top: 40%;
    animation-delay: -5s;
}

.floating-text:nth-child(3) {
    top: 70%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        left: -100%;
        transform: translateX(0);
    }
    100% {
        left: 100%;
        transform: translateX(0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

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

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Phone Mockup Animation */
.phone-mockup-container {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
    pointer-events: none;
}

.phone-mockup {
    position: relative;
    width: 350px;
    height: 700px;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        transform: translateY(20px) rotate(5deg);
    }
}

.phone-frame {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 30px 60px rgba(99, 102, 241, 0.3));
    transform-style: preserve-3d;
}

.phone-content {
    animation: contentPulse 3s ease-in-out infinite;
}

@keyframes contentPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

/* Chat Messages Animation */
.chat-message {
    transition: opacity 0.6s ease;
}

.chat-message.fade-in {
    animation: messageFadeIn 0.6s ease forwards;
}

.chat-message.fade-out {
    animation: messageFadeOut 0.5s ease forwards;
}

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

@keyframes messageFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-5px);
    }
}

/* Typing Indicator Animation */
.typing-indicator .dot {
    animation: typingDot 1.4s infinite;
}

.typing-indicator .dot1 {
    animation-delay: 0s;
}

.typing-indicator .dot2 {
    animation-delay: 0.2s;
}

.typing-indicator .dot3 {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

/* Message Appear Animation */
@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-visible {
    animation: messageSlideIn 0.5s ease forwards;
}

/* Floating Elements around Phone */
.floating-element {
    position: absolute;
    animation: floatAround 8s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.floating-element svg {
    width: 60px;
    height: 60px;
}

.element-1 {
    top: 10%;
    left: -80px;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    right: -60px;
    animation-delay: -2s;
}

.element-3 {
    bottom: 20%;
    left: -70px;
    animation-delay: -4s;
}

.element-4 {
    bottom: 10%;
    right: -50px;
    animation-delay: -6s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translate(-10px, -25px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(15px, -10px) scale(1.05);
        opacity: 0.9;
    }
}

/* Phone Mockup Responsive Adjustments */
@media (max-width: 1400px) {
    .phone-mockup {
        width: 300px;
        height: 600px;
    }
}

@media (max-width: 1200px) {
    .hero-main-container {
        gap: 60px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .floating-element svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 968px) {
    .hero-main-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .phone-mockup-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
    
    .support {
        padding: 80px 20px;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .support-card {
        padding: 40px 32px;
    }
    
    .support-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
    
    .support-title {
        font-size: 24px;
    }
    
    .support-description {
        font-size: 14px;
    }
}

/* Context Understanding Section */
.context-section {
    padding: 80px 20px;
    background-color: var(--darker-bg);
}

.context-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.8;
}

.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
}

/* Productivity Section */
.productivity-section {
    padding: 80px 20px;
    background-color: var(--darker-bg);
}

.productivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.productivity-card {
    text-align: center;
}

.productivity-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.productivity-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.productivity-description {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.7;
}

.benefits-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-tag {
    background-color: var(--card-bg);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    color: var(--gray-text);
    font-size: 14px;
}

/* Integrations Section */
.integrations {
    padding: 80px 20px;
    background-color: var(--darker-bg);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.integration-card {
    background-color: var(--card-bg);
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.integration-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* Pricing Section */
.pricing {
    padding: 80px 20px;
}

.pricing .section-title {
    margin-bottom: 16px;
}

.pricing .section-description {
    margin-bottom: 40px;
    max-width: 700px;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.billing-option {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.billing-option.active {
    color: var(--light-text);
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.3;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0);
    transition: all 0.4s ease;
}

.discount-badge.active {
    opacity: 1;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.6);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.6);
    }
    50% {
        box-shadow: 0 4px 24px rgba(16, 185, 129, 0.8);
    }
}

.toggle-switch {
    position: relative;
    display: inline-block;
}

.toggle-input {
    display: none;
}

.toggle-label {
    display: block;
    width: 56px;
    height: 30px;
    background-color: var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-label {
    background-color: var(--primary-color);
}

.toggle-input:checked + .toggle-label .toggle-slider {
    transform: translateX(26px);
}

/* Price Period and Annual Total */
.price-period {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 4px;
    margin-bottom: 8px;
}

.annual-total {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 12px;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support {
        padding: 80px 30px;
    }
    
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .support-card {
        padding: 44px 36px;
    }
    
    .support-icon {
        width: 88px;
        height: 88px;
        margin-bottom: 28px;
    }
    
    .support-icon svg {
        width: 44px;
        height: 44px;
    }
    
    .support-title {
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .support-description {
        font-size: 15px;
        margin-bottom: 28px;
    }
}

.pricing-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-price {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 0px;
    line-height: 1;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 12px;
}

.pricing-description {
    color: var(--gray-text);
    font-size: 14px;
}

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

.pricing-features li {
    padding: 12px 0;
    color: var(--gray-text);
    font-size: 15px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Custom Plan Section */
.custom-plan-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.custom-plan-card {
    background: linear-gradient(135deg, rgba(62, 58, 242, 0.05) 0%, rgba(107, 95, 255, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(62, 58, 242, 0.2);
}

.custom-plan-icon {
    margin: 0 auto 24px;
    display: inline-block;
}

.custom-plan-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--light-text);
}

.custom-plan-description {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.custom-plan-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 1023px) {
    .custom-plan-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

.custom-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.custom-benefit:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.custom-benefit-icon {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.custom-benefit span:last-child {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 500;
}

.btn-large {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background-color: var(--darker-bg);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    color: var(--gray-text);
    font-size: 18px;
    margin-bottom: 40px;
}

.qr-code {
    margin-bottom: 40px;
}

.qr-placeholder {
    display: inline-block;
    padding: 20px;
    background-color: white;
    border-radius: 20px;
}

/* Support Section */
.support {
    padding: 100px 20px;
    background: var(--dark-bg);
    position: relative;
}

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

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.support-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    transition: transform 0.4s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-icon.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.support-icon.whatsapp svg {
    color: #25D366;
}

.support-icon.email {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.support-icon.email svg {
    color: var(--primary-color);
}

.support-icon.partnership {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.support-icon.partnership svg {
    color: #ffc107;
}

.support-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--light-text);
}

.support-description {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.support-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 24px;
}

.support-button-wrapper {
    margin-top: auto;
}

.support-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.support-info:last-of-type {
    margin-bottom: 0;
}

.support-label {
    color: var(--gray-text);
    font-size: 14px;
    font-weight: 500;
}

.support-value {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 600;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    color: #1fc759;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover::before {
    width: 500px;
    height: 500px;
}

.btn-whatsapp svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.btn-email {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.3);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-email::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-email:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    color: #5a5fd6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-email:hover::before {
    width: 500px;
    height: 500px;
}

.btn-email svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-email:hover svg {
    transform: scale(1.1);
}

.btn-partnership {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-partnership::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-partnership:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
    color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.btn-partnership:hover::before {
    width: 500px;
    height: 500px;
}

.btn-partnership svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-partnership:hover svg {
    transform: scale(1.1) rotate(10deg);
}

/* Footer */
.footer {
    padding: 80px 20px 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 1) 0%, 
        rgba(25, 24, 50, 0.4) 50%, 
        rgba(10, 10, 15, 1) 100%
    );
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.05;
}

.footer-floating-text {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    white-space: nowrap;
    color: var(--light-text);
    animation: floatFooter 10s linear infinite;
}

.footer-floating-text:nth-child(1) {
    top: 15%;
    animation-delay: 0s;
}

.footer-floating-text:nth-child(2) {
    top: 15%;
    left: 50%;
    animation-delay: -3s;
}

.footer-floating-text:nth-child(3) {
    top: 50%;
    animation-delay: -6s;
}

.footer-floating-text:nth-child(4) {
    top: 50%;
    left: 50%;
    animation-delay: -9s;
}

.footer-floating-text:nth-child(5) {
    top: 85%;
    animation-delay: -12s;
}

.footer-floating-text:nth-child(6) {
    top: 85%;
    left: 50%;
    animation-delay: -15s;
}

@keyframes floatFooter {
    0% {
        left: -100%;
        transform: translateX(0);
    }
    100% {
        left: 100%;
        transform: translateX(0);
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.footer-logo-image {
    height: 220px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--gray-text);
    font-size: 14px;
}

.footer-bottom-content span {
    color: var(--gray-text);
}

.footer-bottom-content .separator {
    color: var(--border-color);
}

.footer-bottom-content .footer-link {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-content .footer-link:hover {
    color: var(--light-text);
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-content .btn {
        display: none;
    }
    
    .logo-image {
        height: 42px;
    }
    
    .footer-logo-image {
        height: 160px;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-content .separator {
        display: none;
    }


    .floating-text {
        font-size: 60px;
    }
    
    .footer-floating-text {
        font-size: 60px;
    }

    .custom-plan-card {
        padding: 40px 24px;
    }

    .custom-plan-title {
        font-size: 22px;
    }

    .custom-plan-description {
        font-size: 15px;
    }

    .custom-plan-benefits {
        grid-template-columns: 1fr;
    }

    .custom-benefit {
        justify-content: flex-start;
    }

    .btn-large {
        width: 100%;
        padding: 16px 32px;
    }

    .billing-toggle {
        gap: 12px;
    }

    .billing-option {
        font-size: 14px;
    }

    .discount-badge {
        display: block;
        margin-left: 0;
        margin-top: 4px;
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hero-main-container {
        gap: 30px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .floating-element svg {
        width: 40px;
        height: 40px;
    }
    
    .element-1 {
        left: -40px;
    }
    
    .element-2 {
        right: -40px;
    }
    
    .element-3 {
        left: -40px;
    }
    
    .element-4 {
        right: -40px;
    }
    
    .support {
        padding: 60px 20px;
    }
    
    .support-header {
        margin-bottom: 40px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .support-card {
        padding: 32px 24px;
    }
    
    .support-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px;
    }
    
    .support-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .support-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .support-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .support-info {
        padding: 10px 0;
        margin-bottom: 6px;
    }
    
.support-info:last-of-type {
    margin-bottom: 0;
}
    
    .support-label,
    .support-value {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-main-container {
        gap: 20px;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 36px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .support {
        padding: 50px 15px;
    }
    
    .support-header {
        margin-bottom: 30px;
    }
    
    .support-grid {
        gap: 20px;
    }
    
    .support-card {
        padding: 28px 20px;
    }
    
    .support-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .support-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .support-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .support-description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .support-info {
        padding: 8px 0;
        margin-bottom: 4px;
    }
    
    .support-info:last-of-type {
        margin-bottom: 0;
    }
    
    .support-label,
    .support-value {
        font-size: 12px;
    }
    
    .btn-whatsapp,
    .btn-email,
    .btn-partnership {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .btn-whatsapp svg,
    .btn-email svg,
    .btn-partnership svg {
        width: 16px;
        height: 16px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .floating-element svg {
        width: 35px;
        height: 35px;
    }
}

/* Smooth Animations */
.feature-card,
.testimonial-card,
.integration-card,
.pricing-card,
.custom-plan-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
