:root {
    --bg: #05060a;
    --primary: #0a84ff;
    --accent: #7dd87d;
    --muted: #f4f6fb;
    --text: #12131a;
    --gray: #5a5d70;
    --border: #dfe3ee;
    --card-bg: #ffffff;
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.logo-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.logo-subtitle {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    font-weight: 500;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links .cta-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    border-radius: 999px;
    color: var(--primary);
}

.hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(140deg, rgba(10, 132, 255, 0.1), rgba(125, 216, 125, 0.12));
}

.hero.hero-image {
    background: linear-gradient(130deg, rgba(2, 6, 23, 0.92), rgba(10, 132, 255, 0.35)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=2000&q=80') center/cover;
    color: #f8fbff;
}

.hero.hero-image .hero-text {
    color: rgba(248, 251, 255, 0.9);
}

.hero.hero-image .eyebrow {
    color: rgba(248, 251, 255, 0.7);
}

.hero.hero-image .label {
    color: rgba(248, 251, 255, 0.8);
}

.hero.hero-image .btn.ghost {
    color: #f8fbff;
    border-color: rgba(248, 251, 255, 0.6);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.hero-text {
    font-size: 1.1rem;
    color: #1f2333;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 15px 35px rgba(10, 132, 255, 0.25);
}

.btn.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.stat {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.label {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.hero-card ul {
    padding-left: 1.25rem;
    color: var(--gray);
}

.hero-card .note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.slides {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    padding: 3rem;
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(5, 6, 10, 0.4));
}

.slide-content {
    position: relative;
    z-index: 1;
}

.slide h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.slide p {
    margin: 0 0 0.75rem;
}

.slide-details {
    position: relative;
    z-index: 1;
    background: rgba(7, 11, 30, 0.7);
    border-radius: 16px;
    padding: 1.5rem;
}

.slider-nav {
    position: absolute;
    inset: auto 1rem 1rem auto;
    display: flex;
    gap: 0.5rem;
}

.slider-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
}

.slider-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.slider-dots button.active {
    background: #fff;
}

.section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.75rem;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.card ul {
    padding-left: 1.2rem;
    color: var(--gray);
}

.muted {
    background: var(--muted);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.industry-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    min-height: 200px;
}

.capability-grid,
.quality-grid,
.contact-grid,
.highlight-grid,
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.accent-card {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.35), rgba(2, 6, 23, 0.92));
    border-radius: 18px;
    padding: 2rem;
    color: #f8fbff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 25px 50px rgba(2, 6, 23, 0.15);
}

.accent-card h3 {
    margin: 0.3rem 0 0.75rem;
}

.accent-card p {
    color: rgba(248, 251, 255, 0.85);
}

.checklist {
    padding-left: 1.25rem;
    color: var(--gray);
}

.capability-panel,
.quality-panel,
.content-panel {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.capability-panel dl {
    margin: 0;
}

.capability-panel dt {
    font-weight: 600;
    color: var(--gray);
}

.capability-panel dd {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.timeline {
    background: linear-gradient(100deg, rgba(10, 132, 255, 0.08), rgba(125, 216, 125, 0.08));
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.timeline-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.timeline-list .step {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.09), rgba(7, 9, 16, 0.85)), url('https://images.unsplash.com/photo-1477244075012-5cc28286e465?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: #fff;
}

.page-hero p {
    max-width: 640px;
}

.page-subnav {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-subnav a {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.page-content {
    padding: 4rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-list li::before {
    content: "•";
    color: var(--primary);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.data-table th,
.data-table td {
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    text-align: left;
}

.data-table th {
    background: var(--muted);
}

.content-block {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.highlight {
    background: var(--bg);
    color: #fff;
}

.highlight-grid .metrics {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.highlight .stat {
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.gallery figure {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery figcaption {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--gray);
    flex: 1;
}

.contact {
    background: #0f172a;
    color: #fff;
}

.contact p,
.contact li,
.contact label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.contact-details li {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 20px;
    display: grid;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    background: #fff;
}

.site-footer {
    background: #020409;
    color: rgba(255, 255, 255, 0.72);
    padding: 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.logo-footer {
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.map {
    width: 100%;
    border: none;
    min-height: 320px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
    .slide {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
    }

    .hero-actions {
        width: 100%;
    }

    .timeline-list li {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        gap: 1rem;
    }
}

