* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3a5a7a;
    --primary-dark: #1a2633;
    --secondary-color: #fbb040;
    --accent-color: #ff7c2d;
    --text-primary: #eaf0fa;
    --text-secondary: #bfc6d1;
    --text-light: #9ca3af;
    --bg-primary: #181c2a;
    --bg-secondary: #232946;
    --bg-dark: #10131a;
    --border-color: #2a2e3a;
    --shadow-sm: 0 1px 2px 0 rgb(58 90 122 / 0.10);
    --shadow-md: 0 4px 12px -1px rgb(58 90 122 / 0.18), 0 2px 8px -2px rgb(0 0 0 / 0.12);
    --shadow-lg: 0 10px 24px -3px rgb(58 90 122 / 0.18), 0 4px 12px -4px rgb(0 0 0 / 0.12);
    --shadow-xl: 0 20px 40px -5px rgb(58 90 122 / 0.18), 0 8px 20px -6px rgb(0 0 0 / 0.12);
    --gradient-primary: linear-gradient(135deg, #3a5a7a 0%, #1a2633 60%, #fbb040 100%);
    --gradient-secondary: linear-gradient(135deg, #ff7c2d 0%, #fbb040 100%);
    --gradient-accent: linear-gradient(135deg, #fbb040 0%, #ff7c2d 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: linear-gradient(135deg, #181c2a 0%, #232946 100%) fixed;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(35, 41, 70, 0.92) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
    margin-right: 0.5rem;
    filter: drop-shadow(0 2px 8px #1a2633cc);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 12px #1a2633cc;
    letter-spacing: 0.01em;
    animation: heroTitleIn 0.7s cubic-bezier(.7,-0.2,.7,1.2) 0.1s both;
    position: relative;
}

@keyframes heroTitleIn {
    0% { opacity: 0; transform: translateY(-40px) scale(0.96) skewX(-8deg); filter: blur(8px); }
    70% { opacity: 1; transform: translateY(8px) scale(1.04) skewX(2deg); filter: blur(1px); }
    100% { opacity: 1; transform: translateY(0) scale(1) skewX(0); filter: blur(0); }
}

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

.hero-subtitle {
    font-size: 1.45rem;
    color: #eaf0fa;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn, .btn-primary, .btn-secondary, .btn-outline {
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 24px 0 rgba(58,90,122,0.18);
    transition: all 0.22s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    padding: 1.1rem 2.6rem;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #3a5a7a;
    color: #f3f4f6;
    border: none;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 16px 0 #1a263355;
}

.btn-primary:hover {
    background: #1a2633;
    color: #fff;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 24px 0 #1a263388, 0 2px 8px 0 #0002;
}

.btn-secondary {
    background: #232946;
    color: #f3f4f6;
    border: 2px solid #3a5a7a;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #3a5a7a;
    color: #fff;
    border-color: #1a2633;
    transform: translateY(-2px) scale(1.06);
}

.btn-outline {
    background: transparent;
    color: #3a5a7a;
    border: 2px solid #3a5a7a;
}

.btn-outline:hover {
    background: #232946;
    color: #fff;
    border-color: #1a2633;
    transform: translateY(-2px) scale(1.06);
}

.btn-large {
    font-size: 1.22rem;
    padding: 1.3rem 3.2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f3f4f6;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
    font-weight: 900;
    letter-spacing: 0.02em;
    filter: none;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .hero-stats {
        justify-content: center;
        gap: 1.2rem;
        flex-wrap: wrap;
    }
    .stat {
        min-width: 120px;
        flex: 1 1 40%;
        margin-bottom: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    .stat {
        min-width: 0;
        width: 100%;
        margin-bottom: 0.7rem;
        text-align: center;
    }
}

.dashboard-preview {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.dashboard-header {
    background: var(--bg-secondary);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
}

.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #f59e0b; }
.dashboard-dots span:nth-child(3) { background: #10b981; }

.dashboard-content {
    padding: 2rem;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 1rem;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 0.25rem 0.25rem 0 0;
    animation: chartAnimation 2s ease-out;
}

@keyframes chartAnimation {
    from { height: 0; }
    to { height: var(--target-height); }
}

.metrics {
    display: flex;
    justify-content: space-between;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    background: var(--gradient-secondary);
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    background: var(--gradient-accent);
    animation-delay: 4s;
}

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

.features {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 12px #1a2633cc;
    letter-spacing: 0.01em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: #232946;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.pricing {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #232946;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

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

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f3f4f6;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
    font-weight: 900;
    letter-spacing: 0.02em;
    filter: none;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.testimonials {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    justify-items: center;
}

.testimonial-card {
    background: linear-gradient(135deg, #232946 60%, #3a5a7a 100%);
    border-radius: 1.3rem;
    box-shadow: 0 6px 32px #10131a33, 0 2px 8px #0002;
    padding: 2.5rem 2rem 2rem 2rem;
    color: #f3f4f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    max-width: 420px;
    width: 100%;
    position: relative;
    border: 1.5px solid #3a5a7a;
    transition: transform 0.22s, box-shadow 0.22s;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px #3a5a7a99, 0 2px 8px #0002;
    border-color: #fbb040;
}

.testimonial-content {
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    text-align: center;
    color: #e6eaf3;
    letter-spacing: 0.01em;
}

.testimonial-author.no-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

.testimonial-author.no-photo .author-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #b6e0fe;
    margin: 0 0 0.2rem 0;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px #10131a44;
}

.testimonial-author.no-photo .author-info span {
    font-size: 1.01rem;
    color: #bfc6d1;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    opacity: 0.92;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        min-width: 0;
        width: 100%;
        max-width: 400px;
    }
}

.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #232946 0%, #3a5a7a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 8px #1a2633cc;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer {
    background: var(--bg-dark);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bfc6d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #232946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #232946;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bfc6d1;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bfc6d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.tooltip {
    position: absolute;
    background: var(--text-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    z-index: 1000;
    pointer-events: none;
    white-space: nowrap;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
}

.char-counter {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: right;
    margin-top: 0.5rem;
}

.section-visible {
    animation: fadeInUp 0.8s ease-out;
}

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #232946;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        padding: 2rem 0 1.5rem 0;
        z-index: 999;
        box-shadow: 0 8px 32px #10131a55;
        border-bottom-left-radius: 1.2rem;
        border-bottom-right-radius: 1.2rem;
        gap: 1.5rem;
        text-align: center;
        transition: all 0.3s;
    }
    .nav-menu.active {
        display: block;
    }
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 600px) {
    .licenca-cta .btn-primary,
    .licenca-cta .btn-large {
        width: 100%;
        max-width: 340px;
        min-width: 0;
        font-size: 1rem;
        padding: 0.95rem 1rem;
        box-sizing: border-box;
        border-radius: 0.9rem;
        text-align: center;
        white-space: normal;
        display: block;
        margin: 0 auto;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

.browser-mockup {
    width: 700px;
    max-width: 98vw;
    background: #f3f4f6 !important;
    border-radius: 1.2rem;
    box-shadow: 0 12px 40px rgba(99,102,241,0.14), 0 2px 12px rgba(0,0,0,0.10);
    overflow: hidden;
    border: 1.5px solid #e5e7eb !important;
    margin: 0 auto;
    position: relative;
    transform: rotate(0deg) scale(1);
    opacity: 0;
    animation: browserInDeluxe 1.3s cubic-bezier(.77,0,.18,1) 0.2s forwards;
}

.browser-bar {
    height: 38px;
    background: #e5e7eb !important;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    gap: 0.5rem;
    border-bottom: 1px solid #d1d5db !important;
}

.browser-bar .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.browser-bar .red { background: #ef4444; }
.browser-bar .yellow { background: #f59e0b; }
.browser-bar .green { background: #10b981; }

.browser-content {
    background: #fff !important;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: unset;
    height: unset;
    aspect-ratio: 16/9;
}

.browser-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    border-radius: 0 0 1.2rem 1.2rem;
    box-shadow: 0 2px 12px rgba(99,102,241,0.08);
    animation: browserImgPopDeluxe 1.1s cubic-bezier(.77,0,.18,1) 0.7s both;
    background: #fff !important;
}

@keyframes browserInDeluxe {
    0% { opacity: 0; transform: scale(0.7) translateY(60px); filter: blur(8px); }
    60% { opacity: 1; transform: scale(1.04) translateY(-10px); filter: blur(2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes browserImgPopDeluxe {
    0% { opacity: 0; transform: scale(0.95) translateY(20px); filter: blur(8px); }
    60% { opacity: 1; transform: scale(1.03) translateY(-8px); filter: blur(1px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@media (max-width: 900px) {
    .browser-mockup {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
    }
    .browser-content {
        aspect-ratio: 16/9;
    }
}

.highlight {
    color: #b6e0fe;
    font-weight: 900;
    letter-spacing: 0.01em;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
}

.licenca-unica {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #232946 0%, #3a5a7a 100%);
    color: #f3f4f6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.licenca-header .section-title {
    font-size: 2.7rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.licenca-header .section-subtitle {
    color: #bfc6d1;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.licenca-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #232946;
    border: 2px solid #3a5a7a;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px #1a263355;
    padding: 2rem 1.8rem;
    min-width: 220px;
    max-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f3f4f6;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.benefit-card i {
    font-size: 2.2rem;
    color: #3a5a7a;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 36px #3a5a7a99, 0 2px 8px #0002;
    border-color: #fbb040;
}

.benefit-card:hover i {
    color: #fbb040;
}

.licenca-cta {
    margin-top: 2.5rem;
}

.licenca-cta .btn-primary {
    font-size: 1.3rem;
    padding: 1.3rem 3.5rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.licenca-cta .cta-note {
    margin-top: 1.2rem;
    color: #bfc6d1;
    font-size: 1.05rem;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .licenca-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .benefit-card {
        min-width: 0;
        width: 100%;
        max-width: 400px;
    }
}

.funcionalidades-main {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #232946 0%, #181c2a 100%);
    color: #f3f4f6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.funcionalidades-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.funcionalidades-header .section-subtitle {
    color: #bfc6d1;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    justify-items: center;
}

.func-card {
    background: #232946;
    border: 2px solid #3a5a7a;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px #1a263355;
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    min-width: 260px;
    max-width: 320px;
    min-height: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.13rem;
    font-weight: 600;
    color: #f3f4f6;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.func-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
    animation: cardShine 2.5s linear infinite;
}

.func-card:nth-child(1)::before { animation-delay: 0s; }
.func-card:nth-child(2)::before { animation-delay: 0.2s; }
.func-card:nth-child(3)::before { animation-delay: 0.4s; }
.func-card:nth-child(4)::before { animation-delay: 0.6s; }
.func-card:nth-child(5)::before { animation-delay: 0.8s; }
.func-card:nth-child(6)::before { animation-delay: 1.0s; }
.func-card:nth-child(7)::before { animation-delay: 1.2s; }
.func-card:nth-child(8)::before { animation-delay: 1.4s; }
.func-card:nth-child(9)::before { animation-delay: 1.6s; }
.func-card:nth-child(10)::before { animation-delay: 1.8s; }
.func-card:nth-child(11)::before { animation-delay: 2.0s; }
.func-card:nth-child(12)::before { animation-delay: 2.2s; }
.func-card:nth-child(13)::before { animation-delay: 2.4s; }
.func-card:nth-child(14)::before { animation-delay: 2.6s; }
.func-card:nth-child(15)::before { animation-delay: 2.8s; }

@keyframes cardShine {
    0% { left: -75%; }
    60% { left: 110%; }
    100% { left: 110%; }
}

.func-card i {
    font-size: 2.1rem;
    color: #3a5a7a;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.func-card .func-detail {
    display: block;
    font-size: 0.98rem;
    color: #fbb040;
    margin-top: 0.2rem;
    font-weight: 700;
}

.func-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 36px #3a5a7a99, 0 2px 8px #0002;
    border-color: #fbb040;
}

.func-card:hover i {
    color: #fbb040;
}

.func-card-destaque {
    background: linear-gradient(135deg, #3a5a7a 0%, #fbb040 100%);
    color: #232946;
    border-color: #fbb040;
    font-size: 1.18rem;
    font-weight: 900;
    box-shadow: 0 8px 32px #fbb04055, 0 2px 8px #0002;
}

.func-card-destaque i {
    color: #232946;
}

@media (max-width: 900px) {
    .funcionalidades-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .func-card {
        min-width: 0;
        width: 100%;
        max-width: 400px;
        min-height: 180px;
        height: 180px;
    }
}

.construtor-fluxos-section {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #232946 0%, #181c2a 100%);
    color: #f3f4f6;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.construtor-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.construtor-header .section-subtitle {
    color: #bfc6d1;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.construtor-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.browser-mockup-fluxos {
    width: 1000px;
    max-width: 98vw;
    background: #f3f4f6;
    border-radius: 1.2rem;
    box-shadow: 0 12px 40px rgba(58,90,122,0.14), 0 2px 12px rgba(0,0,0,0.10);
    overflow: hidden;
    border: 1.5px solid #e5e7eb;
    margin: 0 auto;
    position: relative;
    transform: scale(1);
    opacity: 0;
    animation: browserInFluxos 1.3s cubic-bezier(.77,0,.18,1) 0.2s forwards;
}

.browser-mockup-fluxos .browser-bar {
    height: 38px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    gap: 0.5rem;
    border-bottom: 1px solid #d1d5db;
}

.browser-mockup-fluxos .browser-content {
    background: #fff;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    aspect-ratio: 2.034/1;
    height: unset;
    min-height: unset;
}

.browser-mockup-fluxos .browser-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 0 0 1.2rem 1.2rem;
    box-shadow: 0 2px 12px rgba(58,90,122,0.08);
    background: #fff;
}

@keyframes browserInFluxos {
    0% { opacity: 0; transform: scale(0.7) translateY(60px); filter: blur(8px); }
    60% { opacity: 1; transform: scale(1.04) translateY(-10px); filter: blur(2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@media (max-width: 1200px) {
    .browser-mockup-fluxos {
        width: 100%;
        min-width: 0;
        max-width: 100vw;
    }
    .browser-mockup-fluxos .browser-content {
        aspect-ratio: 16/9;
    }
}

.browser-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.browser-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    z-index: 1;
    object-fit: contain;
    background: #fff;
    pointer-events: none;
    transform: translateX(60px) scale(0.96) skewX(-4deg);
    filter: blur(2px) grayscale(0.2);
}

.browser-slide.active,
.browser-slide.slide-in {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    transform: translateX(0) scale(1) skewX(0);
    filter: blur(0) grayscale(0);
}

.browser-slide.slide-out {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transform: translateX(-60px) scale(0.96) skewX(4deg);
    filter: blur(2px) grayscale(0.2);
}

.browser-carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    margin: 1.2rem 0 0 0;
    position: relative;
    z-index: 10;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #bfc6d1;
    opacity: 0.5;
    transition: background 0.3s, opacity 0.3s, transform 0.3s;
    cursor: pointer;
    border: 2px solid #3a5a7a;
    box-shadow: 0 2px 8px #1a263322;
}

.carousel-dot.active {
    background: linear-gradient(135deg, #3a5a7a 0%, #fbb040 100%);
    opacity: 1;
    transform: scale(1.18);
    border-color: #fbb040;
}

.btn-demo-mockup {
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #3a5a7a 0%, #fbb040 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 24px #3a5a7a55, 0 2px 8px #0002;
    z-index: 10;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    animation: demoPulse 2.2s infinite cubic-bezier(.4,0,.2,1);
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-demo-mockup:hover {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 12px 32px #fbb04099, 0 2px 8px #0002;
    background: linear-gradient(135deg, #fbb040 0%, #3a5a7a 100%);
    color: #fff;
}
@keyframes demoPulse {
    0%, 100% { box-shadow: 0 6px 24px #3a5a7a55, 0 2px 8px #0002; }
    50% { box-shadow: 0 0 0 12px #fbb04033, 0 6px 24px #3a5a7a99; }
}
.btn-demo-mockup i {
    margin-left: 2px;
}

.cyber-highlight {
    background: linear-gradient(90deg, #00eaff 0%, #fbb040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 0.01em;
    filter: drop-shadow(0 2px 8px #00eaff88);
}

.hero-strong {
    color: #00eaff;
    font-weight: 900;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    background: none;
    animation: heroStrongShine 2.2s linear infinite;
    background-clip: initial;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

@keyframes heroStrongShine {
    0% { text-shadow: 0 0 8px #00eaff88, 0 2px 12px #1a2633cc; }
    50% { text-shadow: 0 0 24px #fbb040cc, 0 2px 12px #1a2633cc; color: #fbb040; }
    100% { text-shadow: 0 0 8px #00eaff88, 0 2px 12px #1a2633cc; }
}

.footer-content-professional {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 0 1.2rem 0;
}
.footer-logo-img-left {
    height: 38px;
    width: auto;
    margin-right: 0.5rem;
    filter: drop-shadow(0 2px 8px #1a2633cc);
    flex-shrink: 0;
}
.footer-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-copyright {
    color: #bfc6d1;
    font-size: 1.13rem;
    margin: 0;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px #10131a44;
    padding: 0.5rem 0;
}
.footer-security {
    color: #00eaff;
    font-size: 1.08rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.footer-more {
    color: #fbb040;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.01em;
}
@media (max-width: 700px) {
    .footer-content-professional {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .footer-info-block {
        align-items: center;
        text-align: center;
    }
    .footer-logo-img-left {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.shine-effect {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #b6e0fe 0%, #fff 40%, #b6e0fe 60%, #6366f1 100%);
  background-size: 200% auto;
  color: #f3f4f6;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-move 1s linear infinite;
  font-weight: 900;
  letter-spacing: 0.01em;
}
@keyframes shine-move {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}

.video-mockup-section {
  padding: 5rem 0 3rem 0;
  background: linear-gradient(135deg, #232946 0%, #181c2a 100%);
  color: #f3f4f6;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.video-mockup-header .section-title {
  font-size: 2.3rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}
.video-mockup-header .section-subtitle {
  color: #bfc6d1;
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
}
.browser-mockup-video {
  width: 900px;
  max-width: 98vw;
  background: #f3f4f6;
  border-radius: 1.2rem;
  box-shadow: 0 12px 40px rgba(58,90,122,0.14), 0 2px 12px rgba(0,0,0,0.10);
  overflow: hidden;
  border: 1.5px solid #e5e7eb;
  margin: 0 auto;
  position: relative;
  transform: scale(1);
  opacity: 0;
  animation: browserInVideo 1.2s cubic-bezier(.77,0,.18,1) 0.1s forwards;
}
.browser-mockup-video .browser-bar {
  height: 38px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  gap: 0.5rem;
  border-bottom: 1px solid #d1d5db;
}
.browser-mockup-video .browser-content-video {
  background: #000;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  aspect-ratio: 16/9;
  min-height: 320px;
  max-height: 60vh;
  height: 100%;
}
.browser-mockup-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 1.2rem 1.2rem;
  background: #000;
  display: block;
}
@keyframes browserInVideo {
  0% { opacity: 0; transform: scale(0.7) translateY(60px); filter: blur(8px); }
  60% { opacity: 1; transform: scale(1.04) translateY(-10px); filter: blur(2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
@media (max-width: 1000px) {
  .browser-mockup-video {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
  }
  .browser-mockup-video .browser-content-video {
    aspect-ratio: 16/9;
    min-height: 200px;
    max-height: 40vh;
  }
}

.btn-text-mobile { display: none !important; }
.btn-text-desktop { display: inline !important; }
@media (max-width: 600px) {
  .btn-text-desktop { display: none !important; }
  .btn-text-mobile { display: inline !important; }
} 