:root {
    --bg: #030814;
    --surface: #0a1327;
    --card: rgba(9, 12, 24, 0.95);
    --panel: rgba(255, 152, 0, 0.08);
    --accent: #ff9800;
    --accent-soft: #ffc477;
    --text: #f8f9ff;
    --muted: #b8bdcf;
    --border: rgba(255, 255, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

.page {
    min-height: 100vh;
    background: radial-gradient(circle at 20% -10%, rgba(255, 152, 0, 0.08), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(255, 152, 0, 0.06), transparent 40%),
        var(--bg);
}

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(3, 8, 20, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text);
}

.logo-img {
    height: 42px;
    width: 42px;
    object-fit: contain;
}

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

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 1.4rem;
}

.nav-links .blog-link {
    margin-left: auto;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--muted);
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
    border-color: var(--accent);
}

.header-actions {
    display: flex;
    gap: 0.6rem;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    color: #05060a;
    box-shadow: 0 14px 40px rgba(255, 152, 0, 0.25);
}

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

.btn.ghost {
    border: 1px solid rgba(255, 152, 0, 0.6);
    color: var(--accent-soft);
    background: transparent;
}

.btn.outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--text);
    background: transparent;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    display: block;
    border-radius: 1px;
}

main section {
    padding: 4rem 0;
}

.hero {
    padding-top: 3rem;
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    color: var(--muted);
    max-width: 48ch;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-micro {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--muted);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(2, 5, 12, 0.8);
    backdrop-filter: blur(18px);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.media-stack {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.media-main {
    grid-column: 1 / -1;
    border-radius: 1.1rem;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.media-sub {
    border-radius: 1rem;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 1px solid var(--border);
    align-self: end;
    justify-self: end;
}

.hero-panel {
    background: linear-gradient(180deg, rgba(255, 152, 0, 0.12), rgba(7, 10, 24, 0.9));
}

.hero-panel h3 {
    margin-top: 0.6rem;
    font-size: 1.45rem;
}

.hero-panel ul {
    margin: 1.4rem 0 0.3rem;
}

.hero-panel .panel-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: var(--muted);
}

.hero-panel .panel-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: var(--panel);
    color: var(--accent);
    font-size: 0.85rem;
}

.section-heading {
    text-align: left;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0.6rem 0 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: var(--muted);
}

.offer-grid,
.services-grid,
.about-grid,
.contact-grid {
    display: grid;
    gap: 1.75rem;
}

.offer-grid,
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-grid,
.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-grid .card,
.services-grid .card,
.contact-grid .card {
    min-height: 100%;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card ul li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted);
}

.card ul li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    left: 0;
    top: 0.7rem;
}

.service-list-title {
    margin: 1.2rem 0 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.service-card figure {
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.service-card figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card p {
    color: var(--muted);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-detail {
    display: grid;
    gap: 1rem;
}

.service-detail figure {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.65);
}

.service-detail figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 152, 0, 0.08);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.stat-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.stat-card p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.principle {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    min-height: 150px;
}

.principle strong {
    color: var(--accent-soft);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.support-heroes {
    margin-top: 2rem;
}

.support-heroes .chip {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}
.principles {
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.principles li {
    color: var(--muted);
    padding-left: 0;
}

.support h4 {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #ffffff;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    color: var(--muted);
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-card ul li {
    color: var(--muted);
}

.contact-card a {
    color: var(--accent-soft);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.75rem;
    padding: 0.85rem;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

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

.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0 3rem;
    text-align: center;
    color: var(--muted);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 1rem;
        background: rgba(3, 8, 20, 0.96);
        border: 1px solid var(--border);
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        display: none;
        border-radius: 1rem;
    }

    .nav-links.is-open {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-actions {
        flex-direction: column;
    }

    main section {
        padding: 3rem 0;
    }
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }
}
