* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, Helvetica, sans-serif; }
body { background: #000; color: #fff; overflow-x: hidden; }

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;
    background: #d9d9d9;
    border-radius: 999px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
header img { height: 30px; }
nav a {
    color: #000;
    text-decoration: none;
    margin-left: 18px;
    font-size: 12px;
    font-weight: 500;
}

main { padding-top: 78px; }

/* ================= FIRST SCREEN ================= */
.first-screen { height: calc(175vh - 78px); }
.half {
    position: relative;
    height: 50%;
    overflow: hidden;
}
.bgVideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: -1;
}

.s1 .content { padding: 38px 100px; height: 100%; position: relative; }
.s1 h1 {
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 800;
}
.delivered {
    position: absolute;
    right: 80px;
    top: 65%;
    transform: translateY(-10%);
    font-size: clamp(36px, 6.2vw, 78px);
    font-weight: 800;
}
.dot { color: #e10600; }
.scroll {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 11px;
    opacity: .75;
    letter-spacing: 2px;
}

.s2 .content {
    padding: 34px 100px;
    height: 100%;
    display: flex;
    align-items: flex-start;
}
.s2 p {
    max-width: 350px;
    font-size: clamp(18px, 3.1vw, 34px);
    line-height: 1.18;
}

/* ================= OUR APPROACH ================= */
.approach {
    padding: 20px 18px 25px;
    background: #000;
}
.approach-inner {
    max-width: 980px;
    margin: 0 auto;
}
.approach-top {
    text-align: center;
    margin-bottom: 32px;
}
.approach-kicker {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 10px;
}
.approach-title {
    font-size: clamp(18px, 2.8vw, 26px);
    font-weight: 700;
}
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.card {
    border-radius: 18px;
    overflow: hidden;
    min-height: 220px;
    border: 1px solid rgba(255,255,255,.07);
}
.card.red {
    background: #e10600;
    display: grid;
    place-items: center;
    padding: 18px;
}
.card.white {
    background: #f2f2f2;
    color: #111;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.iconImg {
    max-width: 78%;
    max-height: 78%;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.2));
}
.label {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .55;
}
.copy {
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    max-width: 52ch;
}
@media (max-width: 720px) {
    .grid { grid-template-columns: 1fr; }
}

/* ================= FOOTER ================= */
.footer {
    background: #000;
    padding: 0 18px 40px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 36px 40px;
    color: #111;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
}
.footer-left h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-left .dot { color: #e10600; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e10600;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-nav a {
    display: block;
    font-size: 12px;
    color: #111;
    text-decoration: none;
    margin-bottom: 6px;
    opacity: 0.8;
}
.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.footer-logo img {
    height: 30px;
    opacity: 0.9;
}
@media (max-width: 720px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-right { align-items: flex-start; gap: 20px; }
}
/* ================= ABOUT PAGE ================= */
.about-page {
    padding: 110px 18px 40px; /* header space + page padding */
    background: #000;
}

.about-shell {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255,255,255,.08);
}

/* HERO */
.about-hero {
    position: relative;
    background: #070707;
    padding: 26px 22px 16px;
    border-bottom: 10px solid #000;
}

.about-hero-top {
    text-align: center;
    margin-bottom: 12px;
}

.about-kicker {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 10px;
}

.about-title {
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-title .dot {
    color: #e10600;
}

.about-hero-imgwrap {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(900px 240px at 50% 40%, rgba(255,255,255,.12), rgba(0,0,0,0) 60%);
}

.about-hero-imgwrap img {
    width: 100%;
    height: clamp(210px, 35vw, 360px);
    object-fit: cover;
    display: block;
    filter: contrast(1.1);
}

/* BODY RED PANEL */
.about-body {
    position: relative;
    background: #e10600;
    padding: 28px 26px;
    min-height: 280px;
}

/* Decorative arcs (left & right) */
.about-arc {
    position: absolute;
    top: 50px;
    height: 80%;
    width: 210px;
    pointer-events: none;
    opacity: 0.75;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,.28));
}

.about-arc.left {
    left: 35px;
}
.about-arc.right {
    left: 120px;
}

.about-arc img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.about-arc-dot{
    position: absolute;
    left: 85.5%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;    /* white dot */
}
.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 26px;
    align-items: start;
    left: 8%;
    margin-top: 4%;
}

