/* =========================
   BASE RESET
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0f172a url('/pages/shared/assets/images/backgrounds/tech-meeting-flatlay.jpg') center/cover fixed;
    min-height: 100vh;
    padding-top: 100px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: -1;
}

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

section {
    padding: 4rem 0;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.highlight {
    color: #10b981;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: #10b981;
    color: #fff;
}

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

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

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

.hero p {
    max-width: 700px;
    margin: auto;
}

/* =========================
   SECTIONS
   ========================= */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* =========================
   CARDS
   ========================= */
.card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

/* =========================
   GRID LAYOUTS
   ========================= */
.grid {
    display: grid;
    gap: 1.5rem;
}

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

/* =========================
   FOOTER
   ========================= */
footer {
    background: rgba(0,0,0,0.3);
    padding: 3rem 0;
    margin-top: 3rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

footer a:hover {
    color: #10b981;
}

/* =========================
   UTILITIES
   ========================= */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero .btn {
        width: 100%;
        justify-content: center;
    }

    .hero > .container > div.mt-2 {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.6rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.65rem 1.1rem;
        font-size: 0.875rem;
    }
}