:root {
    --primary-color: #0c4a6e;
    --primary-light: #e0f2fe;
    --text-color: #0f172a;
    --bg-color: #f9fafb;
    --max-width: 1100px;
    --radius-lg: 16px;
    --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-color);
    background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 55%);
}

header {
    background: linear-gradient(135deg, #0f172a, #0c4a6e);
    color: white;
    padding: 1.25rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.4);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

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

.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.nav-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-title-main {
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-sub {
    font-size: 0.75rem;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: #e0f2fe;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    backdrop-filter: blur(10px);
    background-color: rgba(15, 23, 42, 0.15);
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-links a:hover {
    background-color: rgba(15, 23, 42, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.5);
}

main {
    max-width: var(--max-width);
    margin: 2.5rem auto 3rem;
    padding: 0 1.5rem 2rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(8, 47, 73, 0.06);
    color: #0369a1;
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
}

.hero-pill-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

.hero h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    margin: 0.4rem 0 0.6rem;
    letter-spacing: 0.01em;
}

.hero h1 span {
    color: #0c4a6e;
}

.hero-slogan {
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.hero-text {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
}

.hero-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid rgba(129, 140, 248, 0.4);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-primary {
    background: #0c4a6e;
    color: white;
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary:hover {
    background: #075985;
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.btn-outline {
    background: transparent;
    color: #0c4a6e;
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-outline:hover {
    background: rgba(219, 234, 254, 0.7);
    border-color: #0ea5e9;
}

.hero-note {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 220px;
}

.hero-visual-card {
    background: #0b1120;
    border-radius: 24px;
    padding: 1.4rem 1.5rem;
    color: #e5e7eb;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-visual-badge {
    font-size: 0.75rem;
    color: #a5b4fc;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-visual-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-visual-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 0.82rem;
    color: #cbd5f5;
}

.hero-visual-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.25rem;
}

.hero-visual-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
    margin-top: 0.35rem;
}

.hero-check {
    font-size: 0.78rem;
    color: #a5b4fc;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(129, 140, 248, 0.16);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 2px solid #a5b4fc;
}

.hero-visual-accent {
    position: absolute;
    right: -26px;
    top: 24px;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    border: 1px dashed rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #bfdbfe;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.55), transparent 65%);
}

section {
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    margin: 0 0 0.3rem;
    color: #0f172a;
}

.section-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

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

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.15rem 1.25rem 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
}

.service-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #0369a1;
    margin-bottom: 0.15rem;
}

.service-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: #0f172a;
}

.service-desc {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.45;
    margin-bottom: 0.35rem;
}

.service-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

.service-icon {
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    font-size: 1.4rem;
    opacity: 0.09;
}

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

.gallery-card {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    border-radius: 18px;
    padding: 1rem;
    border: 1px dashed rgba(148, 163, 184, 0.8);
    color: #1e3a8a;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-card h3 {
    font-size: 0.95rem;
    margin: 0;
}

.gallery-card p {
    margin: 0;
    font-size: 0.83rem;
    color: #475569;
}

.gallery-pill {
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: white;
    border: 1px solid rgba(129, 140, 248, 0.6);
    align-self: flex-start;
}

.contact-strip {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    align-items: center;
    font-size: 0.85rem;
    box-shadow: 0 12px 26px rgba(148, 163, 184, 0.25);
}

.contact-label {
    font-weight: 600;
    color: #0f172a;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0c4a6e;
}

.contact-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
}

footer {
    padding: 1.75rem 1.5rem 2rem;
    background: #0b1120;
    color: #9ca3af;
    font-size: 0.78rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-weight: 500;
    color: #e5e7eb;
}

.footer-slogan {
    color: #e5e7eb;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-links span {
    opacity: 0.8;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        padding: 1.6rem 1.5rem;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    header {
        padding-inline: 1rem;
    }

    main {
        padding-inline: 1rem;
        margin-top: 1.75rem;
    }

    .nav-inner {
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-sub {
        display: none;
    }

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

    .services-grid,
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}