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

:root {
    --bg-dark: #0a0a14;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --green-primary: #00D26A;
    --green-secondary: #00ff7f;
    --green-dark: #00a853;
    --green-glow: rgba(0, 210, 106, 0.5);
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light-gray: #d1d5db;
    --border-color: #1f2937;
    --gradient-green: linear-gradient(135deg, #00D26A 0%, #00ff7f 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.nav-link:hover {
    color: var(--green-primary);
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--green-primary);
    border-radius: 8px;
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--green-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--green-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: #000E10;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 210, 106, 0.15);
    top: 10%;
    right: 20%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 210, 106, 0.1);
    bottom: 20%;
    left: 30%;
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

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

.hero-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background:
        linear-gradient(90deg, transparent 49%, rgba(0, 210, 106, 0.1) 50%, transparent 51%),
        linear-gradient(0deg, rgba(0, 210, 106, 0.05) 0%, transparent 100%);
    background-size: 100px 100%, 100% 100%;
    opacity: 0.5;
}

.hero-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
    max-width: 500px;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--green-primary);
    text-shadow: 0 0 40px var(--green-glow);
}

.highlight-dark {
    color: var(--green-dark);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--green-primary);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% {
        box-shadow: 0 5px 25px var(--green-glow), 0 0 50px rgba(0, 210, 106, 0.3);
    }
    50% {
        box-shadow: 0 5px 50px var(--green-glow), 0 0 100px rgba(0, 210, 106, 0.5), 0 0 150px rgba(0, 210, 106, 0.2);
    }
}

.btn-primary:hover {
    background: var(--green-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--green-glow);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--green-primary);
    border-radius: 8px;
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 210, 106, 0.1);
    box-shadow: 0 0 30px rgba(0, 210, 106, 0.3);
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: auto;
    z-index: 0;
    filter: contrast(1.35) brightness(1.25) saturate(1.3) sharpen(1);
    -webkit-filter: contrast(1.35) brightness(1.25) saturate(1.3);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-video-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, #000E10 0%, transparent 30%),
        linear-gradient(90deg, rgba(10, 10, 20, 0.85) 0%, rgba(10, 10, 20, 0.4) 50%, rgba(10, 10, 20, 0.2) 100%);
    z-index: 1;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a2a);
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 210, 106, 0.1);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0b141a;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #0b141a;
}

.phone-time {
    font-size: 0.75rem;
    font-weight: 600;
}

.phone-status {
    display: flex;
    gap: 4px;
}

.phone-status span {
    width: 15px;
    height: 10px;
    background: white;
    border-radius: 2px;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #1f2c34;
}

.wa-back {
    color: var(--green-primary);
    font-size: 1.2rem;
}

.wa-avatar {
    width: 35px;
    height: 35px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.wa-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.wa-status {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.wa-icons {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%230b141a"/><circle cx="20" cy="20" r="1" fill="%231f2c34" opacity="0.5"/><circle cx="60" cy="40" r="1" fill="%231f2c34" opacity="0.5"/><circle cx="80" cy="80" r="1" fill="%231f2c34" opacity="0.5"/></svg>');
}

.chat-bubble {
    max-width: 80%;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    font-size: 0.8rem;
    animation: bubbleIn 0.5s ease-out;
}

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

.chat-bubble.incoming {
    background: #1f2c34;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
    background: #005c4b;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bubble.catalog {
    padding: 0.5rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.catalog-item {
    aspect-ratio: 1;
    background: #2a3942;
    border-radius: 4px;
}

.catalog-label {
    color: var(--green-primary);
    font-size: 0.7rem;
}

.chat-bubble.payment {
    background: var(--green-primary);
    color: var(--bg-dark);
    font-weight: 600;
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #1f2c34;
}

.chat-input input {
    flex: 1;
    background: #2a3942;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
}

.emoji-btn, .mic-btn {
    font-size: 1.2rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.dollar-1 {
    top: 5%;
    left: 10%;
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.dollar-2 {
    bottom: 25%;
    left: 5%;
    width: 45px;
    height: 45px;
    animation-delay: 1s;
}

.check-1 {
    top: 10%;
    right: 5%;
    width: 45px;
    height: 45px;
    animation-delay: 0.5s;
}

.check-2 {
    bottom: 35%;
    right: 0%;
    width: 40px;
    height: 40px;
    animation-delay: 1.5s;
}

.cart {
    top: 40%;
    left: 0%;
    width: 60px;
    height: 60px;
    animation-delay: 2s;
}

.wallet {
    bottom: 10%;
    right: 10%;
    width: 60px;
    height: 45px;
    animation-delay: 2.5s;
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1117 100%);
}

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

.stats-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.big-stat {
    margin-bottom: 4rem;
}

.stat-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--green-primary);
    display: block;
    line-height: 1;
}

.glow-text {
    text-shadow:
        0 0 20px var(--green-glow),
        0 0 40px rgba(0, 210, 106, 0.3);
}

.stat-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.cycle-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

/* Sales Cycle */
.sales-cycle {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.cycle-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 160px;
    height: 340px;
    justify-content: flex-start;
    padding-top: 100px;
    margin-right: 30px;
}

.cycle-logo-img {
    height: 70px;
    width: auto;
    animation: float-glow 6s ease-in-out infinite;
}

@keyframes float-glow {
    0% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 25px 45px rgba(0, 210, 106, 0.7));
    }
    25% {
        transform: translateY(-3px) rotate(0.5deg);
        filter: drop-shadow(30px 10px 50px rgba(0, 210, 106, 0.6));
    }
    50% {
        transform: translateY(-6px) rotate(0deg);
        filter: drop-shadow(0 -25px 45px rgba(0, 210, 106, 0.7));
    }
    75% {
        transform: translateY(-3px) rotate(-0.5deg);
        filter: drop-shadow(-30px 10px 50px rgba(0, 210, 106, 0.6));
    }
    100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 25px 45px rgba(0, 210, 106, 0.7));
    }
}

