/* DEPPL — Premium Industrial Theme */

:root {
    --steel-950: #0a0e14;
    --steel-900: #121820;
    --steel-800: #1a2230;
    --steel-700: #243044;
    --steel-600: #3a4a5c;
    --steel-500: #5a6a7a;
    --steel-400: #8896a6;
    --steel-300: #b0bac4;
    --steel-200: #d8dee4;
    --steel-100: #eef1f4;
    --steel-50: #f7f8fa;

    --accent: #c8922a;
    --accent-light: #e0aa45;
    --accent-dark: #a67520;

    --white: #ffffff;
    --text: #2a3441;
    --text-muted: #5a6878;
    --border: #dde2e8;
    --border-dark: rgba(255,255,255,0.08);

    --shadow-sm: 0 2px 8px rgba(10,14,20,0.06);
    --shadow: 0 8px 32px rgba(10,14,20,0.10);
    --shadow-lg: 0 16px 48px rgba(10,14,20,0.16);

    --radius: 6px;
    --radius-lg: 12px;
    --container: 1240px;
    --header-h: 76px;
    --font: 'DM Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--steel-800);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--accent); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top bar */
.top-bar {
    background: var(--steel-950);
    color: var(--steel-300);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-dark);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar__left, .top-bar__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.top-bar__divider { opacity: 0.3; }

.top-bar__phone, .top-bar__email {
    color: var(--white);
    font-weight: 500;
}

.top-bar__phone:hover, .top-bar__email:hover { color: var(--accent-light); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.is-scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.logo__img { height: 75px; width: auto; }

.logo__text { display: flex; flex-direction: column; }

.logo__name {
    font-family: var(--font);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--steel-900);
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.logo__tagline {
    font-size: 0.6875rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav__list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.main-nav__link {
    font-family: var(--font);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--steel-700);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.main-nav__link:hover,
.main-nav__link.is-active {
    color: var(--steel-900);
    background: var(--steel-50);
}

.main-nav__link.is-active {
    color: var(--accent-dark);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--steel-800);
    transition: var(--transition);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--steel-800);
    color: var(--white);
    border-color: var(--steel-800);
}

.btn--primary:hover {
    background: var(--steel-700);
    border-color: var(--steel-700);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn--secondary {
    background: transparent;
    color: var(--steel-800);
    border-color: var(--steel-800);
}

.btn--secondary:hover {
    background: var(--steel-800);
    color: var(--white);
}

.btn--accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn--accent:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200,146,42,0.35);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--steel-900);
    border-color: var(--white);
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--lg { padding: 1rem 2rem; font-size: 0.9375rem; }
.btn--full { width: 100%; }

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--steel-950);
    color: var(--white);
    overflow: hidden;
}

.hero__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200,146,42,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(36,48,68,0.8) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,14,20,0.3) 0%, rgba(10,14,20,0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 5rem 1rem 4rem;
    max-width: 820px;
}

.hero__welcome {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-light);
    margin-bottom: 1.25rem;
}

