
:root {
    --red: #ed111b;
    --black: #050505;
    --dark: #0b0b0d;
    --soft-black: #111114;
    --white: #ffffff;
    --gray: #f4f4f4;
    --text: #161616;
    --muted: #6f6f6f;
    --line: rgba(255,255,255,.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}

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

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

.container {
    width: min(1440px, calc(100% - 56px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #030303;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand img {
    width: 250px;
    max-height: 58px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
}

.site-nav a {
    opacity: .95;
    padding: 28px 0;
    border-bottom: 3px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.login-btn {
    background: var(--red);
    padding: 14px 20px !important;
    border-bottom: 0 !important;
    border-radius: 2px;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
}

.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.55) 35%, rgba(0,0,0,.20));
}

.hero-content {
    position: relative;
    max-width: 620px;
    padding: 76px 0;
}

.kicker {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 12px;
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: .95;
    font-weight: 950;
}

h1 {
    font-size: clamp(48px, 7vw, 96px);
}

h1 span,
h2 span,
.red { color: var(--red); }

.hero p {
    font-size: 19px;
    line-height: 1.55;
    max-width: 580px;
    margin: 22px 0 30px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn.primary {
    background: var(--red);
    border-color: var(--red);
}

.btn.dark {
    background: #050505;
    border-color: #050505;
}

.trust-strip {
    background: #fff;
    color: #111;
    padding: 30px 0;
    border-bottom: 1px solid #e7e7e7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.trust-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 14px;
    align-items: start;
    border-right: 1px solid #ddd;
    padding-right: 18px;
}

.trust-item:last-child { border-right: 0; }

.icon {
    width: 46px;
    height: 46px;
    border: 3px solid var(--red);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 23px;
    font-weight: 900;
}

.trust-item h3 {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.trust-item p {
    margin: 0;
    color: #333;
    line-height: 1.45;
    font-size: 14px;
}

.section-dark {
    background: linear-gradient(135deg, #050505, #101010);
    color: #fff;
    padding: 64px 0;
}

.section-light {
    background: #fff;
    color: #111;
    padding: 76px 0;
}

.section-gray {
    background: #f5f5f5;
    padding: 76px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 38px;
}

.split-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
}

.split-copy h2 {
    font-size: 34px;
    line-height: 1.05;
    margin-bottom: 16px;
}

.split-copy p {
    line-height: 1.7;
    color: #ddd;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.industry-card,
.project-card {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,.12);
}

.industry-card img,
.project-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.industry-card h3,
.project-card h3 {
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    background: rgba(0,0,0,.8);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 255px;
    padding: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 7px;
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.service-icon {
    font-size: 42px;
    color: var(--red);
    margin-bottom: 22px;
}

.service-card h3 {
    color: #111;
    font-size: 17px;
    margin-bottom: 12px;
}

.service-card p {
    color: #333;
    line-height: 1.55;
    margin: 0 0 20px;
}

.learn {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}

.page-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.90), rgba(0,0,0,.35));
}

.page-hero .container {
    position: relative;
    padding-bottom: 70px;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
}

.page-hero p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.6;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.two-col img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.20);
}

.copy p,
.copy li {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
}

.copy ul {
    padding-left: 18px;
}

.copy h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.gallery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.gallery-card {
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.gallery-card img {
    height: 270px;
    width: 100%;
    object-fit: cover;
}

.gallery-card div {
    padding: 22px;
}

.gallery-card h2 {
    font-size: 21px;
    margin-bottom: 10px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.photo-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

.form-card,
.login-card {
    background: #fff;
    padding: 34px;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(0,0,0,.14);
}

input,
textarea,
select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d0d0d0;
    margin-bottom: 14px;
    font-size: 15px;
}

textarea { min-height: 150px; }

.site-footer {
    background: #050505;
    color: #fff;
}

.footer-cta {
    background: var(--red);
    padding: 22px 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-main {
    padding: 46px 0 28px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
}

.footer-logo img { width: 250px; margin-bottom: 18px; }

.footer-main h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-main a,
.footer-main p {
    display: block;
    color: #ccc;
    margin: 0 0 9px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
    color: #aaa;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .site-nav { display: none; }
    .menu-toggle { display: block; }
    .site-nav.open {
        display: flex;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #050505;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
    }
    .trust-grid,
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid,
    .gallery-cards { grid-template-columns: repeat(2, 1fr); }
    .split-layout,
    .two-col,
    .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 30px, 1440px); }
    .brand img { width: 190px; }
    .trust-grid,
    .service-grid,
    .industry-grid,
    .gallery-cards,
    .photo-grid { grid-template-columns: 1fr; }
    .hero { min-height: 560px; }
    .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}