.logo-icon-small {
    width: 50px;
    height: 50px;
}

.cycle-logo span {
    font-weight: 600;
    color: var(--green-primary);
}

.cycle-arrow {
    font-size: 4rem;
    color: var(--green-primary);
    animation: arrow-pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--green-glow));
    margin-top: 90px;
}

@keyframes arrow-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

.cycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 180px;
    height: 340px;
    justify-content: flex-start;
}

.cycle-step-img {
    width: 200px;
    height: 280px;
    object-fit: contain;
    animation: float-glow 6s ease-in-out infinite;
}

.cycle-step:nth-child(3) .cycle-step-img {
    animation-delay: -1s;
}

.cycle-step:nth-child(5) .cycle-step-img {
    animation-delay: -2s;
}

.cycle-step:nth-child(7) .cycle-step-img {
    animation-delay: -3s;
}

.step-phone {
    width: 100px;
    height: 180px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a2a);
    border-radius: 15px;
    padding: 5px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mini-screen {
    width: 100%;
    height: 100%;
    background: #1f2c34;
    border-radius: 12px;
    overflow: hidden;
    padding: 0.5rem;
}

.products-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.mini-product {
    aspect-ratio: 1;
    background: #2a3942;
    border-radius: 4px;
}

.payment-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0.5rem;
}

.mini-payment-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-line {
    height: 8px;
    background: #2a3942;
    border-radius: 4px;
}

.form-line.short {
    width: 60%;
}

.pix-logo {
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: var(--green-primary);
    border-radius: 4px;
    text-align: center;
}

.pix-logo span {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--bg-dark);
}

.step-check {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--bg-dark);
    box-shadow: 0 5px 15px var(--green-glow);
}

.step-icon {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float-glow 6s ease-in-out infinite;
    animation-delay: -3.5s;
    margin-top: 40px;
}

.step-icon svg {
    width: 180px;
    height: 180px;
}

.cart-icon .step-check {
    bottom: 0;
    right: 0;
}

.confirm-icon svg {
    filter: drop-shadow(0 0 20px var(--green-glow));
}

.step-label {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: auto;
    line-height: 1.3;
    font-weight: 500;
}

/* Performance Section */
.performance-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.performance-content {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.metric-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(0, 210, 106, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-card-content .metric-label {
    margin-top: 0.25rem;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 210, 106, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: 0 20px 40px rgba(0, 210, 106, 0.2);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.metric-icon svg {
    width: 100%;
    height: 100%;
}

.metric-icon-img {
    width: 80px;
    height: auto;
    animation: icon-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--green-glow));
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg) translateZ(0);
    }
    50% {
        transform: translateY(-10px) rotate(5deg) translateZ(0);
    }
}

.metric-card:nth-child(1) .metric-icon-img {
    animation-delay: 0s;
}