.hero__title {
    font-family: var(--font);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    color: var(--steel-300);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.hero__tagline {
    font-size: 0.875rem;
    color: var(--steel-400);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--steel-500);
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Page hero */
.page-hero {
    background: var(--steel-900);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(200,146,42,0.1) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero__title {
    font-family: var(--font);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.page-hero__subtitle {
    font-size: 1.0625rem;
    color: var(--steel-300);
    max-width: 640px;
    line-height: 1.6;
}

/* Sections */
.section { padding: 5rem 0; }

.section--alt { background: var(--steel-50); }

.section--dark {
    background:
            radial-gradient(ellipse at 20% 50%,
                rgba(200, 146, 42, 0.12) 0%,
                transparent 50%),
            radial-gradient(ellipse at 80% 20%,
                rgba(36, 48, 68, 0.8) 0%,
                transparent 50%),
            linear-gradient(180deg,
                rgba(10, 14, 20, 0.3) 0%,
                rgba(10, 14, 20, 0.85) 100%),
            var(--steel-900);
    color: var(--white);
}

.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin-left: auto; margin-right: auto; }

.section-eyebrow {
    display: inline-block;
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 0.875rem;
}

.section-eyebrow--light { color: var(--accent-light); }

.section-title {
    font-family: var(--font);
    font-size: clamp(1.625rem, 3vw, 2.375rem);
    font-weight: 800;
    color: var(--steel-900);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title--light { color: var(--white); }

.section-lead {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-lead--light { color: var(--steel-300); }

.section-actions { text-align: center; margin-top: 3rem; }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-block p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Mission / Vision cards */
.mission-vision-grid {
    display: grid;
    gap: 1.25rem;
}

.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow var(--transition);
}

.mission-card:hover { box-shadow: var(--shadow); }

.mission-card__title {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-dark);
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    background: rgba(200,146,42,0.08);
    border-color: rgba(200,146,42,0.3);
    transform: translateY(-4px);
}

.value-card__icon {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.value-card__title {
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

/* Service cards */
.card-grid { display: grid; gap: 1.25rem; }

.card-grid--services {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card-grid--features {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--steel-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    color: inherit;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
    font-family: var(--font);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--steel-100);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card__title {
    font-family: var(--font);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--steel-900);
    margin-bottom: 0.625rem;
}

.service-card__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.service-card__link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--steel-800);
}

/* Why choose */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.875rem;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.125rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text);
    transition: all var(--transition);
}

.why-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.why-card__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-top: 2px;
}

.section--dark .why-card {
    background: rgba(255,255,255,0.04);
    border-color: var(--border-dark);
    color: var(--steel-200);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item__value {
    display: block;
    font-family: var(--font);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.section--stats:not(.section--dark) .stat-item__value { color: var(--steel-900); }

.stat-item__value sup {
    font-size: 0.45em;
    vertical-align: super;
    color: var(--accent);
}

.stat-item__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--steel-400);
    margin-top: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.section--stats:not(.section--dark) .stat-item__label { color: var(--text-muted); }

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.industry-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.industry-card:hover::after { transform: scaleX(1); }

.industry-card h3 {
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--steel-800);
}

/* Clients */
.clients-grid--named {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.client-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    border-color: var(--steel-700);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.client-card__name {
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--steel-800);
}

.client-card__sector {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

/* Process timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}

.process-step {
    padding: 2rem 1.5rem;
    position: relative;
    text-align: center;
}

.process-step__marker {
    width: 52px;
    height: 52px;
    background: var(--steel-900);
    color: var(--accent-light);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 800;
    font-size: 0.875rem;
    margin: 0 auto 1.25rem;
    transition: all var(--transition);
}

.process-step:hover .process-step__marker {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.08);
}

.process-step__title {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--steel-900);
    margin-bottom: 0.625rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Infrastructure highlights */
.infra-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.infra-highlight {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.infra-highlight:hover {
    background: rgba(200,146,42,0.08);
    border-color: rgba(200,146,42,0.25);
}

.infra-highlight__value {
    display: block;
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.infra-highlight__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--steel-400);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Compliance */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.875rem;
}

.compliance-grid--compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.compliance-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--steel-800);
    transition: all var(--transition);
}

.compliance-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.compliance-card__icon {
    color: var(--accent);
    font-weight: 700;
}

.compliance-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-dark);
    border-radius: 999px;
    color: var(--steel-300);
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.location-card__type {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.location-card__city {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--steel-900);
    margin-bottom: 0.5rem;
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* Infrastructure list */
.infra-list { display: flex; flex-direction: column; gap: 1rem; }

.infra-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
}

.section--dark .infra-item {
    background: rgba(255,255,255,0.03);
    border-color: var(--border-dark);
}

.infra-item:hover { box-shadow: var(--shadow-sm); }

.infra-item__num {
    flex-shrink: 0;
    font-family: var(--font);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.6;
    line-height: 1;
}

.infra-item__title {
    font-family: var(--font);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--steel-900);
    margin-bottom: 0.375rem;
}

.section--dark .infra-item__title { color: var(--white); }

