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

:root {
    --primary-color: #3E3AF2;
    --secondary-color: #6B5FFF;
    
    /* Dark sections colors with gradients */
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg-dark: #1a1a1a;
    --border-color-dark: #27272a;
    
    /* Gradient backgrounds for dark sections - radial from center */
    --dark-gradient-bg: radial-gradient(ellipse at center, 
        rgba(25, 30, 65, 1) 0%, 
        rgba(18, 22, 45, 1) 40%,
        rgba(12, 14, 28, 1) 100%
    );
    --hero-gradient-bg: radial-gradient(ellipse at center, 
        rgba(35, 40, 85, 0.98) 0%, 
        rgba(25, 30, 65, 1) 35%,
        rgba(18, 22, 45, 1) 70%,
        rgba(12, 14, 28, 1) 100%
    );
    --footer-gradient-bg: radial-gradient(ellipse at center, 
        rgba(25, 30, 65, 0.85) 0%, 
        rgba(18, 22, 45, 1) 50%, 
        rgba(12, 14, 28, 1) 100%
    );
    
    /* Light sections colors */
    --light-bg: #ffffff;
    --lighter-bg: #f9fafb;
    --card-bg-light: #ffffff;
    --border-color-light: #e5e7eb;
    
    /* Text colors */
    --light-text: #ffffff;
    --dark-text: #111827;
    --gray-text-dark: #c4c4cc;
    --gray-text-light: #6b7280;
    
    /* Legacy (for backward compatibility) */
    --gray-text: #c4c4cc;
    --card-bg: #1a1a1a;
    --border-color: #27272a;
    
    --accent-gradient: linear-gradient(135deg, #3E3AF2 0%, #6B5FFF 100%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

/* Navigation with radial gradient */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, 
        rgba(22, 26, 55, 0.95) 0%, 
        rgba(16, 20, 42, 0.92) 100%
    );
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(180deg, 
        rgba(22, 26, 55, 0.98) 0%, 
        rgba(16, 20, 42, 0.96) 100%
    );
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-buttons .btn {
    padding: 8px 20px;
    font-size: 14px;
}

.navbar .nav-content .btn {
    padding: 8px 20px;
    font-size: 14px;
}

.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: 38px;
    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 Only Items */
.mobile-only {
    display: none;
}

/* 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);
}

.nav-menu.active .mobile-only {
    display: block;
}

/* Mobile Divider Line */
.mobile-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
    opacity: 0.5;
}

/* Mobile Login Link with Icon */
.nav-link-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-link-login svg {
    flex-shrink: 0;
}

.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 24px;
    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 8px 16px rgba(0, 0, 0, 0.15);
}

.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: 10px 28px;
    font-size: 15px;
    background: var(--accent-gradient);
    color: var(--light-text);
}

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

/* Hero Section with gradient */
.hero {
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: var(--hero-gradient-bg);
}

.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-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: 1;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    animation: phoneFloat 6s ease-in-out infinite;
    flex-shrink: 1;
}

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

.phone-frame {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 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: 5% !important;
    right: -60px !important;
    bottom: auto !important;
    animation-delay: -2s;
}

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

.element-4 {
    top: 45% !important;
    right: -50px !important;
    bottom: auto !important;
    animation-delay: -6s;
}

.element-5 {
    bottom: 10% !important;
    right: -50px !important;
    top: auto !important;
    animation-delay: -1s;
}

@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: 260px;
        height: 520px;
    }
}

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

@media (max-width: 968px) {
    .hero-main-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .phone-mockup-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .support {
        padding: 80px 20px;
    }
    
    .support-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
    
    .support-title {
        font-size: 22px;
    }
    
    .support-description {
        font-size: 14px;
    }
}

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

@media (max-width: 768px) {
    .context-section {
        padding: 60px 20px;
    }
}

.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-subtitle-small {
    font-size: 16px;
    font-weight: 400;
    margin-top: -10px;
    margin-bottom: 30px;
}

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