.metric-card:nth-child(2) .metric-icon-img {
    animation-delay: 0.4s;
}

.metric-card:nth-child(3) .metric-icon-img {
    animation-delay: 0.8s;
}

.metric-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--green-primary);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px var(--green-glow), 0 0 60px rgba(0, 210, 106, 0.4);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.metric-label {
    font-size: 1.4rem;
    color: var(--text-gray);
}

.steps-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    position: relative;
}

.step-item-img {
    width: 220px;
    height: 340px;
    object-fit: contain;
    animation: float-glow 6s ease-in-out infinite;
}

.step-item-img-large {
    width: 380px;
    height: 340px;
}

.step-item:nth-child(1) .step-item-img {
    animation-delay: 0s;
}

.step-item:nth-child(3) .step-item-img {
    animation-delay: -1.5s;
}

.step-item:nth-child(5) .step-item-img {
    animation-delay: -2.5s;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--bg-dark);
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px var(--green-glow);
}

.step-visual {
    width: 180px;
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-phone-frame {
    width: 120px;
    height: 200px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a2a);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-screen {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
}

.app-header {
    padding: 0.5rem;
    background: #0d1117;
}

.app-nav {
    display: flex;
    justify-content: space-around;
}

.nav-item {
    font-size: 0.8rem;
    opacity: 0.5;
}

.nav-item.active {
    opacity: 1;
}

.app-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card-mini {
    height: 40px;
    background: #2a3942;
    border-radius: 6px;
}

.chatbot-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bot-icon {
    width: 80px;
    height: 80px;
}

.bot-icon svg {
    width: 100%;
    height: 100%;
}

.badge-24-7 {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--green-primary);
    color: var(--bg-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.chat-bubbles-mini {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bubble-mini {
    padding: 0.5rem 1rem;
    background: #1f2c34;
    border-radius: 10px;
    font-size: 0.7rem;
    color: var(--text-gray);
}

.bubble-mini.green {
    background: rgba(0, 210, 106, 0.2);
    color: var(--green-primary);
}

.payment-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.pix-badge svg {
    width: 80px;
    height: 30px;
}

.card-visual {
    width: 120px;
    height: 75px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(0, 210, 106, 0.3);
}

.card-chip {
    width: 25px;
    height: 18px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.card-number {
    font-size: 0.6rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

.payment-check {
    position: absolute;
    top: 0;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: bold;
    box-shadow: 0 5px 15px var(--green-glow);
}

.step-info {
    text-align: center;
}

.step-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.step-arrow {
    font-size: 4rem;
    color: var(--green-primary);
    margin-top: calc(12rem - 13px);
    position: relative;
    left: -20px;
    animation: arrow-pulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 25px var(--green-glow)) drop-shadow(0 0 50px rgba(0, 210, 106, 0.4));
}

.step-arrow-1 {
    margin-left: -20px;
    margin-right: -20px;
}

.step-arrow-2 {
    margin-left: 20px;
    margin-right: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0d1117 0%, var(--bg-dark) 100%);
}

.pricing-content {
    max-width: 1280px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.pricing-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(0, 210, 106, 0.6);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:first-child,
.pricing-card:nth-child(3) {
    height: 540px;
}

.pricing-card:nth-child(3) .plan-btn,
.pricing-card.enterprise .plan-btn {
    margin-top: auto;
}

.pricing-card:first-child .plan-btn {
    margin-top: -1rem;
}

.pricing-card:not(.popular) .plan-features {
    flex: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--green-primary);
    box-shadow: 0 20px 60px rgba(0, 210, 106, 0.4), 0 0 100px rgba(0, 210, 106, 0.3), 0 0 150px rgba(0, 210, 106, 0.2);
}

.pricing-card.popular {
    border-color: var(--green-primary);
    background: linear-gradient(180deg, rgba(0, 210, 106, 0.1) 0%, rgba(17, 24, 39, 0.5) 30%);
    animation: glow-breathe 3s ease-in-out infinite;
}

@keyframes glow-breathe {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 210, 106, 0.3), 0 0 60px rgba(0, 210, 106, 0.2);
    }
    50% {
        box-shadow: 0 15px 60px rgba(0, 210, 106, 0.5), 0 0 100px rgba(0, 210, 106, 0.4);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-primary);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    overflow: hidden;
}

.popular-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.pricing-card.popular .plan-btn {
    position: relative;
    overflow: hidden;
}

.pricing-card.popular .plan-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        123deg,
        transparent 40%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 60%
    );
    animation: shine 2s infinite;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.plan-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1.2;
}