.infra-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.section--dark .infra-item p { color: var(--steel-400); }

/* Capabilities */
.capabilities-list { display: grid; gap: 0; }

.capability-item {
    border-left: 3px solid var(--accent);
    padding: 1.25rem 0 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.capability-item:last-child { border-bottom: none; }

.capability-item__title {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--steel-900);
    margin-bottom: 0.375rem;
}

.capability-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* Organization */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.org-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.org-card:hover { box-shadow: var(--shadow-sm); border-color: var(--accent); }

.org-card__value {
    display: block;
    font-family: var(--font);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--steel-900);
}

.org-card__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

/* Contact panel */
.contact-panel {
    background: var(--steel-900);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200,146,42,0.08) 0%, transparent 60%);
}

.contact-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-panel__title {
    font-family: var(--font);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-panel__text {
    color: var(--steel-300);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.contact-panel__items { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-panel__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.contact-panel__item:hover {
    background: rgba(200,146,42,0.06);
    border-color: rgba(200,146,42,0.2);
}

.contact-panel__icon { color: var(--accent-light); flex-shrink: 0; }

.contact-panel__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--steel-500);
    margin-bottom: 0.25rem;
}

.contact-panel__item p,
.contact-panel__item a {
    color: var(--white);
    font-size: 0.9375rem;
}

.contact-panel__item a:hover { color: var(--accent-light); }

/* CTA Banner */
.cta-banner {
    position: relative;
    background: var(--steel-950);
    color: var(--white);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(200,146,42,0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--steel-950) 0%, var(--steel-800) 100%);
}

.cta-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-family: var(--font);
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800;
    max-width: 560px;
    line-height: 1.2;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Contact page */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: start;
}

.contact-details__list {
    list-style: none;
    margin-top: 1.5rem;
}

.contact-details__list li { margin-bottom: 1.25rem; }

.contact-details__list strong {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.contact-details__list a,
.contact-details__list span {
    display: block;
    color: var(--steel-800);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-details__list a:hover { color: var(--accent); }

.contact-compliance { margin-top: 2rem; }

.contact-compliance strong {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.contact-form-wrap {
    background: var(--steel-50);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
}

.contact-form__heading {
    font-family: var(--font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--steel-900);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.125rem; }

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--steel-800);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.form-group--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.875rem;
}

.form-group--checkbox input { width: auto; margin-top: 0.2rem; }

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
.site-footer {
    background: var(--steel-950);
    color: var(--steel-300);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.footer-industry {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer-est {
    font-size: 0.75rem;
    color: var(--steel-500);
}

.footer-heading {
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.125rem;
}

.footer-links { list-style: none; }

.footer-links a {
    color: var(--steel-400);
    font-size: 0.875rem;
    display: block;
    padding: 0.3rem 0;
    transition: all var(--transition);
}

.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-contact { list-style: none; }

.footer-contact li { margin-bottom: 1rem; }

.footer-contact__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel-500);
    margin-bottom: 0.25rem;
}

.footer-contact a,
.footer-contact span {
    font-size: 0.8125rem;
    color: var(--steel-300);
    display: block;
    line-height: 1.5;
}

.footer-contact a:hover { color: var(--accent-light); }

.footer-compliance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--steel-500);
}

.footer-website {
    color: var(--accent-light) !important;
    font-weight: 600;
}

.footer-website:hover { color: var(--white) !important; }

/* Responsive */
@media (max-width: 1024px) {
    .split-layout,
    .contact-panel__grid,
    .contact-page-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .logo__text { display: none; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        gap: 0.75rem;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav__list {
        flex-direction: column;
        gap: 0;
    }

    .main-nav__link {
        display: block;
        padding: 0.875rem 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .nav-cta { width: 100%; }

    .hero { min-height: 85vh; }
    .hero__scroll { display: none; }

    .section { padding: 3.5rem 0; }

    .form-row { grid-template-columns: 1fr; }

    .infra-item { flex-direction: column; gap: 0.5rem; }

    .top-bar__left { display: none; }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__actions { justify-content: center; }

    .process-timeline { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
}