.section-description {
    font-size: 18px;
    line-height: 1.8;
}

/* Light sections text colors */
.context-section .section-title,
.features .section-title,
.integrations .section-title,
.pricing .section-title {
    color: var(--dark-text);
}

.context-section .section-description,
.context-section .section-subtitle-small,
.features .section-description,
.integrations .section-description,
.integrations .section-subtitle-small,
.pricing .section-description,
.pricing .section-subtitle-small {
    color: var(--gray-text-light);
}

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

/* Features Section - LIGHT */
.features {
    padding: 80px 20px;
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .features {
        padding: 60px 20px;
    }
}

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

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-card {
    background-color: var(--card-bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 
                0 1px 3px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .feature-card {
        padding: 30px 24px;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12),
                0 4px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-height: 48px;
    margin-bottom: 24px;
    display: block;
    position: relative;
}

.feature-icon svg {
    display: block;
    width: 48px;
    height: 48px;
    position: relative;
}

@media (max-width: 768px) {
    .feature-icon {
        margin-bottom: 20px;
    }
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

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

/* Productivity Section with gradient */
.productivity-section {
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, 
        rgba(25, 30, 65, 0.95) 0%, 
        rgba(18, 22, 45, 1) 50%, 
        rgba(12, 14, 28, 1) 100%
    );
}

.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;
    color: var(--light-text);
}

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

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

.benefit-tag {
    background: linear-gradient(135deg, rgba(62, 58, 242, 0.15) 0%, rgba(107, 95, 255, 0.15) 100%);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--light-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
}

/* Testimonials Section - LIGHT */
.testimonials {
    padding: 80px 20px;
    background-color: var(--lighter-bg);
}

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

.testimonial-card {
    background-color: var(--card-bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 
                0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08),
                0 3px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text-light);
    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;
    color: var(--light-text);
}

.author-name {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-text);
}

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

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

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 900px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

@media (min-width: 1160px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

.integration-card {
    background-color: var(--card-bg-light);
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 
                0 1px 2px rgba(0, 0, 0, 0.06);
}

.integration-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1),
                0 3px 6px rgba(0, 0, 0, 0.08);
}

.integration-card h3,
.integration-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-text);
}

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

/* Pricing Section - LIGHT */
.pricing {
    padding: 80px 20px;
    background-color: var(--lighter-bg);
}

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

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

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

.billing-option {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
}

.billing-option.active {
    color: var(--primary-color);
    font-weight: 700;
}

.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: 52px;
    height: 28px;
    background-color: #e5e7eb;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-label {
    background: linear-gradient(135deg, #3E3AF2 0%, #6B5FFF 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 12px rgba(62, 58, 242, 0.3);
}

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

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

.annual-total {
    font-size: 13px;
    color: var(--gray-text-light);
    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-icon {
        width: 88px;
        height: 88px;
        margin-bottom: 28px;
    }
    
    .support-icon svg {
        width: 44px;
        height: 44px;
    }
    
    .support-title {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .support-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

.pricing-card {
    background-color: var(--card-bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color-light);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 
                0 1px 3px rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12),
                0 4px 8px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
                0 2px 6px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured:hover {
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.15),
                0 6px 12px rgba(0, 0, 0, 0.1);
}

.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: 800;
    margin-bottom: 0px;
    line-height: 1;
    color: var(--dark-text);
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 12px;
    color: var(--dark-text);
}

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

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

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

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3E3AF2 0%, #6B5FFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

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

/* Bloco "Tudo incluído em todos os planos" dentro de cada card —
   visual distinto dos limites específicos (sem checks duplicados). */
.pricing-included {
    margin: 8px 0 24px 0;
    padding: 16px;
    background: rgba(62, 58, 242, 0.06);
    border: 1px solid rgba(62, 58, 242, 0.18);
    border-radius: 10px;
}

.pricing-included-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-included-title::before {
    content: '★';
    font-size: 14px;
}