.plan-tagline-big {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-top: 1rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: -0.75rem;
}

.price-info {
    font-size: 0.9rem;
    color: var(--green-primary);
    line-height: 1.5;
}

.price-value {
    font-size: 0.85rem;
    color: var(--text-light-gray);
    margin-top: 0.5rem;
}

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

.currency {
    font-size: 1.2rem;
    color: #ffffff;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.pricing-card.enterprise {
    height: 486px;
    border-color: #a0a0a0;
}

.pricing-card.enterprise .plan-header {
    border-bottom: none;
}

.pricing-card.enterprise .plan-name {
    color: #ffffff;
}

.pricing-card.enterprise .plan-tagline-big {
    color: #ffffff;
}

.pricing-card.enterprise .plan-features {
    margin-top: 0;
}

.pricing-card.enterprise .plan-features li {
    color: #ffffff;
}

.pricing-card.enterprise .check {
    background: #ffffff;
}

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

.plan-quota {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.plan-extra {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-light-gray);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--green-primary);
    border-radius: 50%;
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green-primary);
    color: var(--text-white);
    border-radius: 30px;
}

.btn-outline:hover {
    background: rgba(0, 210, 106, 0.1);
    color: var(--green-primary);
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.3);
}

.btn-primary-plan {
    background: var(--green-primary);
    border: none;
    color: var(--bg-dark);
    border-radius: 30px;
}

.btn-primary-plan:hover {
    background: var(--green-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--green-glow);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #C0C0C0;
    color: #C0C0C0;
    border-radius: 30px;
}

