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

:root {
    --primary: #0d1b2a;
    --secondary: #1a2942;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --orange: #ec4899;
    --success: #10b981;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #f9fafb;
    --white: #ffffff;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 41, 66, 0.85);
    backdrop-filter: blur(10px);
    padding: 0px 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    height: 80px;
}

.navbar-logo {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 10px;
    padding: 0;
    display: block;
}

.navbar-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--orange) 100%);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-light);
    transform: translateY(-2px);
}

.nav-link-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.nav-link-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.nav-link-cta:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5);
}

.nav-link-cta:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        margin-left: 20px;
    }
    
    .nav-link {
        font-size: 12px;
    }
}

/* ANIMATIONS */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(37, 99, 235, 0.5); }
    50% { text-shadow: 0 0 20px rgba(37, 99, 235, 0.8); }
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* HEADER/NAVIGATION */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 400px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: slideIn 0.8s ease-out;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    border-radius: 12px;
    object-fit: contain;
    padding: 5px;
}

header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

header p {
    font-size: 18px;
    margin: 20px 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e1;
    position: relative;
    z-index: 1;
    animation: slideIn 1s ease-out 0.2s both;
}

.hero-image {
    position: relative;
    z-index: 1;
    margin-top: 40px;
    animation: fadeInScale 1s ease-out 0.4s both;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    padding: 16px 40px;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.45);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

/* SECTIONS */
section {
    padding: 80px 5%;
    text-align: center;
}

section.dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 5%;
    width: 100%;
    display: block;
}

h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    animation: slideIn 0.6s ease-out;
    max-width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section.dark h2 {
    color: var(--white);
    -webkit-text-fill-color: white;
    background: linear-gradient(135deg, #818cf8 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

section.dark .section-subtitle {
    color: #cbd5e1;
}

/* CARDS GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--white) 0%, #f9f5ff 100%);
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--orange) 100%);
}

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

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
    border-color: var(--accent);
}

section.dark .card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card ul {
    list-style: none;
}

.card li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.card li:before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    margin-right: 12px;
    font-size: 18px;
}

section.dark .card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

section.dark .card h3 {
    color: var(--white);
}

section.dark .card li {
    color: #cbd5e1;
}

/* PRICING */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.price-box {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-box:nth-child(1) { animation-delay: 0.1s; }
.price-box:nth-child(2) { animation-delay: 0.2s; }
.price-box:nth-child(3) { animation-delay: 0.3s; }

.price-box.featured {
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25);
    margin-top: -10px;
    background: linear-gradient(135deg, var(--white) 0%, #f0f4ff 100%);
    transform: scaleY(1.02);
}

.price-icon {
    font-size: 42px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.price-box:hover .price-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.price-box:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.2);
    transform: translateY(-10px);
}

.price-box h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-box p {
    color: var(--text-light);
    margin: 10px 0;
    font-size: 16px;
}

.price-box ul {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.price-box ul li {
    color: var(--text-light);
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.price-box button {
    margin-top: auto;
    width: 100%;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* FORM */
.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin: 15px 0 !important;
}

.contact-form button {
    margin-top: auto;
    width: 100%;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

input, textarea {
    width: 100%;
    padding: 14px 16px;
    margin: 15px 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* FOOTER */
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 8px 0;
    color: #cbd5e1;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: var(--accent-light);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

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

#status {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        padding: 80px 20px 60px;
    }
    
    header h1 {
        font-size: 40px;
        flex-direction: column;
        gap: 15px;
    }
    
    header h3 {
        font-size: 18px;
    }
    
    header p {
        font-size: 16px;
    }
    
    section {
        padding: 60px 20px;
        text-align: center;
    }
    
    section.dark {
        padding: 60px 20px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    .section-subtitle {
        max-width: 100%;
        font-size: 16px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-box.featured {
        margin-top: 0;
    }
    
    .hero-image {
        margin: 30px 0;
    }
}