.pricing-included-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-included-list li {
    font-size: 13px;
    color: var(--dark-text);
    padding: 0;
    line-height: 1.5;
}

/* Bloco "Adicionais" — upsell de extras visível antes do Enterprise.
   5 cards forçados em uma linha em desktop, 2 em tablet, 1 em mobile.
   Tema claro: section .pricing usa --lighter-bg, então o bloco usa cards brancos. */
.pricing-extras-section {
    margin: 64px auto 0;
    max-width: 1200px;
    padding: 32px;
    background: transparent;
    border: none;
    border-radius: 16px;
}

.pricing-extras-title {
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
}

.pricing-extras-subtitle {
    text-align: center;
    margin: 0 0 28px 0;
    font-size: 14px;
    color: var(--gray-text-light);
}

.pricing-extras-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.pricing-extra-item {
    background-color: var(--card-bg-light);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
                0 1px 3px rgba(0, 0, 0, 0.06);
}

.pricing-extra-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12),
                0 4px 8px rgba(0, 0, 0, 0.08);
}

.pricing-extra-label {
    font-size: 13px;
    color: var(--gray-text-light);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-extra-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-extra-price-suffix {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-text-light);
    margin-left: 2px;
}

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

@media (max-width: 640px) {
    .pricing-extras-section {
        padding: 20px;
    }
    .pricing-extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Custom Plan Section */
.custom-plan-section {
    margin-top: 60px;
    padding-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Enterprise Card - Compact & Professional Design */
.custom-plan-card {
    background: radial-gradient(ellipse at top, 
        rgba(28, 32, 65, 1) 0%, 
        rgba(18, 22, 45, 1) 60%,
        rgba(12, 15, 32, 1) 100%
    );
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 24px;
    padding: 40px 50px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 8px 24px rgba(99, 102, 241, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.custom-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.08), 
        transparent
    );
    transition: left 0.6s ease;
}

.custom-plan-card:hover::before {
    left: 100%;
}

.custom-plan-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.7);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5),
                0 10px 28px rgba(99, 102, 241, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Enterprise Header */
.enterprise-header {
    margin-bottom: 32px;
}

/* Enterprise Badge */
.enterprise-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    padding: 8px 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.custom-plan-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--light-text);
    line-height: 1.2;
}

.custom-plan-description {
    font-size: 15px;
    color: var(--gray-text-dark);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enterprise Features Compact */
.enterprise-features-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    padding: 0 20px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.enterprise-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
}

.enterprise-feature:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(3px);
}

.feature-icon {
    flex-shrink: 0;
    stroke: #6366F1;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.enterprise-feature span {
    color: var(--light-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* Enterprise CTA */
.enterprise-cta {
    margin-top: 32px;
}

.enterprise-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray-text-dark);
    font-weight: 500;
}

/* Remove old styles */
.custom-benefit,
.custom-plan-benefits,
.verified-badge,
.enterprise-icon,
.enterprise-highlights,
.enterprise-features-grid,
.highlight-item,
.feature-check {
    display: none;
}

