/* =============================
   Design Tokens / Base
   ============================= */
:root {
    --ink: #1f1f1f;
    --ink-weak: #374151;
    --bg: #f7f5ff;           /* page background (lavender wash) */
    --panel: #ffffff;        /* white panels */
    --lavender: #e8e1ff;     /* light purple */
    --peach: #ffe6cc;        /* peach */
    --mint: #d9f3eb;         /* mint */
    --sky: #dfe9ff;          /* sky */
    --lemon: #fff6cc;        /* lemon */
    --brand: #5b5bd6;        /* brand accent */
    --border: 3px;           /* thick outline */
    --radius: 16px;          /* soft radius */
    --shadow-offset: 0 4px 0 rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================
   Buttons (filled + outline)
   ============================= */
.btn {
    padding: 0.9rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    border: var(--border) solid var(--ink);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
    box-shadow: var(--shadow-offset);
}

.btn-primary {
    background: var(--ink);
    color: #fff;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
    background: #fff;
    color: var(--ink);
}

.btn-secondary:hover { transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: var(--border) solid var(--ink);
}

.btn-outline:hover { 
    transform: translateY(-2px); 
    background: var(--ink);
    color: #fff;
}

/* =============================
   Navbar
   ============================= */
.navbar {
    background: var(--lavender);
    border-bottom: var(--border) solid var(--ink);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 28px; width: auto; display: block; }

.nav-logo h2 { font-weight: 900; letter-spacing: 0.2px; }

.nav-menu { display: flex; list-style: none; gap: 1.6rem; }

.nav-link {
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    padding: 6px 8px;
    border-radius: 8px;
}

.nav-link:hover { background: rgba(0,0,0,0.06); }

.hamburger { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 26px; height: 3px; background: var(--ink); margin: 3px 0; }

/* =============================
   Hero
   ============================= */
.hero {
    background: var(--lavender);
    padding: 140px 0 80px; /* account for fixed nav */
    border-bottom: var(--border) solid var(--ink);
    position: relative;
}

/* Top-right logo inside hero */
.corner-logo {
    position: absolute;
    top: 18px; /* inside hero area below navbar padding */
    right: 20px;
    width: 110px;
    height: auto;
    z-index: 2;
}

.hero-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
}

.hero-title { font-size: 3.25rem; font-weight: 900; line-height: 1.15; }
.hero-description { font-size: 1.15rem; color: var(--ink-weak); margin: 1rem 0 1.75rem; }
.hero-buttons { display: flex; gap: 0.8rem; }

.hero-graphic { position: relative; height: 420px; }
.floating-element { position: absolute; border-radius: 50%; border: var(--border) solid var(--ink); }
.element-1 { width: 180px; height: 180px; background: var(--peach); top: 14%; left: 6%; }
.element-2 { width: 120px; height: 120px; background: var(--mint); bottom: 10%; right: 18%; }
.element-3 { width: 150px; height: 150px; background: var(--sky); top: 36%; right: 42%; }

/* =============================
   Carousel (kept)
   ============================= */