.about-heading {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.about-copy {
    color: rgba(255,255,255,.92);
    font-size: 14px;
    line-height: 1.7;
    max-width: 78ch;
}

.about-copy p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .about-arc {
        width: 160px;
        opacity: 0.22;
    }
    .about-body {
        padding: 22px 18px;
    }
}
/* ================= ABOUT – OUR HEROES (FIXED) ================= */
.about-heroes{
    padding: 40px 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.about-heroes-top{
    text-align:center;
    margin-bottom: 18px;
}

.about-heroes-kicker{
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 8px;
}

.about-heroes-title{
    font-size: clamp(18px, 2.6vw, 26px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* ✅ IMPORTANT: square grid like your design */
/* ===== OUR HEROES (FORCE EXACT LAYOUT LIKE YOUR IMAGE) ===== */

.about-heroes-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* ✅ 4 columns */
    gap: 12px;
    grid-auto-flow: row dense; /* fills gaps nicely */
    align-items: start;        /* prevents stretching */
}

/* ✅ all images are perfect squares */
.hero-card{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #3a3a3a;
    border: 1px solid rgba(255,255,255,.06);
    aspect-ratio: 1 / 1;       /* square */
}

/* red dot */
.hero-card::after{
    content:'';
    position:absolute;
    bottom:8px;
    right:8px;
    width:10px;
    height:10px;
    background:#e10600;
    border-radius:50%;
    z-index: 3;
}

.hero-card img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: center;
    display:block;
    filter: grayscale(100%) contrast(1.05);
}

/* ✅ info card is 2 columns wide but SAME HEIGHT as 1 square */
.hero-card.info{
    background:#e10600;
    color:#fff;
    padding: 18px 20px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap: 12px;

    grid-column: span 2;  /* wide */
    aspect-ratio: 2 / 1;  /* same height as square */
}

.hero-card.info::after{ display:none; }

/* ✅ FIXED POSITION like your image (right side, lower row) */
@media (min-width: 901px){
    .hero-info-card{
        grid-column: 3 / span 2;  /* columns 3-4 (right side) */
        grid-row: 3;              /* put it in row 3 */
    }
}

/* text sizing like your design */
.hero-info-title{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}
.hero-info-text{
    font-size: 12px;
    line-height: 1.6;
    opacity:.95;
    max-width: 55ch;
}

.hero-info-cta{
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    display:flex;
    align-items:center;
    justify-content: flex-end;
    gap: 10px;
}

.hero-info-cta .arrow{
    width:20px;
    height:20px;
    border-radius:50%;
    background:#fff;
    color:#e10600;
    display:grid;
    place-items:center;
    font-size:12px;
}

/* responsive */
@media (max-width: 900px){
    .about-heroes-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-info-card{  grid-column: 3 / span 2; grid-row: auto; }
    .hero-card.info{ aspect-ratio: auto; }
}

/* ================= PRODUCTS PAGE ================= */
.products-page{
    padding: 110px 18px 60px; /* space for fixed header */
    background:#000;
}

.products-shell{
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO SECTION */
.products-hero{
    background: #080808;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 26px 22px 18px;
    overflow: hidden;
}

.products-hero-top{
    text-align:center;
    margin-bottom: 18px;
}

.products-kicker{
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 10px;
}

.products-title{
    font-size: clamp(22px, 3.2vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.products-title .dot{
    color:#e10600;
}

.products-hero-art{
    display:flex;
    justify-content:center;
    padding: 6px 0 8px;
}

.products-hero-art img{
    width: 100%;
    max-width: 860px;
    height: auto;
    display:block;
    filter: contrast(1.05);
}

/* SECOND SECTION */
.products-grid-wrap{
    margin-top: 16px;
    background: #0a0a0a;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    padding: 22px 22px 26px;
}

.products-grid-top{
    text-align:center;
    margin-bottom: 20px;
}

.products-subtitle{
    font-size: clamp(18px, 2.6vw, 30px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

/* cards grid */
.products-grid{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

/* card style like your screenshot */
.p-card{
    background: #5b5b5b;
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,.06);
    min-height: 175px;
}

.p-card h3{
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.p-card p{
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,.75);
}

/* red dots between columns (centered vertically between rows) */
.grid-dot{
    position:absolute;
    width:7px;
    height:7px;
    background:#e10600;
    border-radius:50%;
    bottom: calc(50% - 3px); /* between two rows */
    z-index: 5;
}

/* dot between col 1 & 2 */
.grid-dot.d1{
    left: calc(33.333% - 4px);
}

/* dot between col 2 & 3 */
.grid-dot.d2{
    left: calc(66.666% - 4px);
}

/* responsive */
@media (max-width: 950px){
    .products-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    .grid-dot{ display:none; } /* hide dots on mobile (layout changes) */
}

@media (max-width: 560px){
    .products-grid{ grid-template-columns: 1fr; }
}

/* ================= CONTACT PAGE ================= */
.contact-page{
    padding: 110px 18px 60px;  /* space for fixed header */
    background:#000;
}

.contact-shell{
    max-width: 1200px;
    margin: 0 auto;
}

/* TOP CARD */
.contact-top-card{
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 26px 28px 28px;
    overflow: hidden;
}

.contact-kicker{
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 12px;
}

.contact-title{
    font-size: clamp(24px, 3.6vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 22px;
}

.dot{ color:#e10600; }

/* FORM */
.contact-form{
    margin-top: 6px;
}

.contact-row{
    display:grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.field label{
    display:block;
    font-size: 11px;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
}

.field input{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding: 10px 0 12px;
    color: #fff;
    outline: none;
    font-size: 12px;
}

.field input:focus{
    border-bottom-color: rgba(255,255,255,.6);
}

.field.message{
    margin-top: 6px;
    margin-bottom: 22px;
}

.field.message input{
    padding: 10px 0 12px;
}

/* BUTTON */
.contact-btn{
    background: #e10600;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 700;
    display:inline-flex;
    align-items:center;
    gap: 10px;
    cursor:pointer;
}

.contact-btn .arrow{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display:grid;
    place-items:center;
}

.contact-btn:hover{
    filter: brightness(1.03);
}

/* BOTTOM CARD */
.contact-bottom-card{
    margin-top: 14px;
    background: #5b5b5b;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.06);
    padding: 75px 28px;
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.contact-info-left{
    margin-left: 50px;
}

.contact-info-kicker{
    font-size: 16px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .85;
    margin-bottom: 12px;
    color: rgba(255,255,255,.9);
}

.contact-info-title{
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.4;
    margin-top: 30px;
    color: #fff;
}

/* right columns */
.contact-info-right{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-content: start;
}

.info-title{
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.info-value{
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
    margin-bottom: 12px;
}
.info-muted-text{
    margin-top: 25px;
}
.info-muted{
    font-size: 11px;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}

/* responsive */
@media (max-width: 900px){
    .contact-row{ grid-template-columns: 1fr; }
    .contact-bottom-card{ grid-template-columns: 1fr; }
    .contact-info-right{ grid-template-columns: 1fr; }
}

/* ================= SERVICES PAGE ================= */
.services-page{
    padding: 75px 18px 60px;
    background:#000;
}

.services-shell{
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO */
.services-hero{
    background:#0b0b0b;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 22px 22px 16px;
    overflow:hidden;
}

.services-hero-top{
    text-align:center;
    margin-bottom: 14px;
}

.services-kicker{
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 10px;
}

.services-title{
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.dot{ color:#e10600; }

.services-hero-art{
    display:flex;
    justify-content:center;
    padding-top: 6px;
}

.services-hero-art img{
    width: 100%;
    max-width: 860px;
    height:auto;
    display:block;
    filter: contrast(1.05);
}

/* OFFER CARD */
.services-offer{
    margin-top: 14px;
    background:#0b0b0b;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 20px 22px 22px;
}

/* header strip like screenshot (separate bar) */
.services-offer-head{
    background:#0f0f0f;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 50px 18px;
    display:grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* left title */
.offer-title{
    margin-left:75px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing:-0.02em;
    color:#fff;
}

/* right description */
.offer-desc{
    margin-left:75px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,.60);
    max-width: 70ch;
}

/* responsive */
@media (max-width: 950px){
    .services-offer-head{
        grid-template-columns: 1fr;
    }
}

/* GRID (matches screenshot layout) */
.services-grid{
    position: relative;
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    align-items: stretch;
}

/* tile */
.svc-card{
    background:#101010;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 14px;
    min-height: 150px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
}

.svc-title{
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    color:#fff;
    max-width: 22ch;
}

.svc-icon{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding-top: 10px;
}

.svc-icon img{
    width: 92%;
    max-width: 220px;
    height:auto;
    opacity: .9;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,.28));
}

/* big right tile spans 2 rows */
.svc-card.big{
    grid-column: 3;
    grid-row: 1 / span 2;
    min-height: 312px;
}

.svc-card.big .svc-icon img{
    width: 95%;
    max-width: 340px;
}

/* red dot between middle & right column (like screenshot) */
.svc-dot{
    position:absolute;
    width:7px;
    height:7px;
    background:#e10600;
    border-radius:50%;
    left: calc(33.555% - 8px);
    top: calc(50% - 4px);
    z-index: 6;
}

/* responsive */
@media (max-width: 950px){
    .services-offer-head{
        grid-template-columns: 1fr;
    }
    .services-grid{
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
    .svc-card.big{
        grid-column: auto;
        grid-row: auto;
        min-height: 180px;
    }
    .svc-dot{ display:none; }
}

@media (max-width: 560px){
    .services-grid{
        grid-template-columns: 1fr;
    }
}

