:root {
    /* Design System Colors */
    --clr-navy-dark: #001224;
    --clr-navy: #002244;
    --clr-navy-light: #003666;
    --clr-green: #69be28;
    --clr-green-bright: #6dc629;
    
    --clr-bg: #050505;
    --clr-surface: #111111;
    --clr-surface-glass: rgba(17, 17, 17, 0.7);
    --clr-border: rgba(255, 255, 255, 0.1);
    
    --clr-text: #f0f0f0;
    --clr-text-muted: #a0a0a0;
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.highlight {
    color: var(--clr-green-bright);
    position: relative;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-bright));
    color: #000;
    box-shadow: 0 4px 15px rgba(105, 190, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 190, 40, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
}

.btn-outline:hover {
    border-color: var(--clr-green);
    color: var(--clr-green);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--clr-surface-glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 35px;
    margin: 0;
    filter: drop-shadow(0 0 8px rgba(105,190,40,0.2));
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--clr-text-muted);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--clr-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(105, 190, 40, 0.1);
    color: var(--clr-green-bright);
    border: 1px solid rgba(105, 190, 40, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Glass Card */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    backdrop-filter: blur(10px);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    border-color: rgba(105, 190, 40, 0.3);
}

.card-header {
    background: rgba(0,0,0,0.3);
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--clr-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.card-body {
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

.code-comment { color: var(--clr-text-muted); margin-bottom: 10px; }
.code-line { margin-bottom: 8px; }
.keyword { color: #ff7b72; }
.string { color: #a5d6ff; }
.function { color: #d2a8ff; }
.comment { color: #8b949e; }

.hero-bg-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(105,190,40,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;
    filter: blur(50px);
}

/* Pain Points (Features) */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.feature-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-green);
    background: linear-gradient(180deg, var(--clr-surface), rgba(105, 190, 40, 0.05));
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(105, 190, 40, 0.1);
    color: var(--clr-green-bright);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Solutions Section */
.bg-light {
    background: var(--clr-surface);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.text-green {
    color: var(--clr-green-bright);
}

.rounded-image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--clr-border);
}

.mt-4 {
    margin-top: 2rem;
}

/* CTA & Form */
.cta-section {
    background: radial-gradient(circle at center, rgba(0,34,68,0.5) 0%, var(--clr-bg) 100%);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-desc {
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--clr-border);
}

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

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    color: var(--clr-text);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--clr-green);
    box-shadow: 0 0 0 2px rgba(105, 190, 40, 0.2);
}

.w-100 {
    width: 100%;
}

/* Footer */
.footer {
    border-top: 1px solid var(--clr-border);
    padding: 3rem 0;
    background: var(--clr-surface);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.footer-brand p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.footer-links p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .solutions-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-surface);
        padding: 2rem;
        border-bottom: 1px solid var(--clr-border);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: var(--transition);
    border: 1px solid var(--clr-border);
}

.float-btn svg {
    transition: var(--transition);
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

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

.wa-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: rgba(37, 211, 102, 0.5);
}

.wa-btn:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.insta-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(220, 39, 67, 0.5);
}

.insta-btn:hover {
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.5);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
}