.carousel-section { position: relative; background: var(--lavender); padding: 0 0 40px; overflow: hidden; border-top: var(--border) solid var(--ink); }
.carousel-background { position: absolute; inset: 0; z-index: 1; }
.abstract-shapes { position: relative; height: 100%; }
.shape { position: absolute; background: rgba(255,255,255,0.35); border-radius: 4px; }
.shape-1 { width: 60px; height: 20px; top: 14px; left: 10%; transform: rotate(45deg); }
.shape-2 { width: 40px; height: 15px; top: 18px; right: 22%; transform: rotate(-30deg); }
.shape-3 { width: 50px; height: 18px; top: 26px; right: 6%; transform: rotate(15deg); }
.carousel-container { position: relative; z-index: 2; width: 100%; overflow: hidden; }
.carousel-nav { background: #11131f; padding: 20px 0; display: flex; align-items: center; border: var(--border) solid var(--ink); animation: carousel-scroll 15s linear infinite; white-space: nowrap; width: max-content; }
.carousel-item { display: flex; align-items: center; gap: 8px; padding: 8px 16px; margin: 0 8px; flex-shrink: 0; }
.carousel-image { width: 90px; height: 44px; object-fit: cover; border-radius: 8px; border: var(--border) solid var(--ink); background: #fff; }
@keyframes carousel-scroll { 0% { transform: translateX(0);} 100% { transform: translateX(-33.33%);} }
.carousel-nav:hover { animation-play-state: paused; }

/* =============================
   Sections & Cards
   ============================= */
.services { padding: 70px 0; background: var(--bg); }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-size: 2.2rem; font-weight: 900; }
.section-header p { color: var(--ink-weak); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.service-card {
    background: var(--panel);
    border: var(--border) solid var(--ink);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: transform 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: var(--border) solid var(--ink); margin: 0 0 1rem; background: var(--lemon); }
.service-icon i { font-size: 1.6rem; color: var(--ink); }
.service-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.service-card p { color: var(--ink-weak); }

/* Alternating pastel card backgrounds */
.services-grid .service-card:nth-child(3n+1) { background: var(--peach); }
.services-grid .service-card:nth-child(3n+2) { background: var(--mint); }
.services-grid .service-card:nth-child(3n+3) { background: var(--sky); }

/* =============================
   Guapos Opt-In Section
   ============================= */
.guapos-section { padding: 70px 0; background: var(--lemon); border-top: var(--border) solid var(--ink); border-bottom: var(--border) solid var(--ink); }
.guapos-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.guapos-text h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; }
.guapos-text p { font-size: 1.05rem; color: var(--ink-weak); margin-bottom: 1.25rem; }
.guapos-features { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.guapos-features .feature-item { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.guapos-features .feature-item i { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; border: var(--border) solid var(--ink); color: var(--brand); }
.guapos-graphic { width: 320px; height: 320px; border-radius: 50%; border: var(--border) solid var(--ink); background: var(--sky); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.guapos-graphic i { font-size: 4rem; color: var(--ink); }

/* =============================
   Government Contracting
   ============================= */
.government-section { padding: 70px 0; background: var(--peach); border-top: var(--border) solid var(--ink); border-bottom: var(--border) solid var(--ink); }
.government-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.government-text h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; }
.government-text p { font-size: 1.05rem; color: var(--ink-weak); margin-bottom: 1.25rem; }
.government-features { display: flex; flex-direction: column; gap: 0.8rem; }
.feature-item { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.feature-item i { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #fff; border: var(--border) solid var(--ink); }
.government-graphic { width: 320px; height: 320px; border-radius: 50%; border: var(--border) solid var(--ink); background: var(--lavender); margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.government-graphic::before { content: "🏛️"; font-size: 4rem; }

/* =============================
   About
   ============================= */
.about { padding: 70px 0; background: var(--bg); }
.about-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center; }
.about-text h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; }
.about-text p { font-size: 1.05rem; color: var(--ink-weak); margin-bottom: 1.25rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-item { background: var(--lemon); border: var(--border) solid var(--ink); border-radius: 12px; padding: 1.2rem; text-align: center; }
.stat-item h3 { font-size: 2rem; font-weight: 900; }
.stat-item p { color: var(--ink-weak); font-weight: 700; }
.about-graphic { width: 340px; height: 240px; border-radius: 16px; border: var(--border) solid var(--ink); background: var(--mint); margin: 0 auto; position: relative; }
.about-graphic::before { content: "💡"; font-size: 3rem; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* =============================
   Founders
   ============================= */
.founders { padding: 70px 0; background: var(--mint); border-top: var(--border) solid var(--ink); }
.founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }
.founder-card {
    background: var(--panel);
    border: var(--border) solid var(--ink);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.15s ease;
}
.founder-card:hover { transform: translateY(-4px); }
.founder-image { flex-shrink: 0; }
.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--sky);
    border: var(--border) solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.founder-info { flex: 1; }
.founder-info h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.3rem; }
.founder-title { color: var(--brand); font-weight: 700; margin-bottom: 0.8rem; }
.founder-bio { color: var(--ink-weak); line-height: 1.6; margin-bottom: 1rem; }
.founder-links { display: flex; gap: 0.8rem; }
.founder-link {
    width: 40px;
    height: 40px;
    background: var(--lemon);
    color: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: var(--border) solid var(--ink);
    transition: transform 0.15s ease;
}
.founder-link:hover { transform: translateY(-2px); }

/* =============================
   Contact
   ============================= */
.contact { padding: 70px 0; background: var(--lavender); border-top: var(--border) solid var(--ink); }
.contact-content { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 0.8rem; }
.contact-item i { width: 48px; height: 48px; background: #fff; color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: var(--border) solid var(--ink); }
.contact-item h4 { font-weight: 900; margin-bottom: 0.2rem; }
.contact-item p { color: var(--ink-weak); }

.contact-form { background: #fff; padding: 1.6rem; border-radius: 14px; border: var(--border) solid var(--ink); }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.9rem; border: var(--border) solid var(--ink); border-radius: 10px; font-size: 1rem; background: var(--bg);
}
.form-group input:focus, .form-group textarea:focus { outline: none; background: #fff; }
.contact-form .btn { width: 100%; }

/* =============================
   Footer
   ============================= */
.footer { background: #11131f; color: #fff; padding: 60px 0 20px; border-top: var(--border) solid var(--ink); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3, .footer-section h4 { margin-bottom: 0.6rem; }
.footer-section p, .footer-section li { color: #d1d5db; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.4rem; }
.footer-section ul li a { color: #d1d5db; text-decoration: none; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { width: 40px; height: 40px; background: #2b2e44; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; border: var(--border) solid var(--ink); }
.footer-bottom { text-align: center; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.15); color: #9ca3af; }

/* =============================
   Responsive
   ============================= */
@media (max-width: 900px) {
    .hero-container, .about-content, .government-content, .contact-content, .guapos-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2.4rem; }
    .stats { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: 1fr; }
    .founder-card { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu, .nav-actions { display: none; }
    .carousel-nav { padding: 16px 0; }
}
