:root {
    --bg-color: #0b0f19;
    --text-color: #e2e8f0;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --accent-color: #10b981;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
}
.btn-text:hover {
    color: var(--text-color);
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}
.desktop-menu {
    display: flex;
    gap: 2rem;
}
.desktop-menu a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.desktop-menu a:hover {
    color: var(--primary-color);
}

/* Hero */
.hero {
    height: 100vh;
    background-image: url('./assets/img/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

/* Sections General */
section {
    padding: 6rem 0;
}
.section-subtitle {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Social Proof */
.social-proof {
    background: #080b13;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.5;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
}

/* About Split */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    font-size: 2.5rem;
}
.about-text p {
    margin-bottom: 1.5rem;
    color: #94a3b8;
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Bento Services */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px;
    gap: 1.5rem;
    margin-top: 3rem;
}
.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}
.bento-item.highlight {
    grid-column: span 2;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}
.bento-overlay {
    background: linear-gradient(to top, rgba(11,15,25, 0.9), transparent);
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}
.author strong {
    display: block;
    color: white;
}
.author span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* FAQ */
.faq {
    background: #080b13;
}
.accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.accordion-header::after {
    content: '+';
    color: var(--primary-color);
}
.accordion-header.active::after {
    content: '-';
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-content p {
    padding-bottom: 1.5rem;
    color: #94a3b8;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}
.cta h2 {
    font-size: 3rem;
}
.cta p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #05070a;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    margin-bottom: 1.5rem;
}
.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: #94a3b8;
}
.footer-col a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    transition: bottom 0.4s ease;
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-banner p {
    font-size: 0.9rem;
    color: #cbd5e1;
}
.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Simple page specific styles */
.page-header {
    padding: 150px 0 60px;
    background: #080b13;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}
.page-content h2 { margin-top: 2rem; margin-bottom: 1rem; color: #fff; font-family: var(--font-heading); }
.page-content p { margin-bottom: 1.5rem; color: #cbd5e1; font-family: var(--font-body); }
.page-content ul { margin-left: 2rem; margin-bottom: 1.5rem; color: #cbd5e1; }