/* Responsive Enterprise Card */
@media (max-width: 1023px) {
    .custom-plan-card {
        padding: 35px 30px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .enterprise-features-compact {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .custom-plan-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .enterprise-badge {
        font-size: 10px;
        padding: 7px 18px;
    }
    
    .custom-plan-title {
        font-size: 22px;
    }
    
    .custom-plan-description {
        font-size: 14px;
    }
    
    .enterprise-feature {
        padding: 10px 14px;
    }
    
    .enterprise-feature span {
        font-size: 13px;
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
    }
}

.btn-large {
    padding: 10px 32px;
    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;
}

/* === NOVA SEÇÃO DE AJUDA - 2 CARDS === */
/* Removida - substituída por Support System Grid */

/* === SUPPORT SECTION - FAQ STYLE === */
.support {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
}

.support .section-badge {
    display: block;
    text-align: center;
    margin: 0 auto 20px;
    width: fit-content;
}

.support .section-description {
    color: var(--gray-text-light);
}

.support-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.faq-item {
    background: var(--card-bg-light);
    border: 1px solid var(--border-color-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    font-size: 10px;
    color: var(--gray-text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    color: var(--gray-text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Support Contact Card - Ultra Compacto */
.support-contact-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 18px;
    padding: 24px 22px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: fit-content;
}

.support-contact-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.support-icon-circle {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.support-card-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.2;
}

.support-card-description {
    color: var(--gray-text-light);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.btn-support {
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 10px 16px;
    font-weight: 600;
}

.btn-docs {
    width: 100%;
    margin-bottom: 18px;
    font-size: 14px;
    padding: 10px 16px;
    font-weight: 600;
}

.support-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.support-info-item {
    background: var(--card-bg-light);
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color-light);
    transition: all 0.3s ease;
}

.support-info-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

/* Link Status dos Serviços */
a.status-link {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    text-decoration: none !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
}

a.status-link:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2) !important;
    border-color: rgba(16, 185, 129, 0.4) !important;
    text-decoration: none !important;
}

a.status-link:visited,
a.status-link:active,
a.status-link:focus {
    text-decoration: none !important;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@keyframes pulse-status {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.status-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-label {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    letter-spacing: -0.01em;
}

.status-action {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-text);
    transition: color 0.3s ease;
}

a.status-link:hover .status-action {
    color: #10b981;
}

a.status-link:hover .status-dot {
    animation: pulse-status-fast 0.8s ease-in-out infinite;
}

@keyframes pulse-status-fast {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

.support-info-label {
    font-size: 11px;
    color: var(--gray-text-light);
    margin-bottom: 3px;
    font-weight: 500;
}

.support-info-value {
    font-size: 18px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid de 4 itens (2x2) para certificações */
.support-info-grid-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

/* Support Responsive */
@media (max-width: 1023px) {
    .support-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-contact-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .support-icon-circle {
        width: 48px;
        height: 48px;
    }

    .support-card-title {
        font-size: 18px;
    }

    .support-info-grid {
        grid-template-columns: 1fr;
    }
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(62, 58, 242, 0.1) 0%, rgba(107, 95, 255, 0.1) 100%);
    border: 1px solid rgba(62, 58, 242, 0.3);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    text-align: center;
}

.section-badge.badge-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.section-badge.badge-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(107, 95, 255, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.support .section-title {
    color: var(--dark-text);
}

.section-subtitle {
    color: var(--gray-text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 16px;
    text-transform: none;
}

/* Support System Grid - 3 Cards - Light with shadows */
.support-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.support-system-card {
    background: var(--card-bg-light);
    border: 1px solid var(--border-color-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 
                0 1px 3px rgba(0, 0, 0, 0.06);
}

.support-system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12),
                0 4px 8px rgba(0, 0, 0, 0.08);
}

.system-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

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

.system-icon.iso {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.system-icon.iso svg {
    color: #ef4444;
}

.system-icon.itil {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.system-icon.itil svg {
    color: #10b981;
}

.system-icon.ticket {
    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);
}

.system-icon.ticket svg {
    color: var(--primary-color);
}

.system-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.system-description {
    color: var(--gray-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.system-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.system-features li {
    color: var(--gray-text-light);
    font-size: 13px;
    margin: 8px 0;
    padding-left: 0;
    position: relative;
}

/* SLA Section - Light with shadows */
.sla-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--card-bg-light);
    border: 1px solid var(--border-color-light);
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 
                0 2px 6px rgba(0, 0, 0, 0.04);
}

.sla-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 32px;
}

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

.sla-card {
    background: var(--lighter-bg);
    border: 2px solid var(--border-color-light);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sla-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1),
                0 3px 6px rgba(0, 0, 0, 0.08);
}

.sla-card.high {
    border-color: rgba(239, 68, 68, 0.3);
}

.sla-card.high:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.sla-card.medium {
    border-color: rgba(245, 158, 11, 0.3);
}

.sla-card.medium:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.sla-card.low {
    border-color: rgba(16, 185, 129, 0.3);
}

.sla-card.low:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.sla-priority {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.sla-time {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.sla-description {
    color: var(--gray-text-light);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Support CTA - Light */
.support-cta {
    text-align: center;
    margin-top: 40px;
}

.support-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.support-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-text-light);
    font-weight: 600;
}

.support-feature-icon {
    font-size: 18px;
}

.support-note {
    margin-top: 16px;
    color: var(--gray-text-light);
    font-size: 14px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .support-system-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .sla-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .support {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .support-system-grid {
        margin-bottom: 50px;
    }
    
    .support-system-card {
        padding: 32px 24px;
    }
    
    .system-icon {
        width: 70px;
        height: 70px;
    }
    
    .system-title {
        font-size: 18px;
    }
    
    .system-description {
        font-size: 13px;
    }
    
    .sla-container {
        padding: 28px 20px;
    }
    
    .sla-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .sla-time {
        font-size: 24px;
    }
    
    .sla-priority {
        font-size: 13px;
    }
    
    .sla-description {
        font-size: 12px;
    }
    
    .support-cta {
        margin-top: 40px;
    }
    
    .support-cta .btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }
    
    .support-note {
        font-size: 13px;
    }
}

/* === OLD SUPPORT STYLES (Keep for other pages) === */
.help-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.help-box {
    flex: 0 0 calc(50% - 20px);
    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;
}

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

/* Mobile: 1 coluna */
@media (max-width: 768px) {
    .help-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .help-box {
        flex: 1 1 100%;
    }
}

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

/* === ANTIGO SUPORT-GRID REMOVIDO === */

.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);
}

/* === LINK DE LOGIN (ESTILO SIMPLES) === */
.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--gray-text);
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-login:hover {
    color: var(--light-text);
    text-decoration: none !important;
}

.nav-login:active {
    color: var(--light-text);
    text-decoration: none !important;
}

.nav-login:visited {
    color: var(--gray-text);
    text-decoration: none !important;
}

.nav-login:focus {
    outline: none;
    color: var(--gray-text);
    text-decoration: none !important;
}

.nav-login svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nav-login:hover svg {
    transform: scale(1.1);
}

.nav-login:active svg {
    transform: scale(0.95);
}

/* Container dos botões no header */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-buttons .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .nav-login {
        font-size: 14px;
    }
}

.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);
    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 with enhanced gradient */
.footer {
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    position: relative;
    background: var(--footer-gradient-bg);
}

.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 {
    /* Removido scale para não interferir no efeito 3D do JavaScript */
}

.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 */
/* Tablets e telas médias */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .nav-buttons .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

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

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

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

    .nav-buttons {
        display: none;
    }
    
    .logo-image {
        height: 34px;
    }
    
    .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;
    }

    .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: 20px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .floating-element svg {
        width: 40px;
        height: 40px;
    }
    
    .element-1 {
        left: -30px;
    }
    
    .element-2 {
        right: -30px;
    }
    
    .element-3 {
        left: -30px;
    }
    
    .element-4 {
        right: -30px;
    }
    
    .element-5 {
        right: -30px;
    }
    
    .support {
        padding: 60px 20px;
    }
    
    .support-header {
        margin-bottom: 40px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
    
    .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-title .gradient-text {
        font-size: 1.15em !important;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .support {
        padding: 50px 15px;
    }
    
    .support-header {
        margin-bottom: 40px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
    
    .support-card {
        padding: 32px 24px;
    }
    
    .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: 180px;
        height: 360px;
    }
    
    .floating-element svg {
        width: 35px;
        height: 35px;
    }
    
    /* Esconder elementos flutuantes em telas muito pequenas para evitar cortes */
    .floating-element {
        display: none;
    }
}

/* 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; }

/* Disable animations on mobile to prevent overlap issues */
@media (max-width: 768px) {
    .feature-card,
    .testimonial-card,
    .integration-card,
    .pricing-card,
    .custom-plan-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
