:root {
    --bg-dark: #070913;
    --text-main: #f0f4f8;
    --text-muted: #8b9bb4;
    --primary: #8a2387;
    --primary-gradient: linear-gradient(135deg, #e94057, #f27121);
    --secondary: #00d2ff;
    --secondary-gradient: linear-gradient(135deg, #3a7bd5, #3a6073);

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-family: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.w-100 {
    width: 100%;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    z-index: 10;
    position: relative;
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

.glow-1 {
    width: 50vw;
    height: 50vw;
    background: var(--primary);
    top: -10vw;
    left: -10vw;
}

.glow-2 {
    width: 40vw;
    height: 40vw;
    background: #00d2ff;
    bottom: -10vw;
    right: -10vw;
    animation-delay: -5s;
    opacity: 0.25;
}

.glow-3 {
    width: 30vw;
    height: 30vw;
    background: #e94057;
    top: 30%;
    left: 40%;
    animation-delay: -10s;
    opacity: 0.15;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5vw, 10vh) scale(1.1);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: #f27121;
}

.btn-nav {
    background: rgba(233, 64, 87, 0.1);
    color: #fff;
    border: 1px solid rgba(233, 64, 87, 0.5);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(233, 64, 87, 0.4);
}

.pulse-sm {
    animation: pulse-sm 2s infinite;
}

@keyframes pulse-sm {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 64, 87, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(233, 64, 87, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 64, 87, 0);
    }
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(233, 64, 87, 0.3);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(233, 64, 87, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 64, 87, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(233, 64, 87, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 64, 87, 0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4rem;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(233, 64, 87, 0.1);
    border: 1px solid rgba(233, 64, 87, 0.3);
    color: #f27121;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cases .badge-hero {
    background: rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.3);
    color: #00d2ff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-weight: 500;
}

.hero-text-extra {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.highlight-text {
    color: #f27121;
    font-weight: 600;
    font-size: 1.2rem;
}

/* About Section */
.layout-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-text strong {
    color: #00d2ff;
}

.quote-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #e94057;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.quote-icon {
    font-size: 1.5rem;
    color: #e94057;
    opacity: 0.8;
}

.quote-box p {
    font-style: italic;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;
}

.data-circles {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #fff;
    mix-blend-mode: screen;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.c1 {
    background: rgba(233, 64, 87, 0.4);
    transform: translate(-40px, -40px);
}

.c2 {
    background: rgba(0, 210, 255, 0.4);
    transform: translate(40px, -40px);
}

.c3 {
    background: rgba(138, 35, 135, 0.4);
    transform: translate(0, 40px);
}

.circle span {
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.case-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.case-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.case-number {
    font-size: 0.85rem;
    color: #00d2ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.case-header h3 {
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-tag {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 500;
}

.dashboard-badge {
    color: #f27121;
}

.case-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-block h4 {
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.case-block h4 i {
    color: #f27121;
}

.case-block p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.highlight-block {
    background: rgba(233, 64, 87, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid #e94057;
}

.highlight-block h4 i {
    color: #e94057;
}

.highlight-block p {
    color: #fff;
}

/* Differentiation */
.ultralongtail-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 210, 255, 0.2);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.ultralongtail-box h3 {
    color: #00d2ff;
    font-size: 1.8rem;
}

.ultralongtail-box>p {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.example-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
}

.example-box p {
    margin: 0;
    font-size: 1.1rem;
}

.bad {
    color: var(--text-muted);
    text-decoration: line-through;
}

.good {
    color: #f27121;
    font-weight: 600;
    font-size: 1.3rem !important;
}

.comparison-table {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.vs-column {
    flex: 1;
    padding: 2.5rem;
    position: relative;
}

.conventional {
    background: rgba(255, 255, 255, 0.02);
}

.growmetrik-col {
    background: rgba(233, 64, 87, 0.05);
    border-left: 1px solid rgba(233, 64, 87, 0.2);
}

.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(233, 64, 87, 0.15), transparent 70%);
    pointer-events: none;
}

.col-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.col-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.conventional .col-header i {
    color: var(--text-muted);
}

.growmetrik-col .col-header i {
    color: #f27121;
    text-shadow: 0 0 15px rgba(242, 113, 33, 0.5);
}

.col-header h4 {
    font-size: 1.5rem;
    margin: 0;
}

.growmetrik-col .col-header h4 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    background: var(--bg-dark);
    color: #fff;
    font-weight: 800;
    border: 1px solid var(--glass-border);
    margin: 0 -25px;
    z-index: 10;
    border-radius: 50px;
    padding: 1rem 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.comparison-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.comparison-list li {
    margin-bottom: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    font-size: 1.05rem;
}

.bad-list li {
    color: var(--text-muted);
}

.bad-list li i {
    color: #ff4757;
    margin-top: 4px;
}

.good-list li {
    color: #fff;
    font-weight: 500;
}

.good-list li i {
    color: #2ed573;
    margin-top: 4px;
    text-shadow: 0 0 10px rgba(46, 213, 115, 0.5);
}

/* SmartSites */
.smart-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.smart-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.smart-icon {
    font-size: 2.5rem;
    color: #00d2ff;
    margin-bottom: 1.5rem;
}

.smart-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.smart-card p {
    color: var(--text-muted);
}

.smart-footer-banner {
    background: linear-gradient(135deg, rgba(233, 64, 87, 0.1), rgba(242, 113, 33, 0.1));
    border: 1px solid rgba(233, 64, 87, 0.3);
    padding: 3rem;
    border-radius: 20px;
}

.smart-footer-banner h3 {
    color: var(--text-main);
    font-weight: 400;
    font-size: 1.5rem;
}

.smart-footer-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 0;
}

/* Pricing */
.cyber-banner {
    background: linear-gradient(90deg, #e94057, #f27121);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(233, 64, 87, 0.3);
}

.cyber-banner h2 {
    color: #fff;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.price-card.popular {
    border-color: rgba(242, 113, 33, 0.5);
    background: rgba(242, 113, 33, 0.05);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(242, 113, 33, 0.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(233, 64, 87, 0.4);
}

.price-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.price-header p {
    color: var(--text-muted);
    font-size: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    margin-bottom: 2rem;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.new-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: #f27121;
}

.new-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.new-price .value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 20px rgba(242, 113, 33, 0.4);
}

.pix-price {
    color: #2ed573;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    align-items: flex-start;
}

.price-features li i {
    color: #00d2ff;
    margin-top: 5px;
    font-size: 0.9rem;
}

.offer-deadline {
    margin-top: 2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.offer-deadline i {
    color: #f27121;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #f27121;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .layout-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .smart-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .hero-title {
        font-size: 3rem;
    }

    .comparison-table {
        flex-direction: column;
    }

    .vs-divider {
        width: 100%;
        height: 50px;
        margin: -25px 0;
        padding: 0;
        flex-direction: row;
    }

    .growmetrik-col {
        border-left: none;
        border-top: 1px solid rgba(233, 64, 87, 0.2);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cyber-banner h2 {
        font-size: 1.2rem;
    }
}

/* Simulator Modal */
.simulator-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 9, 19, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.simulator-modal.active {
    opacity: 1;
    visibility: visible;
}

.simulator-modal-content {
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.simulator-modal.active .simulator-modal-content {
    transform: translateY(0);
}

.simulator-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.simulator-close-btn:hover {
    background: #e94057;
    transform: scale(1.1);
}

.simulator-iframe {
    width: 100%;
    height: 100%;
    border: none;
}