.btn-outline-white:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1400px) and (min-width: 769px) {
    .hero-video-bg {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: none !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: right center !important;
    }

    .sales-cycle {
        gap: 0.25rem;
    }

    .cycle-logo {
        width: 120px;
        height: auto;
        padding-top: 60px;
        margin-right: 10px;
    }

    .cycle-logo-img {
        height: 50px;
    }

    .cycle-step-img {
        width: 150px;
        height: 210px;
    }

    .cycle-arrow {
        font-size: 2.5rem;
        margin-top: 60px;
    }

    .step-icon {
        width: 120px;
        height: 120px;
    }

    .step-icon svg {
        width: 100px;
        height: 100px;
    }

    .step-label {
        font-size: 1rem;
    }

    .cycle-step {
        gap: 0.25rem;
        width: 150px;
        height: auto;
    }

    .step-label {
        margin-top: 0.5rem;
    }

    .steps-container {
        gap: 1rem;
    }

    .step-item {
        max-width: 250px;
    }

    .step-item-img {
        width: 180px;
        height: 280px;
    }

    .step-item-img-large {
        width: 300px;
        height: 280px;
    }

    .step-arrow {
        font-size: 2.5rem;
    }

    .step-info {
        font-size: 0.9rem;
    }

    .step-name {
        font-size: 1rem;
    }

    .step-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 5rem;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg) !important;
        margin: 1rem 0 !important;
        margin-top: 0 !important;
        left: 0 !important;
        animation: none !important;
    }

    .sales-cycle {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .cycle-arrow {
        transform: rotate(90deg) !important;
        margin: 0.25rem 0 !important;
        font-size: 3rem !important;
        display: flex;
        justify-content: center;
        animation: none !important;
    }

    .cycle-step {
        width: 100%;
        max-width: 280px;
        gap: 0.5rem;
    }

    .cycle-step-img {
        width: 200px;
        height: 280px;
    }

    .cycle-logo {
        width: auto;
        height: auto;
        padding-top: 0;
        margin-right: 0;
        justify-content: center;
    }

    .cycle-logo-img {
        height: 100px;
    }

    .step-label {
        margin-top: 0;
        margin-bottom: 0;
    }

    .cycle-step:last-child {
        margin-bottom: -6rem;
    }

    .stats-section {
        padding-bottom: 0;
    }

    .step-icon {
        width: 120px;
        height: 120px;
        margin-top: -0.5rem;
    }

    .step-icon svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 1.5rem 3rem;
        min-height: 100vh;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }

    .hero-video-bg {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, transparent 0%, #000E10 50%);
    }

    .hero-content {
        align-items: center;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .header {
        padding: 1.5rem 2rem;
        transition: padding 0.3s ease;
    }

    .header.scrolled {
        padding: 0.75rem 2rem !important;
    }

    .logo-img {
        height: 60px;
        transition: height 0.3s ease;
    }

    .header.scrolled .logo-img {
        height: 40px !important;
    }

    .stats-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo-img {
        height: 60px;
    }

    .header.scrolled .logo-img {
        height: 40px;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Circuit lines background */
.circuit-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.circuit-lines::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background:
        linear-gradient(90deg, transparent 0%, transparent 49%, rgba(0, 210, 106, 0.1) 49%, rgba(0, 210, 106, 0.1) 51%, transparent 51%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 49%, rgba(0, 210, 106, 0.05) 49%, rgba(0, 210, 106, 0.05) 51%, transparent 51%, transparent 100%);
    background-size: 50px 50px, 50px 50px;
    opacity: 0.5;
    mask-image: linear-gradient(to top, black, transparent);
    -webkit-mask-image: linear-gradient(to top, black, transparent);
}

/* ===========================================
   PARALLAX SCROLL EFFECTS
   =========================================== */

/* Base parallax styles */
.parallax-layer {
    position: absolute;
    inset: -50% -10%;
    pointer-events: none;
    z-index: 0;
}

/* Smooth transform for parallax elements - only background elements */
.hero-glow-1,
.hero-glow-2 {
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Floating elements parallax enhancement */
.floating-element {
    transition: transform 0.15s ease-out;
}

/* Parallax orbs */
.parallax-orb {
    animation: orb-pulse 4s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Parallax grid */
.parallax-grid {
    opacity: 0.3;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

/* Parallax dots */
.parallax-dot {
    animation: dot-twinkle 3s ease-in-out infinite;
}

.parallax-dot:nth-child(odd) {
    animation-delay: -1.5s;
}

@keyframes dot-twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Card transitions */
.metric-card,
.pricing-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

/* Section depth layers */
.hero,
.stats-section,
.performance-section,
.pricing-section {
    position: relative;
    overflow: hidden;
}

/* Content containers stay above parallax layers */
.hero-content,
.stats-content,
.performance-content,
.pricing-content {
    position: relative;
    z-index: 2;
}

/* Smooth section transitions */
section {
    position: relative;
}

/* Enhanced depth shadows */
.metric-card {
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.metric-card:hover {
    box-shadow:
        0 20px 50px rgba(0, 210, 106, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card {
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Stagger animation for sales cycle steps - fade only */
.cycle-step {
    opacity: 0;
    animation: stepFadeIn 0.6s ease-out forwards;
}

.cycle-step:nth-child(1) { animation-delay: 0.1s; }
.cycle-step:nth-child(2) { animation-delay: 0.2s; }
.cycle-step:nth-child(3) { animation-delay: 0.3s; }
.cycle-step:nth-child(4) { animation-delay: 0.4s; }
.cycle-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes stepFadeIn {
    to {
        opacity: 1;
    }
}

/* Stagger animation for pricing cards - fade in only, no position change */
.pricing-card {
    opacity: 0;
    animation: cardFadeIn 0.8s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth scroll snap for sections (optional, can be disabled) */
/*
html {
    scroll-snap-type: y proximity;
}

section {
    scroll-snap-align: start;
}
*/

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .parallax-layer,
    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .hero-phone,
    .floating-element,
    .parallax-orb,
    .parallax-dot {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* Mobile parallax adjustments */
@media (max-width: 768px) {
    .parallax-layer {
        display: none;
    }

    .hero-glow-1,
    .hero-glow-2 {
        transform: none !important;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(180deg, #111827 0%, #0a0a14 100%);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 210, 106, 0.2), 0 0 100px rgba(0, 210, 106, 0.1);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.modal-title span {
    color: var(--green-primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 20px rgba(0, 210, 106, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input.error {
    border-color: #ff4444;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.modal-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 90%;
    max-width: 450px;
}

.modal-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    padding: 0;
}

.modal-close svg {
    width: 100%;
    height: 100%;
}

.modal-close:hover {
    color: var(--text-white);
    transform: rotate(90deg);
}

.modal-close:hover circle {
    stroke-opacity: 0.5;
}

.modal-btn-continue {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--green-primary);
    border: none;
    color: var(--bg-dark);
    margin-top: 1.5rem;
}

.modal-btn-continue:hover {
    background: var(--green-secondary);
    box-shadow: 0 5px 30px var(--green-glow);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}
