
:root {
    --bg: #050816;
    --bg-alt: #0b1020;
    --primary: #00c4b3;
    --primary-soft: rgba(0, 196, 179, 0.12);
    --accent: #ffb547;
    --text: #f7f9fc;
    --muted: #a0aec0;
    --border: #1f2937;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #111827 0, #020617 40%, #000 100%);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 100% - 2.5rem);
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    padding: 4rem 0;
    background: radial-gradient(circle at top left, #111827 0, #020617 55%);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h1,
.section-header h2 {
    margin: 0 0 0.75rem;
}

.section-header p {
    margin: 0;
    color: var(--muted);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.90));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, var(--primary), #0ea5e9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Navigation */

.nav {
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
}

/* Hero */

.hero {
    padding: 4rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 1rem;
}

.hero-text p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.hero-meta span {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.9);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--primary), #0ea5e9);
    color: #020617;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    box-shadow: 0 12px 25px rgba(56, 189, 248, 0.18);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(56, 189, 248, 0.24);
}

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

.btn-outline:hover {
    background: rgba(15, 23, 42, 0.9);
}

.btn-small {
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
}

.btn-full {
    width: 100%;
}

/* Cards & grids */

.card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--border);
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
}

.card h2,
.card h3 {
    margin-top: 0;
}

.card-list {
    list-style: none;
    padding-left: 1rem;
    margin: 0.75rem 0 0;
    color: var(--muted);
}

.card-list li {
    margin-bottom: 0.35rem;
    position: relative;
}

.card-list li::before {
    content: "•";
    position: absolute;
    left: -0.9rem;
    color: var(--primary);
}

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

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

.section-cta {
    margin-top: 2rem;
    text-align: center;
}

.hero-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: radial-gradient(circle at top left, var(--primary-soft), #020617);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
}

.quote-form,
.contact-form {
    display: grid;
    gap: 0.75rem;
}

input,
select,
textarea {
    padding: 0.65rem 0.8rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.9);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
    color: #6b7280;
}

textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Badges */

.badge {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent);
}

/* Blog */

.blog-list {
    display: grid;
    gap: 1.5rem;
}

.text-link {
    font-size: 0.9rem;
    color: var(--primary);
}

.text-link:hover {
    text-decoration: underline;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem;
}

.contact-details h3 {
    margin-top: 1.5rem;
}

/* Dashboard */

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.table th,
.table td {
    padding: 0.4rem 0.3rem;
    border-bottom: 1px solid var(--border);
}

.table th {
    text-align: left;
    color: var(--muted);
    font-weight: 500;
}

.status {
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
}

.status-inprogress {
    background: rgba(56, 189, 248, 0.16);
    color: #38bdf8;
}

.status-planned {
    background: rgba(251, 191, 36, 0.14);
    color: #fbbf24;
}

/* Footer */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0 0.5rem;
    background: radial-gradient(circle at bottom, #020617 0, #000 55%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    font-size: 0.9rem;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
}

.site-footer p,
.site-footer ul {
    margin: 0.3rem 0 0;
    color: var(--muted);
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer li {
    margin-bottom: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 2rem;
    padding-top: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
    .hero-inner,
    .grid-3,
    .grid-2,
    .contact-grid,
    .dashboard-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3rem;
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding-inline: 0.25rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 2.8rem;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 0.75rem;
        border: 1px solid var(--border);
        min-width: 180px;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }
}
